@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --blue-main: #063350;
  --green: #4BAC9A;
  --text: #373D45;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: "Roboto", sans-serif;
}

body::-webkit-scrollbar {
    width: 0;
    overflow: visible;
}

body.lock {
    overflow: hidden;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-ms-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}
/****HEADER NAVIGATION*********/

.header__container {
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.041);
    width: 100%;
    height: 104px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 41px 0px 36px;
}
.header__logo {
    width: 274px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.header__logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header__navigation {
    width: 651px;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
}
.header__navigation-element {
    color: var(--blue-main);
    font-style: 16px;
    font-weight: 600;

}
.header__navigation-element:hover{
    color: var(--green);
}

.header__language {
    width: 73px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    gap: 6px;
}

.header__language-current {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__language-arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.header__language.active .header__language-arrow {
    transform: rotate(-135deg);
}

.header__language-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: none;
    min-width: 70px;
    text-align: center;
}

.header__language.active .header__language-dropdown {
    display: block;
}

.header__language-dropdown a {
    display: block;
    padding: 10px 0;
    color: var(--blue-main);
    font-weight: 600;
}

.header__language-dropdown a:hover {
    background: #f5f5f5;
}

/****HEADER DROPDOWN MENU*****/
.header__nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.header__nav-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
}

.header__nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 6px 0;
    z-index: 1001;
    padding-top: 12px;
}

.header__nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.header__nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
}

.header__nav-dropdown:hover .header__nav-dropdown-menu {
    display: block;
}

.header__nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--blue-main);
    font-size: 14px;
    font-weight: 500;
    transition: background .2s, color .2s;
}

.header__nav-dropdown-menu a:hover {
    background: rgba(75, 172, 154, 0.08);
    color: var(--green);
}
/********Footer*****/
.footer__container {
    width: 100%;
    height: 160px;
    background-color: var(--green);
        position: relative;
        
    padding: 36px 41px 0px 71px;
}
.footer__wrapper {
    width: 100%;
    height: 100%;
        display: flex;
    justify-content: space-between;

}
.footer__data {
    width: 874px;
    padding-bottom: 20px;
    display: flex;
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.234);

}
.footer__data a {
    color: #fff;
    display: flex;
    align-items: center;
    margin-right: 25px;
}
.footer__data i {
    font-size: 20px;
}
.footer__data span {
    margin-left: 8px;
    text-decoration: underline;
}
.footer__terms {
    display: flex;

}
.footer__terms a {
    color: #fff;
    font-size: 16px;
    color: #E0EEF9;
    margin-left: 15px;
}
.footer__rights {
    position: absolute;
    bottom: 40px;
    left: 71px;
    font-size: 16px;
    color: #E0EEF9;
    display: flex;
}
.footer__rights  a {
    color: #fff; margin-left: 10px;
}
.footer__logo {
    background-color: #fff;
    width: 326px;
    height: 80px;
    border-top-left-radius: 25px; 
    position: absolute;
    bottom: 0;
    right: 0;
        display: flex;
    align-items: center;
    justify-content: center;
}
.footer__logo-block{
    width: 207px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-block img{
    width: 100%;
    object-fit: contain;

}

/****BURGER & MOBILE NAV*****/
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    padding: 6px;
    z-index: 1002;
}

.header__burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--blue-main);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.header__burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.open span:nth-child(2) {
    opacity: 0;
}

.header__burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header__nav-overlay {
    display: none;
}

.header__language--mobile {
    display: none;
}
/********share button styles***********/
        .share-block {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 0;
            flex-wrap: wrap;
        }

        .share-label {
            font-size: 14px;
            font-weight: 600;
            color: #063350;
        }

        .share-icons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .share-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            color: #fff;
            font-size: 17px;
            text-decoration: none;
            transition: transform .2s, opacity .2s;
        }

        .share-icon:hover {
            transform: scale(1.15);
            opacity: .85;
        }

        .share-fb {
            background: #1877F2;
        }

        .share-wa {
            background: #25D366;
        }

        .share-tg {
            background: #0088cc;
        }

        .share-tw {
            background: #1DA1F2;
        }

        .share-li {
            background: #0A66C2;
        }

        .share-copy {
            background: #6c757d;
            cursor: pointer;
        }
@media (max-width: 1024px) {

    .header__container {
        height: 70px;
        padding: 0 16px;
    }

    .header__logo {
        width: 180px;
        height: 54px;
    }

    .header__burger {
        display: flex;
    }

    .header__language--desktop {
        display: none;
    }

    .header__navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 0;
        z-index: 1001;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right .3s ease;
        overflow-y: auto;
    }

    .header__navigation.open {
        right: 0;
    }

    .header__navigation-element {
        padding: 14px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 15px;
        display: block;
    }

    .header__nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }

    .header__nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    /**********/
        /**********/
            /**********/
    /* Dropdown in mobile — click/tap based, always visible as sub-items */
/* Dropdown in mobile — flat list */
    .header__nav-dropdown {
        display: block;
        height: auto;
        border-bottom: none;
    }

    .header__nav-dropdown-trigger {
        display: none;
    }

    .header__nav-dropdown::after {
        display: none;
    }

    .header__nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
        padding: 0;
        margin-top: 0;
        display: block;
    }

    .header__nav-dropdown-menu::before {
        display: none;
    }

    .header__nav-dropdown-menu a {
        padding: 14px 0;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid #f1f5f9;
        color: var(--blue-main);
    }

    /* Language switcher inside mobile menu */
    .header__language--mobile {
        display: flex;
        margin-top: 20px;
        align-self: flex-start;
    }
        /**********/
            /**********/    /**********/    /**********/
    /************FOOTER***/
    .footer__container{
        height: 300px;

        width: 100%;
        padding: 20px 0px;
    }
    .footer__wrapper{
        flex-direction: column;
        justify-content: initial;
    }
    .footer__terms{
        width: 90%;
        margin: 0 auto;
        margin-top: 10px;
    }
    .footer__data{
        width: 90%;
        margin: 0 auto;
    }
    .footer__logo{
        display: none;
        visibility: hidden;
    }
    .footer__data{
        flex-direction: column;
        height: initial;
    }
        .footer__data a {
            margin-bottom: 10px;
        }
        .footer__rights{
            left: 20px;
            font-size: 14px;
            flex-direction: column;
        }
        .footer__rights a {
            margin-left: 0 ;
            margin-top: 15px;
        }
}