/********* GLOBAL STYLES *********/
:root{
    /*Colors*/
    --dark-blue:#00306A;
    --soft-blue:rgba(45, 87, 139, 0.626);
    --bright-blue: #008BFF;
    --shadow-blue: 0px 0px 30px 10px var(--bright-blue);
    --dark-purple:  #562873;
    --soft-purple:  #b259e5;
    --shadow-purple: 0px 0px 30px 10px var(--soft-purple);
    --dark-gray:#232323;
    --middle-gray: #37373F;
    --soft-gray: rgb(204, 204, 204);
    --text-white: #F4F5FC;
    --shadow-white: 0px 0px 8px var(--text-white);
    --blur-gray: rgba(38, 38, 38, 0.9);
    --font-share-tech: 'share tech', sans-serif;
    --font-audiowide: 'Audiowide', cursive;
    --size-xxl: 3rem;
    --size-xl: 2.8rem;
    --size-l: 2rem;
    --size-md: 1.6rem;
    --size-sm: 1.4rem;
    --size-xs: 1.2rem;
    --max-width: 1440px;
    --max-width-md: 1000px;
    --max-width-sm: 400px;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-share-tech);
}
html{
    font-size: 62.5%;
}
html, body{
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--dark-gray);
}
main{
    max-width: 4400px;
    min-width: 320px;
    margin: 0 auto; 
}
section{
    width: 100%;
    margin: auto;
    background-color: var(--dark-gray);
}
h1, h2, h3,h4,h5{
    font-family: var(--font-audiowide);
    color: var(--text-white);
    margin: 15px 0 15px 0;
    text-align: start;
}
h1{
    font-size: var(--size-xl);
}
h2{
    font-size: var(--size-xl);
}
h3{
    font-size: var(--size-l);
}
h4{
    font-size: var(--size-l);
}
h5{
    font-size: var(--size-md);
}
h5:hover{
    color: var(--text-white) !important;
}
h1 span, h2 span, h3 span{
    font-size: var(--size-xl);
    font-family: var(--font-audiowide);
    animation: flash 1s linear infinite;
}
h3 span{
    font-size: var(--size-l);
}
a{
    position: relative;
    color: var(--text-white);
    font-weight: bold;
    font-size: var(--size-md);
    text-decoration: none;
}
p{
    font-size: var(--size-sm);
    line-height:var(--size-l);
    color: var(--text-white);
    font-weight: lighter;
}
ul{
   display: flex;
   justify-content: flex-end;
   font-size: var(--size-sm);
}
ul li{
    list-style:none;
    align-items: center;
    margin-left: 2rem;
}
header{
    position: relative;
    width: 100%;
    min-width: 280px;
    height: 90vh;
    background-color: #242324;
}
input, textarea{
    background-color: var(--middle-gray);
    border: solid 1px var(--soft-gray);
    border-radius: 2px;
    font-size: var(--size-md);
    padding: 4px;
}
input:active{
    border: none;
}
label{
    color: var(--middle-gray);
    font-size: var(--size-md);
}
/***GENERAL CLASS***/
.row>*{
    padding: 0;
}
.h-50vh{
    height: 50vh !important;
}
.btn{
    width: 200px;
    height:50px;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-white);
    font-size:var(--size-md);
    font-weight: 500;
    letter-spacing: 0.5rem;
    margin-top: 1.5rem;
 
}
.btn-main{
    background-color: var(--dark-blue);
}
.btn-main:hover, .footer-icons i:hover{
    background-color: var(--bright-blue);
    color: var(--text-white);
    font-weight: 800;
    box-shadow: var(--shadow-blue);
}
.icon{
    font-size: var(--size-md);
}
.icon-border{
    color: var(--bright-blue);
    padding: 8px 10px;
    border: 1px solid var(--bright-blue);
    border-radius: 10px;
}
.icon--active{
    color: var(--text-white) !important;
    background-color: var(--bright-blue) !important;
    box-shadow: var(--shadow-blue);
    
}
.hidde{
    display: none;
}
.section-container{
    margin-top: 0;
    padding: 0;
    padding-bottom: 40px;
    position:relative;
}
/******** ANIMATIONS **********/
@keyframes flash {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
    
    
    100% {
      opacity: 1;
    }
  }
   /*NAV MOBILE - animations*/
   @keyframes show-down {
    0%{
        transform: scaleY(0);
        top: -120px;
    }
    100%{
        transform: scaleY(1);
        top:50px;
    }
}
@keyframes openBarOne {
    100%{
        transform: rotate(0deg);
        margin-top: 0px;
    }
    50%{
        transform: rotate(25deg);
        margin-top: 4px;
    }
    0%{
        transform: rotate(45deg);
        margin-top: 8px;
    }
}
@keyframes openBarThree {
    100%{
        transform: rotate(0deg);
        top: 22px;
    }
    50%{
        transform: rotate(-25deg);
        top: 15px;
    }
    0%{
        transform: rotate(-45deg);
        top: 10px;
    }
}
@keyframes closeBarOne {
    0%{
        transform: rotate(0deg);
        margin-top: 0px;
    }
    50%{
        transform: rotate(25deg);
        margin-top: 4px;
    }
    100%{
        transform: rotate(45deg);
        margin-top: 8px;
    }
}
@keyframes closeBarThree {
    0%{
        transform: rotate(0deg);
        top: 22px;
    }
    50%{
        transform: rotate(-25deg);
        top: 15px;
    }
    100%{
        transform: rotate(-45deg);
        top: 10px;
    }
}

/******** NAV **********/
.header-nav{
    /* padding-right: 35px; */
    position: fixed;
    top:0;
    width: 100%;
    height: 70px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--blur-gray);
    box-shadow: var(--shadow-blue);
    z-index: 100;
}
.header-nav__container{
    display: none;
}
.header-nav__container .active{
    font-weight: bold;
}
.header-nav__brand{ 
    width: 150px;
    height: 30px;
    object-fit: contain;
    margin-left: 10px;
}
.nav-mobile{
    position: absolute;
    width: 100%;
    top: 50px;
    right: 0;
    padding-right: 20px;
    height: auto;
    background-color: var(--dark-gray);
    overflow: hidden;
    animation-name: show-down;
    animation-duration: 1s;
    animation-iteration-count: initial;
    animation-timing-function: ease-in-out;
}
.nav-mobile ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    line-height: var(--size-xxl);
    padding: 20px;
    padding-right: 20px;
    font-size: var(--size-md);
    color: var(--text-white);
}
.nav-mobile li{
    position: relative;
    width: auto;
    list-style: none;
    margin-right: 20px;
    cursor:pointer;
}
.nav-mobile li a{
    color: var(--text-white);
    font-weight: 400;
    position: relative;
    display: block;
    padding: 2px;
    
}
.nav-mobile .active::before{
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    box-shadow: var(--shadow-white);
    color: var(--text-white);
    z-index: 2;
}
.nav-mobile .active::after{
    content: '';
    position: absolute;
    bottom: -21px;
    left: 98%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: var(--text-white);
    text-shadow: var(--shadow-white);
}
.nav-mobile li a:hover::before {
    transform: scaleX(1);
}
.nav-mobile ul a{
    text-decoration: none;
    color: var(--text-white);
}
.nav-close-icon .bar_one{
    animation: closeBarOne 1s forwards;
}
.nav-close-icon .bar_three{
    animation: closeBarThree 1s forwards;
}
.nav_button_collapse{
    position: relative; 
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.burger_bar{
    width: 80%;
    height: 2px;
    border-radius: 1px;
    background-color: var(--text-white);
    box-shadow: var(--shadow-white);
}
.donut {
    position: absolute;
    left: 23px;
    top: -2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffffff00; 
    border: 2px solid var(--text-white);
    box-shadow: var(--shadow-white);
}
.bar_two{
    position: absolute;
    left: 0px;
    top: 11px;  
}
.donut_two{
    left: 23px;
    top: -2px;
}
.bar_three{
    position: absolute;
    left: 0px;
    top: 22px;  
}
.donut_three{
    left: 23px;
    top: -2px;
}
.nav-close-icon .donut_two, .nav-close-icon .bar_two{
    /* background: url(../../assets/icons/ico_navbar_close.png) no-repeat transparent;
    background-size: 30px; */
    display: none;
}
.nav-show-icon .bar_one{
    animation: openBarOne 1s forwards;
}
.nav-show-icon .bar_three{
    animation: openBarThree 1s forwards;
}
.submenu-nav__container{
    position: absolute;
    width: auto;
    top: 80px;
    padding-right: 20px;
    height: auto;
    background-color: var(--dark-gray);
    animation-name: show-down;
    animation-duration: 1s;
    animation-iteration-count: initial;
    animation-timing-function: ease-in-out;
}
.submenu-nav__container ul{
    display: flex;
    flex-direction: column;
}


/* Privacy Policy */
main{
    margin-top: 120px;
}
/********Privacy Policies************/
.container h2{
    margin-left: 20px;
}
#termsconditions div{
    padding: 10px 30px;
 }
 #termsconditions ul{
     display: block;
     color: var(--text-white);
 }
 #termsconditions li{
    position: relative;
     margin-left: 0 !important;
 }
 #termsconditions li::before{
    content: "";
    position: absolute;
    top: 5px;
    left:-20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-white);
    box-shadow: var(--shadow-white);

 }
 /**********FOOTER************/
footer{
    width: 100%;
    margin: 40px 0;
}
.footer-logo{
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
}
.footer-logo img{
    width: 70%;
    object-fit: contain;
}
.footer-icons{
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
    padding-bottom: 40px;
}
.footer-icons i{
    margin-right: 10px;
}
.footer-copyright{
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
.footer-copyright a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    box-shadow: var(--shadow-white);
    color: var(--text-white);
    z-index: 2;
}

@media only screen and (min-width: 768px){
    #toggle-nav-icon{
        display: none;
    }
    .header-nav{
        display: flex;
        justify-content: space-between;
    }
    .header-nav__container{
        position: relative;
        display: inline-block;
        color: var(--text-white);
        text-decoration: none;
        text-align: right;
        margin-right: 20px;
    }
    .header-nav__container li{
        position: relative;
        cursor: pointer;
    }
    .header-nav__container a{
        color: var(--text-white);
        text-decoration: none;
    }
    .header-nav__brand{
        height: 100%;
    }
    .header-nav__container .active::before, .header-nav__container li::before{
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--text-white);
        box-shadow: 0px 0px 8px #fdfdfd;
        color: var(--text-white);
        z-index: 2;
        
    }
    .header-nav__container li:not(.active)::before{
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.5s ease-in-out;
    }
    .header-nav__container  li:hover::before{
        transform: scaleX(1);
    }
    .header-nav__container .active::after{
        content: '';
        position: absolute;
        bottom: -12%;
        left: 98%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: var(--text-white);
        box-shadow: 0px 0px 8px #fdfdfd;
        z-index: 2;
    }
    .button-nav__container{
        display: none;
    }
    /*********** FOOTER ****************/
    .footer-logo img{
        max-width: 300px;
    }
}

@media only screen and (min-width: 1440px){
    .button-nav{
        display: none;
    }
    
    .header-nav{
        height: 80px;
    }
    
    .header-nav__container a{
        font-size: 2rem;
    }
    .header-nav__brand{
        width: 250px;
        height: 100%;
        margin-left: 35px;
    
    }
    .submenu-nav__container{
        display: absolute;
        top: 110%;
    }
}