body {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    overflow-x: hidden;
    background-color: #1c212f;
}


body::-webkit-scrollbar {
    width: 4px;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #242C59;
}
 
body::-webkit-scrollbar-thumb {
  background-color: #34669A;
  outline: 1px solid #34669A;
  transition: all 0.5s ease-in-out;
}


section {
    width: 100vw;
}

h1,h2,h3,p,span,a {
    margin: 0;
    padding: 0;
    font-weight: 100;
    text-decoration: none;
    transition: all 0.2s ease;
}

h1 {
    font-size: 30px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: 'Lato-Black', sans-serif;
    margin-bottom: 20px;
}

p {
    font-family: 'Lato-Regular', sans-serif;
    margin-bottom: 20px;
}

p.bold {
    font-family: 'Lato-Bold', sans-serif;
}

p.noMargin {
    margin-bottom: 0;
}

.marginSection {
    margin-top: 80px
}

.headerMarginSection {
    margin-top: 160px;
}

@media screen and (max-width: 1366px) {
    .marginSection {
        margin-top: 60px
    }
}

@media screen and (max-width: 780px) {
    .marginSection {
        margin-top: 40px
    }
    
    .headerMarginSection {
        margin-top: 100px;
    }
}

@media screen and (max-width: 500px) {
    .marginSection {
        margin-top: 30px
    }
    
    .headerMarginSection {
        margin-top: 100px;
    }
}

/* ****** CONTAINER  ****** */

.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1520px;  
}

@media screen and (max-width: 1680px) {    
    .container {    
        width: calc(100% - 160px);
    }
}
@media screen and (max-width: 768px) {
    .container { 
        width: calc(100% - 128px);
    }
}
@media screen and (max-width: 578px) {
    .container { 
        width: calc(100% - 64px);
    }
}
@media screen and (max-width: 424px) {
    .container { 
        width: calc(100% - 48px);
    }
}


/* ****** HEADER  ****** */

#header {
    position: fixed;
    z-index: 1000;
    max-height: 80px;
    top: 0;
    left: 0;
    width: 100vw;
    background-color:#242C59;
    padding: 10px 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;  
    transition: all 0.5s ease-in-out;  
}

#header > div:last-child {
    position: relative;
}

#header_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#header_content > div {
    display: flex;
    flex-direction: row;
} 

#header a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#header_logo {
    position: relative;
    width: 90px;
    transition: all 0.5s ease-in-out; 
}

@media screen and (max-width: 1366px) {
    #header_logo {
        width: 70px;
    }
    #header {
        max-height: 66px;
    }
}

@media screen and (max-width: 780px) {
    #header_logo {
        width: 60px;
    }
    #header {
        max-height: 60px;
    }
}

@media screen and (max-width: 500px) {
    #header_logo {
        display: none;
    }
    #header {
        max-height: 50px;
    }
}

#header_text {
    position: relative;
    width: 300px;
    margin-left: 20px;
    transition: all 0.5s ease-in-out; 
}

@media screen and (max-width: 1366px) {
    #header_text {
        width: 240px;
    }
}

@media screen and (max-width: 1023px) {
    #header_text {
        margin-left: 20px;
        width: 200px;
    }
}

@media screen and (max-width: 500px) {
    #header_text {
        width: 160px;
        margin-left: 0;
    }
}

#header_links {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#header_links .desktop_links a {
    font-family: 'Lato-Regular', sans-serif;
    font-size: 18px;
    background-image: linear-gradient(
      to right,
      #7db0e7,
      #7db0e7 50%,
      #FFFFFF 50%
    );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0px;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
    margin-left: 20px;
}
  
#header_links .desktop_links a:before {
    content: '';
    background: #7db0e7;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}
  
#header_links a:hover {
   background-position: 0;
}
  
#header_links a:hover::before {
    width:100%;
}

#header_links > a {
    font-family: 'Lato-Bold', sans-serif;
    font-size: 18px;
    border-right: 2px solid #7db0e7;
    padding-right: 24px;
    color: #FFFFFF;
    position: relative;
    transition: all 0.3s ease-in-out;
}

#header_links > a:hover {
    color: #7db0e7;
}

#header_hamburger {
    display: none;
    width: 28px;
    height: 30px;
    position: relative;
    margin-top: 5px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-left: 24px;
}

#header_hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;    
}

#header_hamburger:hover span {
    background: #7db0e7;
}

#header_hamburger span:nth-child(1) {
    top: 0px;
}
  
#header_hamburger span:nth-child(2),#header_hamburger span:nth-child(3) {
    top: 10px;
}
  
#header_hamburger span:nth-child(4) {
    top: 20px;
}
  
#header_hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
  
#header_hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
  
#header_hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
  
#header_hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

@media screen and (max-width: 911px) {
    #header_links .desktop_links {
        display: none;
    }

    #header_hamburger {
        display: block;
    }
}


/* ****** MENU MOBILE ****** */
#menu_mobile {
    width: 100%;
    background-color: #1c212f;
    height: calc(100vh - 66px);
    position: fixed;
    z-index: 100;
    left: 100%;
    transition: all 0.5s ease-in-out;
    top: 66px;
    overflow: auto;
}

#menu_mobile .container {
    height: 100%;
}

#menu_mobile .menu_mobile_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 3px solid #242C59;
    padding-bottom: 24px; 
    height: 100%; 
}

#menu_mobile .menu_mobile_links a {
    position: relative;
    margin-left: 200%;
    margin-bottom: 40px;
    transition: all 1s ease;
}

#menu_mobile .menu_mobile_links a:first-child {
    transition-delay: 0s;
}
#menu_mobile .menu_mobile_links a:nth-child(2) {
    transition-delay: 0.2s;
}
#menu_mobile .menu_mobile_links a:nth-child(3) {
    transition-delay: 0.4s;
}
#menu_mobile .menu_mobile_links a:last-child {
    margin-bottom: 0;
    transition-delay: 0.6s;
}

#menu_mobile .menu_mobile_links a span {
    font-family: 'Lato-Italic', sans-serif;
    font-size: 26px;
    line-height: 30px;
    color: #FFFFFF;
    transition: all 0.5s ease-in-out;
}

#menu_mobile .menu_mobile_links a:hover span {
    color: #7db0e7;
}
  
#menu_mobile .menu_mobile_links a:before {
    content: '';
    background: #7db0e7;
    display: block;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    left: -30px;
    width: 10px;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

#menu_mobile .menu_mobile_links a:after {
    content: '';
    background: #7db0e7;
    display: block;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    right: -30px;
    width: 10px;
    height: 2px;
    transition: all 0.3s ease-in-out;
}


@media screen and (max-width: 780px) {
    #menu_mobile {
        height: calc(100vh - 60px);
        top: 60px;
    }
}

@media screen and (max-width: 780px) {
    #menu_mobile {
        height: calc(100vh - 55px);
        top: 55px;
    }
}


/* ****** FOOTER  ****** */

#footer {
    position: relative;
    width: 100vw;
    background-color:#242C59;
    padding: 32px 0 24px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;  
}

#footer .footer_columns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}

#footer .footer_columns > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-right: 100px;
}

#footer .footer_columns > div:first-child div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-left: 3px solid #34669A;
    padding: 16px;
}

#footer .footer_columns > div:first-child div:first-child {
    margin-right: 100px;
}

#footer .footer_columns > div:first-child div a {
    position: relative;
    display: block;
    font-family: 'Lato Regular', sans-serif;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-bottom: 20px;
    background-image: linear-gradient(
      to right,
      #7db0e7,
      #7db0e7 50%,
      #FFFFFF 50%
    );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0px;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    width: fit-content;
}

#footer .footer_columns > div:first-child div a:before {
    content: '';
    background: #7db0e7;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}
  
#footer .footer_columns > div:first-child div a:hover {
   background-position: 0;
}
  
#footer .footer_columns > div:first-child div a:hover::before {
    width:100%;
}

#footer .footer_columns > div:last-child {
    border-radius: 16px;
    border: 3px solid #34669A;
    padding: 16px 24px 8px 24px;
    margin-right: 0;
}

#footer .footer_phone_mail {
    font-family: 'Lato-Regular', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
}

#footer .footer_phone_mail a{
    font-family: 'Lato-Bold', sans-serif;
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: underline;
}

#footer .footer_phone_mail a:hover {
    color: #4687cc;
}

#footer .footer_phone_mail span {
    color: #4687cc;
    font-size: 12px;
}

#footer .allRightsReserved {
    width: 100%;
    font-family: 'Lato-Regular', sans-serif;
    color: #587fa8;
    font-size: 14px;
    margin-top: 40px;
    text-align: right;
}


@media screen and (max-width: 960px) {
    #footer .footer_columns > div:last-child {
        margin-top: 40px;
    }
    #footer .footer_phone_mail {
        text-align: left;
    }
    #footer .allRightsReserved {
        text-align: left;
    }
}

@media screen and (max-width: 619px) {
    #footer .footer_columns > div, #footer .footer_columns {
        flex-direction: column;
        margin-right: 0;
    }

    #footer .footer_columns > div:first-child div:first-child {
        margin-right: 0;
    }

    #footer .footer_columns > div:first-child div:first-child {
        padding-bottom: 0;
    }

    #footer .footer_columns > div:first-child div:last-child {
        padding-top: 0;
    }
}



.anim_hidden {
    transition: all 0.6s;
    opacity: 0;
}
.anim_show{
    opacity: 1;   
}
.anim_hidden.bottom {
    transform: translateY(200px);
}
.anim_show.bottom {
    transform: translateY(0);
}
.anim_hidden.left {
    transform: translateX(-200px);
}
.anim_show.left {
    transform: translateX(0);
}
.anim_hidden.zoom {
    transform: scale(0);
}
.anim_show.zoom {
    transform: scale(1);
}



/* COOKIES */
.wrapper-cookies {
    position: fixed;
    bottom: 50px;
    right: 50px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
}
.wrapper-cookies.show {
    display: block;
}
.wrapper-cookies header {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
}
.wrapper-cookies header img{
    color: #242C59;
    width: 30px;
    max-width: 30px;
}
.wrapper-cookies header h2 {
    font-family: 'Lato-Regular', sans-serif;
    color: #242C59;
    font-weight: 500;
    font-size: 20px;
}
.wrapper-cookies .data {
    margin-top: 16px;
}
.wrapper-cookies .data p {
    color: #333;
    font-family: 'Lato-Regular', sans-serif;
    font-size: 16px;
}
.wrapper-cookies .data p a {
    color: #242C59;
    text-decoration: none;
}
.wrapper-cookies .data p a:hover {
    text-decoration: underline;
}
.wrapper-cookies .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrapper-cookies .buttons .button-cookies {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #242C59;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}
.wrapper-cookies .buttons #acceptBtn:hover {
    background-color: #34669A;
}

@media screen and (max-width:580px) {
    .wrapper-cookies {
        right: 0;
        left: 0;
        margin: auto;
        max-width: calc(100% - 100px);
    }
    .wrapper-cookies .buttons {
        flex-direction: column;
    }
    .wrapper-cookies .buttons .button-cookies {
        width: 100%;
    }
    .wrapper-cookies .buttons #acceptBtn {
        margin-bottom: 10px;
    }
}