@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins';
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}


/* ==================================================== Header ================================================ */

header{
    position: relative;
    transition: all 0.3s ease;
}

/* header.active{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff6c;
    backdrop-filter: blur(10px);
    z-index: 2;

    li a{
        color: #000;
    }
} */

nav {
    display: flex;
    align-items: flex-end;
    gap: 50px;
    padding: 5px 4%;
    z-index: 2;
    position: relative;
}

.left_nav {
    display: flex;
    align-items: flex-end;
    /* border: 1px solid green; */
}

/* .right_nav{
    border: 1px solid red;
} */

.left_nav a img {
    width: 190px;
    display: block;
}

.left_nav a .fav {
    width: 70px;
    animation: rotate 8s linear infinite;

}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        transform-origin: center;
    }

    100% {
        transform: rotate(360deg);
        transform-origin: center;
    }
}

.list_items {
    display: flex;
    /* gap: 30px; */
    font-family: 'Poppins';
    /* margin-top: -20px; */
}

.list_items li {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.list_items li:hover {
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-color: #fff;
    text-decoration-thickness: 2px;
}

.list_items li img {
    width: 10px;
}

.list_items li a {
    text-decoration: none;
    color: #fff;
}

.list_items li:hover {
    cursor: pointer;
}

.offer:hover {
    background-color: #fff;
    text-decoration: none !important;
    border-radius: 6px 6px 0 0;
    a{
        color: #547AEA;
    }
}

.offer:hover .dropbox{
    top: 74px;
    opacity: 1;
    visibility: visible;
}

.dropbox {
    position: absolute;
    width: 65%;
    background-color: #fff;
    padding: 20px 100px;
    top: 90px;
    left: 12%;
    z-index: 2;
    border-radius: 0 0 10px 10px;
    box-shadow: #1082e6 0px 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 100px;
}

.dropbox ul li a{
    text-decoration: none;
    color: #547AEA !important;
}

.dropbox ul li:hover{
    text-decoration-color: #6f6f6f !important;
    text-decoration-thickness: 2px;
}

.dropbox img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px !important;
}



/* ============================= Footer ========================= */
footer{
    position: relative;
}

footer .lap{
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

footer .lap .left{
    background-color: #16344e;
}

footer .lap .right{
    background-color: #0363a8;
}

footer .lap .left, footer .lap .right{
    width: 50%;
    height: 483px;
}

.footer {
    font-family: 'Poppins';
    display: flex;
    align-items: flex-start;
    height: 483px;
    position: relative;
}

.footer .left_footer {
    width: 35%;
    height: 100%;
    padding: 40px 0;
    padding-left: 4%;
    background-color: #1082e6;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.left_footer .overlay_img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('./../../assets/graphics/g5.png');
}

.footer .left_footer p {
    margin-top: -20px;
    font-weight: 200;
    line-height: 1.5;
    width: 90%;
    z-index: 1;
}

.footer .left_footer .rights{
    z-index: 1;
    margin-top: 30px;
}

.footer .left_footer .rights a{
    color: #fff;
    text-decoration: none;
}

.footer .left_footer .footer_logo {
    width: 250px;
    z-index: 1;
    position: relative;
}

.footer .overlay{
    position: absolute;
    width: 35%;
    left: 0;
    top: 25%;
    height: 200px;
    display: flex;
    align-items: center;
    transform: translateX(50px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer .overlay:hover{
    transform: translateX(100%);
}

.footer .overlay .more_info{
    width: calc(100% - 50px);
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.footer .overlay .more_button{
    position: relative;
    z-index: 2;
    width: 50px;
    height: 100%;
    background-color: #132D40;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 15%, 100% 85%, 0% 100%);
}
.more_button span {
    transform: rotate(-90deg);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* .overlay .more_button {
    background-color: #132d40;
    height: 50px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(270deg);
    right: -135px;
} */

/* .more_info.active {
    transform: translateX(100%);
}

.overlay .more_button p {
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.left_footer .contact_content,
.left_footer .social_icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.left_footer .contact_content p {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.left_footer .social_icons .icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.left_footer .social_icons .icons img {
    transition: all 0.3s ease;
}

.left_footer .social_icons .icons img:hover {
    transform: scale(1.1);
}


.footer .right_footer {
    width: 65%;
    height: 100%;
    background-color: #0363a8;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .right_footer .top {
    display: flex;
    padding: 40px 4% 40px 100px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer .right_footer .box {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .right_footer .box:first-child {
    width: 40%;
    margin-right: 100px;
}

.footer .right_footer .box p {
    line-height: 1.7;
    font-weight: 300;
}

.footer .right_footer .box p a{
    color: #fff;
    text-underline-offset: 5px;
}

.footer .right_footer .box h3 {
    letter-spacing: 1px;
    font-size: 22px;
}

.footer .right_footer .box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .right_footer .box ul li {
    list-style-type: none;
    transition: all 0.3s ease;
}

.footer .right_footer .box ul li a {
    color: #fff;
    text-decoration: none;
}

.footer .right_footer .box ul li:hover {
    transform: translateX(5px);

    a {
        text-decoration: underline;
        text-underline-offset: 7px;
    }
}

/* .footer .right_footer .box:nth-child(1) ul li:hover {
    transform: translateX(0);

    a {
        text-decoration: none;
    }
} */


.scrollTop {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #132d40;
    border: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253); */
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    bottom: 80px;
    right: 20px;
}

.svgIcon {
    width: 12px;
    transition-duration: 0.3s;
}

.svgIcon path {
    fill: white;
}

.scrollTop:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background-color: #547AEA;
    align-items: center;
}

.scrollTop:hover .svgIcon {
    /* width: 20px; */
    transition-duration: 0.3s;
    transform: translateY(-200%);
}

.scrollTop::before {
    position: absolute;
    bottom: -20px;
    content: "Back to Top";
    color: white;
    /* transition-duration: .3s; */
    font-size: 0px;
}

.scrollTop:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    /* transform: translateY(-30px); */
    transition-duration: 0.3s;
}



.footer .right_footer .bottom {
    width: 100%;
    border-top: 2px solid #fff;
    padding: 20px 4% 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .right_footer .bottom p {
    font-weight: 300;
    font-size: 15px;
}

.footer .right_footer .bottom a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
}















@media screen and (max-width: 768px) {

    body.active{
        overflow: hidden;
    }

    nav{
        position: relative;
        padding: 10px 4%;
        z-index: 99;
    }

    .left_nav a img {
        width: 120px;
    }

    .left_nav a .fav {
        width: 50px;
    }

    .right_nav{
        position: fixed;
        width: 70%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        padding: 10px 20px;
        /* padding-top: 100px; */
        z-index: 999;
        background-color: #547AEA;
        color: #fff;
        transform: translateX(-100%);
        transition: all 0.3s ease;
    }

    .right_nav.active{
        transform: translateX(0);
    }

    .list_items{
        flex-direction: column;
    }

    .list_items li a {
        color: #fff !important;
    }

    .btn2 {
        /* position: absolute; */
        width: 10%;
        height: 100%;
        transition-duration: 0.3s;
        z-index: 999999;
    }
    
    .btn2 .icon {
        transition-duration: 0.3s;
        position: absolute;
        height: 4px;
        width: 30px;
        top: 35px;
        right: 0;
        border-radius: 5px;
        background-color: #000;
        margin-right: 3%;
    }
    
    .btn2 .icon:before {
        transition-duration: 0.3s;
        position: absolute;
        width: 30px;
        height: 4px;
        background-color: #000;
        content: "";
        top: -10px;
        border-radius: 5px;
        margin-right: 3%;
    }
    
    .btn2 .icon:after {
        transition-duration: 0.3s;
        border-radius: 5px;
        position: absolute;
        width: 30px;
        height: 4px;
        background-color: #000;
        margin-right: 3%;
        content: "";
        top: 10px;
    }
    
    .btn2.open .icon {
        transition-duration: 0.3s;
        background: transparent;
    }
    
    .btn2.open .icon:before {
        transform: rotateZ(45deg) scaleX(1.25) translate(2px, 13px);
    }
    
    .btn2.open .icon:after {
        transform: rotateZ(-45deg) scaleX(1.25) translate(2px, -12px);
    }
    
    .btn2:hover {
        cursor: pointer;
    }

    .dropbox{
        width: 100%;
        top: 210px;
        left: 0;
        gap: 10px;
        padding: 15px;
        flex-direction: column;
    }

    .offer:hover .dropbox{
        top: 190px;
    }

    .offer:hover a{
            color: #547AEA !important;
    }

    .dropbox img{
        width: 100px !important;
    }

    .dropbox ul{
        gap: 10px !important;
        display: flex;
        flex-direction: column;

    }

    .dropbox ul li{
        padding: 0;
    }

    /* ----------------------------- Footer ----------------------------- */
    .footer{
        height: fit-content;
        flex-direction: column;
    }

    .footer .left_footer {
        width: 100%;
    }

    .footer .left_footer .footer_logo {
        width: 170px;
    }

    .footer .overlay{
        display: none;
    }

    .footer .right_footer {
        width: 100% !important;
    }

    .footer .right_footer .top {
        padding: 20px 4%;
        flex-direction: column;
        width: 100% !important;
        gap: 20px;
    }

    .footer .right_footer .box {
        width: 100%;
    }

    .footer .right_footer .box:first-child {
        width: 100%;
    }

    .scrollTop{
        bottom: 150px;
    }

    .footer .right_footer .bottom {
        padding: 10px;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row-reverse;
    }
    .footer .right_footer .bottom p {
        width: 100%;
        text-align: center;
    }

    .footer .right_footer .bottom p a{
        width: fit-content !important;
    }
}