/*================ GLOBAL ===================*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    line-height: 1;
    width: 100%;
}

.grid-wrapper {
    max-width: 1140px;
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    gap: 20px;
}

main {
    min-height: calc(100vh - 150px);
    padding-top: 90px;
    width: 100%;
}

.grecaptcha-badge { 
    visibility: hidden; 
}

#onetrust-banner-sdk #onetrust-policy-text, #onetrust-consent-sdk #onetrust-accept-btn-handler {
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 992px){
    main {
        padding-top: 70px;
        width: 100%;
    }
}





/*================ COLOR VARIABLES ===================*/

:root {
    --blue-lt: #84DAF8;
    --blue-md: #4285F4;
    --blue-drk: #053B9E;
    --blue-blk: #001247;
    --gray-drk: #525252;
    --gray-md: #E8E8E8;
    --gray-lt: #F7F7F7;
    --white: #FFFFFF;

    --gradient-lt: linear-gradient(to bottom right, #84DAF8, #6FC2FF);
    --gradient-md: linear-gradient(to bottom right, #578BFF, #295AC7);
    --gradient-drk: linear-gradient(to bottom right, #233976, #001247);

    --shadow: 0px 3px 23px rgba(0, 0, 0, 0.2);
}


/*Used for text*/

.light {
    color: var(--gray-lt);
}

.white {
    color: var(--white);
}







/*================ TYPOGRAPHY ===================*/

p {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-drk);
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4.375em;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    padding: 20px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.625em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue-drk);
    position: relative;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.750em;
    font-weight: 600;
    line-height: 1.2;
    color: var(--blue-drk);
    position: relative;
}

h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.250em;
    font-weight: 600;
    line-height: 1.5;
    color: var(--blue-drk);
}


/*Left Heading Borders*/

.border-left-drk:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 40px;
    top: 5px;
    left: -20px;
    background-color: var(--blue-blk);
  }

.border-left-md:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 40px;
    top: 5px;
    left: -20px;
    background-color: var(--blue-md);
  }

  .border-left-lt:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 40px;
    top: 5px;
    left: -20px;
    background-color: var(--blue-lt);
  }

  .h3-border-left-lt:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 25px;
    top: 4px;
    left: -15px;
    background-color: var(--blue-lt);
  }




  /*Media Queries*/

  @media (max-width: 992px){

    h1 {
        font-size: 50px;
        text-align: center;
    }

    .h3-border-left-lt:before {
        display: none;
    }
  }



  @media (max-width: 768px){
    .border-left-lt:before, .border-left-md:before, .border-left-drk:before {
        display: none;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.5em;
    }
  }








/*================ BUTTONS ===================*/

a.btn {
    display: inline-block;
    position: relative;
    padding: 16px 44px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

a.btn:after {
    content: '>';
    position: absolute;
    opacity: 0;  
    top: 17px;
    right: -20px;
    transition: 0.5s;
  }
  
a.btn:hover {
    padding-left: 34px;
    padding-right: 54px;
  }
  
a.btn:hover:after {
    opacity: 1;
    right: 30px;
  }

.btn-lt {
    color: var(--blue-blk);
    background: var(--gradient-lt);
}

.btn-md {
    color: var(--white);
    background: var(--gradient-md);
}

.btn-drk {
    color: var(--white);
    background: var(--gradient-drk);
}














/*======================SINGULAR PAGE=========================*/

.singular-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.singular-container {
    max-width: 1140px;
    position: relative;
}

.singular-title {
    margin-bottom: 30px;
}
.singular-container p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .singular-section {
        padding: 50px 10%;
    }
}


#section-404 {
    text-align: center;
}

#btn-404 {
    margin-top: 25px;
}

#privacy_policy h2 {
    font-size: 1.5em;
    font-weight: 500;
    color: #000;
}

#privacy_policy h3 {
    font-size: 1.2em;
    font-weight: 500;
    color: #000;
}

#privacy_policy ul {
    margin-bottom: 20px;
}

#privacy_policy li {
    font-family: 'Lato', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--gray-drk);
    margin-left: 30px;
}