* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 120px;
}

@media (max-width: 700px) {
    :target {
        scroll-margin-top: 80px;
    }
}

a {
    text-decoration: none;
}

:root {
    --dark-blue: #0F3D7A
}

body {}

header {
    position: sticky;
    top: 24px;
    z-index: 999;
    height: 118px;
}

@media (max-width: 700px) {
    header {
        top: 16px;
        height: 80px;
    }
}

nav {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

nav>div#nav {
    display: flex;
    top: 0;
    right: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 16px 32px;
    height: 70px;
    width: 100%;
    background-color: #F6F6F6;
    border-radius: 16px;
    box-shadow: 0px 5px 35px rgba(119, 132, 157, 0.01);
}

nav>div#nav>menu {
    display: flex;
    gap: 32px;
}


nav>div#nav>menu>a {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
}

nav>div#nav>menu>a img {
    display: none;
}

@media (max-width: 700px) {

    nav>div#nav {
        padding: 16px 16px 16px 16px;
        height: 50px;
    }

    nav>div#nav>menu {
        gap: 16px;
    }

    nav>div#nav>menu>a {
        font-size: 14px;

    }

    nav>div#nav img {
        height: 20px;
        width: auto;
    }
}

@media (max-width: 520px) {
    nav>div#nav>menu {
        padding-right: 20px;
        gap: 12px;
    }

    nav>div#nav>menu>a img {
        display: block;
    }

    nav>div#nav>menu>a span {
        display: none;
    }
}

@media (max-width: 285px) {
    nav>div#nav>menu {
        display: none;
    }

    nav>div#nav {
        justify-content: center;
    }

}

#slider {
    max-width: 1200px;
    width: 95%;
    overflow: hidden;
    margin: 0 auto;
    aspect-ratio: 12 / 5;
}

#slider img {
    object-fit: contain;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: url(img/Slider-Back.svg);
    mask-image: url(img/Slider-Back.svg);
    mask-size: contain;
    mask-repeat: no-repeat;

}

#slider img::after {
    content: "";
    display: flex;
    background-image: url(img/nobat.webp);
    width: 100%;
    height: 100%;
}

section#about {
    max-width: 1200px;
    width: 95%;
    margin: 32px auto;
}

section#about #about-conitainer {
    display: flex;
    flex-direction: column;
}

.sec-title {
    font-size: 24px;
    font-weight: 900;
}

@media (max-width: 520px) {
    .sec-title {
        font-size: 18px;
    }
}

#about-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

#about-container img {
    width: 650px;
    height: auto;
    /* aspect-ratio: 700/314; */
    border-radius: 16px;
}

@media (max-width: 1100px) {
    #about-container img {
        width: 450px;
    }

    #about-text {
        margin-right: -50px;
    }
}

@media (max-width: 850px) {
    #about-container img {
        width: 350px;
    }

    #about-text {
        margin-right: -80px;
    }
}

@media (max-width: 650px) {
    #about-container img {
        width: 280px;
    }

    #about-text {
        margin-right: -80px;
    }
}

@media (max-width: 650px) {
    #about-container img {
        width: 240px;
    }

    #about-text {
        margin-right: -50px;
    }
}


#about-text h2 span {
    color: #1a73e8;
}

#about-text p {
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 540px) {
    #about-container img {
        width: 240px;
    }

    #about-text {
        margin-right: -50px;
    }

    #about-text p {
        font-size: 12px;
    }
}

@media (max-width: 490px) {

    #about-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #about-container img {
        width: 100%;
    }

    #about-text {
        margin-right: 0;
    }
}

section#dr {
    max-width: 1200px;
    width: 95%;
    margin: 100px auto;
}

section#dr #dr-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    grid-template-rows: auto;
}

@media (max-width: 1150px) {
    section#dr #dr-container {
        gap: 16px;
    }
}

@media (max-width: 870px) {
    section#dr #dr-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 340px) {
    section#dr #dr-container {
        grid-template-columns: 1fr;
    }
}

#dr-container>h2 {
    grid-column: 1/-1;
}

.dr {
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: linear-gradient(161.92deg, #09A7F1 13.39%, #1A73E8 88.78%);
    border-radius: 16px;
    aspect-ratio: 27 / 35;
    width: 100%;
    overflow: hidden;
}

.dr .overlay {
    height: 170px;
    background-image: linear-gradient(180deg, rgba(26, 115, 232, 0) 0%, #00224F 100%);
    width: 100%;
    position: absolute;
    bottom: 0;
}

.dr .title {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 12px;
    left: 12px;
    bottom: 64px;
    color: #FFF;
}

.dr .title h3 {
    font-size: 16px;
    font-weight: 700;
}

.dr .title p {
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 520px) {
    .dr .title {
        bottom: 48px;
    }

    .dr .title h3 {
        font-size: 14px;
    }

    .dr .title p {
        font-size: 10px;
    }
}

.dr .icon-image {
    width: 70%;
    justify-self: center;
    margin: 0 auto;
    padding-top: 20px;
}

.dr .btn {
    display: flex;
    flex-direction: row;
    padding: 0 12px;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    color: #FFF;
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
}

.dr .btn p {
    font-size: 16px;
    font-weight: 700;
}


.dr .btn img {
    width: 8px;
}

@media (max-width: 520px) {
    .dr .btn {
        height: 32px;
        padding: 0 8px;
    }

    .dr .btn p {
        font-size: 14px;
    }

    .dr .btn img {
        width: 6px;
    }
}

section#FAQ {
    width: 100%;
    background: linear-gradient(93.4deg, #09A7F1 0%, #1A73E8 100%);
    padding: 64px 0 90px 0;

}

section#FAQ>#FAQ-container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

#FAQ-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#FAQ-wrapper h2 {
    color: #FFF;
}


.accordion {
    background-color: #FFF;
    border-radius: 12px;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s;
    z-index: 1;
}


.active,
.accordion:hover {
    background-color: #F4F4F4;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: left;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    margin-top: -20px;
    padding: 0 18px;
    border-radius: 0 0 12px 12px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    padding: 24px 0 16px 0;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 520px) {
    .accordion {
        font-size: 14px;
        padding: 12px;
    }

    .panel p {
        font-size: 12px;
    }
}