@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background: #2A82CE;
    overflow-x: hidden;
    height: 200vh;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background: #009fff
}

#header {
    padding: 45px 0;
    background: linear-gradient(180deg, #053b95 0%, rgba(5, 59, 149, 0) 100%);
    position: fixed;
    width: 100%;
    transition: all .2s ease;
}

#header.header-scroll {
    background: linear-gradient(90deg, #2e94d2 0%, #2866ca 100%);
    padding: 20px 0;
}

.header-wrapper {
    transition: all .2s ease;
}

.container {
    padding: 0 15px;
    margin: 0 auto;
    width: 85%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: relative; */
}

.header-logo svg path {
    fill: #fff;
}

#hamburger-btn {
    cursor: pointer;
    /* padding-bottom: 25px; */
    position: relative;
}

.hamburger-item {
    width: 58px;
    height: 2px;
    background: #fff;
    display: block;
    transition: all 200ms linear;
    position: relative;
}

.hamburger-item:nth-child(2) {
    margin: 10px 0;
}

.hamburger-item:nth-child(3) {
    background: none;
}

.hamburger-item:nth-child(3) svg {
    position: absolute;
    bottom: -2px;
}

#hover-menu-wrapper {
    position: absolute;
    right: 0;
    top: 50px;
    border-radius: 20px;
    width: 740px;
    height: calc(100vh - 120px);
    background: #f6f9fe;
    padding: 30px 60px;
    transform: translateX(30px);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: all .3s linear .2s;
    cursor: default;
    overflow-y: auto;
}

#hover-menu-wrapper.hover-menu-visible {
    transform: translateX(0px);
    opacity: 1;
    transition: all .3s linear .2s;
}

#hamburger-btn.burgerBtn-active .hamburger-item:nth-child(1),
#hamburger-btn.burgerBtn-active .hamburger-item:nth-child(2) {
    width: 30px;
    margin-left: calc(30px / 4);
}

#hamburger-btn.burgerBtn-active .hamburger-item:nth-child(1) {
    transform: rotate(45deg) translate(calc((30px / 4) + 1px));
}

#hamburger-btn.burgerBtn-active .hamburger-item:nth-child(2) {
    transform: rotate(-45deg) translate(calc((30px / 4) + 1px));
}


.hevermenu-title {
    font-family: 'Barlow', sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 23px;
}

.hover-menu-content {
    display: flex;
    /* flex-wrap: wrap; */
}

.hover-content-item {
    display: flex;
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 10px;
    /* width: 50%; */
}

.hover-item-icon {
    max-width: 70px;
    padding-right: 15px;
}

.hover-item-icon img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hover-item-title {
    margin-bottom: 7px;
    font-size: 16px;
    font-family: 'Barlow', sans-serif;
    font-weight: bold;
    transition: color .2s ease-in;
    color: #000;
    text-transform: uppercase;
}

.hover-item-title:hover {
    color: rgb(13, 110, 253);
}

.hover-item-text p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 0;
    max-width: 75%;
    font-family: 'Barlow', sans-serif;
    font-weight: thin;
    color: #000;
}

.hover-list-item {
    margin: 10px 0;
}

.hover-list-item a {
    font-size: 16px;
    line-height: 1;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    text-transform: none;
    transition: color .2s ease-in;
    color: #000;
}

.hover-list-item:hover a {
    color: #2A82CE;
}

.hover-menu-content-left,
.hover-menu-content-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hover-content-last {
    display: flex;
}

.hover-content-last li {
    width: 25px;
    height: 25px;
    margin: 0 5px;
}

.hover-content-last li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-content-last li svg path {
    transition: fill .2s ease-in;
}

.hover-content-last li:hover svg path {
    fill: #2A82CE;
}