* {
    padding: 0;
    margin: 0;
    font-family: metropolis, Arial, sans-serif;
}


body {
    height: 100vh;
    overflow: hidden;
}


.container {
    width: 93%;
    margin: 0 auto;
}

.container > section {
    padding-left: 18.5%;
}

/*header styles*/

/* navbar */

.nav {
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 99;
    background: #fff;
    opacity: 0;
}

.nav.fade {
    opacity: 1;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

#nav {
    position: absolute;
    width: 100%;
    background-color: #fff;
    transition: all .5s ease-out;
    -webkit-transition: .5s;
    -o-transition: .5s;
    z-index: 10001;
}

.nav_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav_item > a {
    text-decoration: none;
    color: #2F80ED;
}

.nav_item {
    font-weight: 500;
    font-size: 14px;
    color: #121212;
    margin: 0 20px;
    display: block;
    text-decoration: none;
    user-select: none;
}

.nav_item:hover,
.active-page,
.dropdown.active-page > .dropdownbtn,
.dropdown.active-page > .dropdown-content a.active-page {
    color: #2F80ED;
    -webkit-animation-name: color_change;
    animation-name: color_change;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
}

.dropdown.active-page > .dropdown-content a.active-page:hover {
    color: white;
    -webkit-animation-name: color_change;
    animation-name: color_change;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
}

.nav_item.blue {
    margin-left: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #2F80ED;
}

.nav_item.blue a:hover {
    color: #121212;
    -webkit-animation-name: color_change_to_black;
    animation-name: color_change_to_black;
}

.nav_item_line {
    background: #2F80ED;
    width: 2px;
    height: 18px;
    margin: 0 25px 0 0;
}

.dropdownbtn {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 52px;
    background-color: transparent;
    color: #121212;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    margin: 0 20px;
    outline: none;
    user-select: none;
}

.dropdown {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 17px;
}

.dropdown-content {
    height: 0;
    top: 52px;
    position: absolute;
    background: #FFFFFF;
    border: none;
    z-index: 1;
    transition: height .3s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.12);
}

.dropdown-content a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 44px;
    width: 220px;
    font-family: Metropolis, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    padding: 0 20px;
    color: #121212;
    background-color: transparent;
    text-decoration: none;
    text-transform: capitalize;
    transition:  .25s ease-in-out;
    user-select: none;
}

.dropdown-content a:hover {
    color: #FFFFFF;
    background-color: #2F80ED;
}

.dropdown-content.active {
    color: #2F80ED;
    background-color: transparent;
}

.dropdown:hover .dropdown-content {
    height: 90px;
    border: 1px solid #F0F2F4;
}

.dropdown:hover .dropdownbtn {
    color: #2F80ED;
    -webkit-animation-name: color_change;
    animation-name: color_change;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
}

.arrow {
    position: relative;
    top: 5px;
    height: 7px;
    width: 7px;
    margin-left: 15px;
}

.arrow::before, .arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0.15rem;
    height: 100%;
    transition: all .3s;
}
.arrow::before {
    left: 0;
    transform: rotate(-45deg);
    background-color: #121212;
}
.arrow::after {
    left: 4px;
    transform: rotate(45deg);
    background-color: #121212;
}

.dropdown.active-page .arrow::before,
.dropdown.active-page .arrow::after
{
    background-color: #2F80ED;
}

.dropdown:hover  .arrow::before {
    transform: rotate(45deg);
    left: 0;
    background-color: #2F80ED;
}
.dropdown:hover  .arrow::after {
    left: 4px;
    transform: rotate(-45deg);
    background-color: #2F80ED;
}

.covid-button {
    color: #FA617B;
}

.nav_mobile {
    display: none;
}

/* sidebar */

.sidebar_container {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: fixed;
    bottom: 43px;
    width: 36px;
    z-index: 3;
}

.sidebar_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    opacity: 0;
    width: 100vh;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    bottom: 2px;
    font-weight: bold;
    font-size: 16px;
    color: #121212;
}

.sidebar_holder {
    position: absolute;
    top: 0;
    height: 20px;
    width: 500px;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    /*transform: translateX(20%);*/
}


.sidebar_header.fade {
    opacity: 1;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.isWhite {
    color: #fff;
}

.isBlack {
    z-index: 2;
}

.isBlack, .isWhite {
    height: 20px;
    width: 500px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

.sidebar_header p {
    font-family: metropolisbold, Arial, sans-serif;
    height: 20px;
    width: 500px;
    display: block;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: default;
    /*cursor: pointer;*/
}

.nav_hamb {
    display: none;
}

.sidebar_header:not(:hover) span {
    display: none;
}

.sidebar_header:hover span {
    display: inline;
    -webkit-animation: .8s fadeIn;
    animation: .8s fadeIn;
}

.sidebar_header span {
    margin-left: 20px;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
}

/*main screen*/
.main_screen {
    height: 100vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main_screen_heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main_screen-top {
    /*padding-top: 22%;*/
    /*height: 100%;*/
    padding-top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.type-it, .typed-cursor {
    font-family: metropolisbold, Arial, sans-serif;
    font-weight: bold;
    font-size: 90px;
    line-height: normal;
    color: #121212;
}


.heading_agencies{
    font-size: 64px;
    line-height: 110%;
    letter-spacing: -0.02em;
}
.heading_agencies span{
    font-family: metropolisbold, Arial, sans-serif;
    background: -webkit-linear-gradient(135deg,#FE5196 0%,#F77062 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typed-cursor {
    font-weight: normal;
}

.main_screen_subtitle {
    font-size: 24px;
    font-weight: normal;
    margin-top: 20px;
    color: #000000;
}

.main_screen_content {
    opacity: 0;
}

.main_screen_content.fade {
    -webkit-transition: 0.6s ease-in;
    -o-transition: 0.6s ease-in;
    transition: 0.6s ease-in;
    opacity: 1;
}

/*buttons*/

.button {
    padding: 30px 45px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-decoration: none;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    outline: none;
}


.button_blue {
    background: #2F80ED;
    color: #fff;
    border: 2px solid #2F80ED;
}

.button_white {
    background: #fff;
    color: #2F80ED;
    border: 2px solid #2F80ED;
}

.button_black {
    background: #fff;
    color: #121212;
    border: 2px solid #fff;
}

.button_white_border_white {
    background: #fff;
    color: #121212;
    border: 2px solid #fff;
}

.button_white_border_white:hover {
    color: #fff;
}

.button_black:hover {
    color: #fff;
}

.button_white:hover {
    color: #fff;
}

.button_blue:hover {
    color: #2F80ED;
}

.main_screen .button {
    margin-top: 50px;
}


.button span {
    height: 0;
    width: 0;
    position: absolute;
    display: block;
    border-radius: 50%;
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out, color 1s ease-in-out;
    -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out, color 1s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out, color 1s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.button.button_blue span {
    background: #fff;
}

.button.button_white span {
    background: #2F80ED;
}

.button.button_white_border_white span {
    background: #2F80ED;
}

.button.button_black span {
    background: #121212;
}

.button p {
    position: relative;
    z-index: 3;
}

.button:hover span {
    height: 500px;
    width: 500px;
}

*:before, *:after {
    z-index: 2;
}
/*mentions*/

.main_screen-mentions {
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin-bottom: 54px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main_screen-mentions.fade {
    -webkit-transition: 0.6s ease-in;
    -o-transition: 0.6s ease-in;
    transition: 0.6s ease-in;
    opacity: 1;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
    .nav_mobile {
        -webkit-transition: .3s ease-in;
        -o-transition: .3s ease-in;
        transition: .3s ease-in;
    }

    .cookies_popup {
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .nav_mobile.show {
        position: fixed;
        top: 0;
        -webkit-transition: .3s ease-in;
        -o-transition: .3s ease-in;
        transition: .3s ease-in;
        display: block;
        background: #121212;
        height: 100vh;
        width: 100vw;
    }

    .cookies_popup {
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .nav_hamb, .nav_close {
        cursor: pointer;
        width: 30px;
        top: 6px;
        height: 23px;
        display: block;
        position: relative;
    }

    .nav_close {
        position: absolute;
        top: 16px;
        right: 15px;
        height: 50px;
    }


    .nav_close > .line:first-child {
        top: 20px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .nav_close > .line:last-child {
        top: 20px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .nav_hamb > .line, .nav_close > .line {
        height: 3px;
        background: #121212;
        width: 30px;
        position: absolute;
    }

    .nav_container > .nav_item {
        margin-top: 30px;
        font-size: 24px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .nav_container {
        padding: 75px 40px 0;
        overflow-y: scroll;
    }

    .nav_close > .line {
        background: #fff;
    }

    .nav_hamb > .line:nth-child(2) {
        top: 10px;
    }

    .nav_hamb > .line:nth-child(3) {
        top: 20px;
    }


    /*.animated.fadeUp {*/
    /*  opacity: 1;*/
    /*}*/
    .main_screen_content {
        visibility: hidden;
        opacity: 1;
        transition: all .5s ease-out;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
    }

    .main_screen_content.fade {
        visibility: visible;
        opacity: 1;
        transition: all .5s ease-out;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
    }

    .animatedAfter {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }

    /*.animatedAfter.fadeUp {*/
    /*  opacity: 1;*/
    /*}*/
    .nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .nav_items {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}