/* start variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --active-color: #A8D5A0;
    --primary-color:#64B28B;
    --second-color: #315863;
    --transtion: ease-in-out 0.3s;
}

@media (max-width: 991px) {
    :root {

    }
}

/* end variables */

/* start global rules */
*, ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

html, body {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

ul, li, ol {
    list-style: none;
    margin: 0!important;
    padding: 0!important;
}

a {
    text-decoration: none;
    background-color: transparent;
    color: inherit;
    width: fit-content;
    display: inline-block;
}

:is(input,textarea,button) {
    box-shadow: none;
    outline: none;
}

button {
    all: unset;
    display: block;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    vertical-align: middle;
    user-select: none;
}

img {
    max-width: 100%;
    border-style: none;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

bdi {
    direction: ltr;
}

address {
    font-style: normal;
}



html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

b,
strong {
    font-weight: bolder;
}

h1, h2, h3, h4, h5, h6,p {
    margin: 0;
    padding: 0;
}
.base-button-outline,
.base-button {
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transtion);
    border-radius: 100px;
    font-weight: 600;
    line-height: 150%;
    font-size: 10px;
    height: 42px;
    color: #fff;
    width: fit-content;
}
.base-button {
    background: var(--primary-color);
}
.base-button:hover {
    background: var(--active-color);
}
.base-button-outline{
    border: 1px solid #fff;
}
@media (min-width: 1199px) {
    .base-button-outline,
    .base-button{
        font-size: 14px;
        height: 56px;
        padding: 0 32px;
    }
}
.custom-title{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 8px;
    line-height: 130%;
    font-size: 16px;
}
.custom-title::before,
.custom-title::after{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: var(--primary-color);
}
@media (max-width: 1199px) {
    .custom-title{

        gap: 6px;
        padding-bottom: 6px;
        font-size: 12px;
    }
}
/*end global styles*/
/*start container*/
.container {
    width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
}


@media (width >= 768px) {
    .container {
        padding-inline: 5%;
    }
}

@media (width >= 1440px) {
    .container {
        padding-inline: 0;
        max-width: 1200px;
    }
}

/*end container*/
/*start header*/
header {
    width: 100%;
    height: 73px;
    background: #315863;
    border-bottom: 1px solid #315863;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    header {
        height: 104px;
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
}

@media (min-width: 1024px) {
    header .container {
        gap: 4px;
    }
}

header .logo {
    width: 91px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    header .logo {
        width: 130px;
        height: 28px;
    }
}

header .nav-links,
header .nav-content,
header nav .auth-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

header .nav-links li, nav .login-button {
    font-size: 10px;
    line-height: 150%;
    font-weight: 600;
    color: #fff;
    padding-bottom: 3px;
    cursor: pointer;
    transition: var(--transtion);
}

header .nav-links li.active,
header .nav-links li:not(.login):hover {
    color: var(--active-color);
}

header .nav-links li.active {
    border-bottom: 1px solid var(--active-color);
}

header .about-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

header .about-link .arrow-icon-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

header .about-link .arrow-icon-frame svg {
    fill: #fff;
    transition: var(--transtion);
}

header .nav-links .about-link:hover .arrow-icon-frame svg {
    fill: var(--active-color)
}
nav .auth-actions .login-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
nav .auth-actions .base-button {
    height: 36px;
    padding: 0 12px;
}

@media (min-width: 1200px) {
    header .nav-links, header .nav-content, header nav .auth-actions {
        gap: 32px;
    }

    header .nav-links li, nav .login-button {
        font-size: 14px;
        padding-bottom: 4px;
    }

    header .about-link {
        gap: 8px;
    }

    header .about-link .arrow-icon-frame {
        width: 20px;
        height: 20px;
    }
    nav .auth-actions .login-button{
        gap: 8px;
    }
    nav .auth-actions .base-button {
        height: 48px;
        padding: 0 16px;
    }

}
@media (min-width: 1200px) {
    header nav .toggle-menu {
        display: none;
    }
}
@media (max-width: 1199px) {
    header nav .nav-content {
        display: none;
    }
    header nav .toggle-menu:hover + .nav-content {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 1rem;
        width: 65%;
        z-index: 2;
        padding: 16px ;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
    .nav-content .nav-links, .nav-content .auth-actions{
        flex-direction: column;
        align-items: stretch;
    }
    .nav-content .auth-actions .login-button {
        justify-content: flex-start;
    }
}
@media (1199px >= width >= 768px) {
    header nav .toggle-menu:hover + .nav-content{
        width: 300px;
        right: 5%;
    }
}
/*end header*/

/*start footer*/
footer{
    padding-top: 94px;
    position: relative;
    overflow: hidden;
}
footer .footer-bg-water-mark{
    position: absolute;
    height: 342px;
    right: 0;
    top: 0;
    z-index: -1;
}
footer .top-footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 120px;
}
footer .footer-title{
    padding-bottom: 8px;
    line-height: 150%;
    font-weight: 700;
    font-size: 16px;
    color: var(--second-color);
}
footer .top-footer .links nav{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
footer .top-footer .links nav ul{
    display: flex;
    flex-direction: column;
    gap:8px;
}
footer .top-footer .links nav ul li{
    font-weight: 400;
    font-size: 16px;
    color: var(--second-color);
    line-height: 150%;
    transition: var(--transtion);
    cursor: pointer;
}
footer .top-footer .links nav ul li:hover{
    color: var(--primary-color);
}
footer .top-footer .contact-container{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .top-footer .contact-info .content .custom-row span{
    font-weight: 400;
    color: var(--second-color);
    font-size: 16px;
    line-height: 150%;
}
footer .top-footer .contact-info .content{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
}
footer .top-footer .contact-info .content a{
    width: fit-content;
}
footer .top-footer .contact-info .content .custom-row{
    display: flex;
    gap:8px;
    align-items: center;
    width: fit-content;
}
footer .top-footer .contact-info .content .custom-row .icon-frame{
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
footer .top-footer .contact-info .content .custom-row .icon-frame svg{
    width: 20px;
    height: 20px;
}
footer .top-footer .social-media{
    display: flex;
    align-items: center;
    gap: 8px;
}
footer .top-footer .social-media li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 100%;
}
footer .bottom-footer{
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    padding-bottom: 40px;
    border-top: 1px solid #E5E5E5;
    color:var(--second-color);
    font-weight: 400;
    line-height: 150%;
    font-size: 16px;
    margin-bottom: 0!important;
}
@media (max-width: 1024px) {
    footer{
        padding-top: 24px;
    }

    footer .top-footer{
        gap: 24px;
    }
    footer .footer-title{
        padding-bottom: 6px;
        font-size: 12px;
    }
    footer .top-footer .links nav ul{
        gap:6px;
    }
    footer .top-footer .links nav ul li{
        font-size: 12px;
    }
    footer .top-footer .contact-container{
        gap: 6px;
    }
    footer .top-footer .contact-info .content .custom-row span{
        font-size: 12px;
    }
    footer .top-footer .contact-info .content{
        gap: 6px;
    }
    footer .top-footer .contact-info .content .custom-row{
        gap:6px;
    }
    footer .top-footer .contact-info .content .custom-row .icon-frame{
        width: 20px;
        height: 20px;
    }
    footer .top-footer .contact-info .content .custom-row .icon-frame svg{
        width: 14px;
        height: 14px;
    }
    footer .top-footer .social-media{
        gap: 6px;
    }
    footer .top-footer .social-media li a{
        width: 28px;
        height: 28px;
    }
    footer .bottom-footer{
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 28px;
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    footer .top-footer{
        grid-template-columns: 1fr ;
    }
    footer .top-footer .contact-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 1378px) {
    footer .footer-bg-water-mark{
        height: 80%;

    }
}
/*end footer*/






