@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Pacifico&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans: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 {
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    transition: 500ms;
    /* overflow: hidden; */
}


:root {
    --color01: #008BC0;
    --color02: #ff3946;
}

.padding-t-b {
    padding-top: 20px;
    padding-bottom: 20px;
}

a {
    text-decoration: none;
}

a[rel="button"],
button[type="submit"] {
    background-color: var(--color01);
    display: inline-block;
    border-radius: 10px;
    padding: 10px 25px;
    color: #fff !important;
    transition: 500ms;
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 14px;
}

a[rel="button"]:hover,
button[type="submit"]:hover {
    background-color: var(--color01);
}

.small-text {
    font-weight: 600;
    color: var(--color02);
    display: block;
    margin-bottom: 20px;
}

.control .button-prev {
    margin-right: 15px;
}

.control>div {
    transform: scale(0.8);
    opacity: 0.6;
    transition: 300ms;
}

.control>div:hover {
    transform: none;
    opacity: 1;
}

.head-block h3 {
    width: 310px;
    margin: 0;
    font-weight: 600;
    color: var(--color01);
    font-size: 33px;
}

.head-block {
    margin-bottom: 50px;
    align-items: center;
}



/* Header */

header {
    background-color: transparent;
    transition: 300ms;
    background-color: #fff;
    padding: 20px 140px;
    height: auto;
}


#nav-content{
    display: contents;
}

#nav-content .logo-mobile{
    display: none;
}

.header-bg {
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    background-color: #fff;
    padding: 20px 140px;
    box-shadow: 1px 1px 10px rgba(0 0 0 / 10%);
}

header a {
    transition: 500ms;
}

header .d-flex {
    align-items: center;
}

header .logo {
    margin-right: 20px;
}

#navbar,
#lang>ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    margin-right: 20px;
}

#navbar li a {
    display: block;
    color: #000;
    font-size: 13px;
    position: relative;
    font-weight: 400;
}

#navbar li a:hover {
    color: var(--color01);
}

#navbar li .active{
    color: var(--color01);
    font-weight: 500;
}

#navbar li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    background-color: var(--color01);
    transition: 300ms ease-in-out;
    transform: scale(0);
    

}

html[dir="ltr"] #navbar li a::after{
    left: 0;
    transform-origin: left;
}

html[dir="rtl"] #navbar li a::after{
    right: 0;
    transform-origin: right;
}

#navbar li a:hover::after {
    transform: none;
}


html[dir="rtl"] #navbar li:not(:last-child) a{
    margin-left:10px;
}

html[dir="ltr"] #navbar li:not(:last-child) a{
    margin-right: 10px;
}

#lang #list {
    position: relative;
}

#link-lang {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

#link-lang:hover {
    color: var(--color01);
}

#lang #list ul.sub-menu {
    padding: 0;
    list-style: none;
    min-width: 150px;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 9%);
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    left: 0;
    transition: 500ms;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    background-color: #fff;
    z-index: 9;
}

#lang #list ul.sub-menu li a {
    display: block;
    padding: 10px 20px;
    transition: 300ms;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

#lang #list ul.sub-menu li a:hover {
    background: #f4f4f4;
    color: var(--color01);
}

#lang #list ul.sub-menu.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

#contactbtn a {
    color: #000;
    display: block;
    font-size: 13px;
    font-weight: 400;

}

#contactbtn a span {
    color: var(--color01);
}

#btn-mobile {
    display: none;
}


/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding-top: 90px;
    position: relative;
}

footer::before{
    content: '';
    position: absolute;
    width: 89px;
    height: 92px;
    background-image: url(../images/footer_befor.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 15%;
    left: 8%;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

footer::after{
    content: '';
    position: absolute;
    width: 89px;
    height: 92px;
    background-image: url(../images/footer_befor.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 20%;
    right: 8%;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

footer .footer-top {
    padding: 0 45px;
}

footer .footer-mid {
    padding: 0 45px;
}

footer .footer-bottom {
    padding: 0 45px;
    align-items: center;
}

footer ul {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
}

footer ul li a {
    color: #fff;
    display: block;
    transition: 300ms;
}

footer ul.menu-footer li a {
    margin-right: 25px;
}

footer ul li a:hover {
    color: var(--color01);
    font-weight: 500;
}


footer .footer-top p {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 30px;
}

footer .footer-top .f-top-btn a {
    display: flex;
    width: 320px;
    height: 40px;
    align-items: center;
    justify-content: flex-start;
    background-color: #008BC0;
    color: #fff;
    border-radius: 5px;
    margin-right: 20px;
    padding: 15px;
    font-size: 13px;
    position: relative;
}

footer .footer-top .f-top-btn a span {
    font-size: 16px;
    position: absolute;
}

html[dir="ltr"] footer .footer-top .f-top-btn a span{
    right: 15px;
}
html[dir="rtl"] footer .footer-top .f-top-btn a span{
    left: 15px;
    transform: rotate(180deg);
}

footer .footer-top .f-top-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

footer .footer-mid figure {
    width: 220px;
    height: 37px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

footer .footer-mid figure img {
    width: 100%;
    height: 100%;
}

footer .footer-mid {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .footer-mid p {
    font-size: 14px;
    font-weight: 400;
    width: 655px;
    line-height: 25px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 90px;
}

footer .footer-mid .menu-footer a {
    font-size: 13px;
    font-weight: 400;
}

footer .footer-bottom-row {
    padding: 20px 0px;
    background-color: #1D2122;
    display: flex;
}

footer .menu-footer {
    margin: 0;
}

footer .footer-bottom-row .footer-bottom .f-b-center p {
    margin: 0;
    font-size: 13px;
}

footer .footer-bottom-row .footer-bottom .f-b-start a {
    font-size: 13px;
}

footer .footer-bottom-row .footer-bottom .f-b-end a {
    font-size: 13px;
}

footer .footer-bottom-row .footer-bottom .f-b-end small {
    font-size: 13px;
    display: block;
    margin-right: 20px;
}


@media (max-width:1200px) {
    #navbar {
        margin-right: 10px;
    }

    header .logo {
        margin-right: 40px;
    }

    #lang {
        margin-right: 15px;
    }

    html[dir="rtl"] #navbar li:not(:last-child) a{
        margin-left: 10px;
    }
    
    html[dir="ltr"] #navbar li:not(:last-child) a{
        margin-right: 10px;
    }

    header {
        padding: 20px 80px;
    }

}


@media (max-width:992px) {
    #nav-content .logo-mobile{
        display: block;
    }

    header .logo {
        margin: 0;
    }
    
    #navbar li:not(:last-child) a {
        margin: 0;
    }
    
    #lang {
        margin: 0;
        margin-bottom: 40px;
    }

    .header-bg {
        padding: 15px;
        padding-bottom: 20px;
    }

    #btn-mobile {
        display: flex;
        position: relative;
        width: 32px;
        height: 32px;
        cursor: pointer;
        font-size: 40px;
        color: var(--color01);
    }

    html[dir="ltr"] #btn-mobile{
        margin-left: auto;
    }

    html[dir="rtl"] #btn-mobile{
        margin-right: auto;
    }

    #navbar, #lang>ul {
        flex-direction: column;
    }   

    #nav-content {
        display: flex;
        margin: 0;
        position: fixed;
        height: 100vh;
        background-color: #fff;
        width: 250px;
        top: 0;
        flex-direction: column;
        box-shadow: 1px 1px 9px rgb(0 0 0 / 15%);
        padding: 30px 15px;
        opacity: 0;
        transition: 300ms;
        visibility: hidden;
        z-index: 999;
    }

    html[dir="ltr"] #nav-content{
        left: 0;
        transform: translateX(-250px);
    }

    html[dir="rtl"] #nav-content{
        right: 0;
        transform: translateX(250px);
    }

    html[dir="ltr"] #nav-content.active {
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    html[dir="rtl"] #nav-content.active {
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    #navbar li a {
        padding: 10px 0;
    }

    #bg-mobile {
        position: fixed;
        height: 100%;
        width: 100%;
        background-color: #000;
        opacity: 0;
        transition: 0.3s;
        visibility: hidden;
        left: 0;
        top: 0;
        z-index: 11;
    }

    #bg-mobile.active {
        opacity: 0.5;
        visibility: visible;
    }

    .head-block {
        margin-bottom: 20px;
    }

    header {
        padding: 20px 40px;
    }
    
    footer {
        padding-top: 70px;
    }
    
    footer .footer-top {
        padding: 0 30px;
    }
    
    footer .footer-mid {
        padding: 25px 30px;
    }
    
    footer .footer-bottom {
        padding: 0 30px;
    }
    
    footer .footer-bottom ul.menu-footer li a {margin-right: 13px;}
    
    footer .footer-bottom-row .footer-bottom .f-b-center p {
        margin-right: 10px;
    }
}

@media(max-width:768px) {

    .padding-t-b {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    header .container {padding: 0;margin: 0;}

header {
    display: flex;
    justify-content: center;
}

footer .footer-top {
    padding: 0;
}

footer .footer-mid {
    padding: 25px 0px;
}

footer .footer-mid p {
    width: auto;
    margin-bottom: 60px;
}

footer .footer-bottom {
    padding: 0;
}

footer .footer-bottom-row .footer-bottom .f-b-start a {
    font-size: 11px;
}

footer .footer-bottom-row .footer-bottom .f-b-center p {
    font-size: 11px;
}

footer .footer-bottom-row .footer-bottom .f-b-end small {
    font-size: 11px;
}

footer .footer-bottom-row .footer-bottom .f-b-end a {
    font-size: 11px;
}

footer .footer-bottom ul.menu-footer li a {
    margin-right: 12px;
}
}


@media (max-width: 575.98px) {

    #header {
        padding: 15px;
    }

    header .logo {
        width: 150px;
        height: 35px;
    }
    
    header .logo img {
        width: 100%;
        height: 100%;
    }

    footer .footer-mid .menu-footer a {
        font-size: 10px;
        margin-right: 9px;
    }
    
    footer .footer-bottom-row .footer-bottom .f-b-start a {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    footer .footer-bottom-row .footer-bottom .f-b-center p {
        font-size: 10px;
        margin-right: 0;
    }
    
    footer .footer-bottom-row .footer-bottom .f-b-end small {
        font-size: 10px;
        margin-right: 5px;
    }
    
    footer .footer-bottom-row .footer-bottom .f-b-end a {
        font-size: 10px;
        margin-right: 5px;
    }
    
    footer .footer-bottom-row .f-b-end {
        display: none !important;
    }
    
    footer .f-b-start .menu-footer {
        flex-direction: column;
    }
    
    footer .footer-top .f-top-btn a {
        margin-right: 5px;
        font-size: 12px;
    }
    
    footer .footer-top .f-top-btn a span {display: none;}
    
}


