/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --primary-font: "Quicksand", sans-serif;
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
    --primary-color: #2167ad;
    --text-color: #20336d;
    --dark-blue: #003e7b;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;    
    background: var(--bg-white);
    color: var(--text-color);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--primary-color); 
    text-align: center; 
    font-size: 28px;
    color: var(--white);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    z-index: 8888;    
}

.scrolltotop i {
    color: var(--white);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primary-color); 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.container-inner {
    max-width: 1140px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.title-large {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-color);
}

.title-medium {
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
}

.title-small {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
}

.title-small:before {
    content: '';
    position: relative;
    display: block;
    width: 56px;
    height: 1px;
    background: var(--primary-color);
    margin-right: 6px;
}

.text-15 {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
}

.button {
    font-size: 15px; 
    font-weight: 500;
    color: var(--white);
    padding: 8.25px 24px;
    border-radius: 30px;
    background: var(--primary-color);
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.button:hover {
    color: var(--white);
}

.button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    background: var(--dark-blue);
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 51%;
    transform: translateX(100%);
    background: var(--dark-blue);
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.button:hover:after {
    width: 60%;
}

.button:hover:before {
    width: 60%;
}

/*=== Header area start ===*/

.header-area {
    overflow: hidden;
}

.header-top {
    padding: 13px 0;
    background: var(--primary-color);
}

.header-top .container {
    max-width: 1790px;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left ul {
    display: flex;
    align-items: center;
}

.header-top-left ul li {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    margin-right: 20px;
}

.header-top-left ul li i {
    margin-right: 10px;
}

.header-top-right ul {
    display: flex;
    align-items: center;
}

.header-top-right ul li a {
    font-size: 15px;
    color: var(--white);
    margin-left: 16px;
}

.header-top-right ul li a i {
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header-top-right ul li a:hover {
    color: var(--black);
}

.header-navigation {
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #7a7a7a;
    z-index: 991;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.fixed-header {
    position: fixed !important;
    background: var(--dark-blue);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.fixed-header .header-navigation-link ul li a.active,
.fixed-header .header-navigation-link ul li a:hover {
    background: var(--dark-blue);
}

.header-navigation .container {
    max-width: 1870px;
}

.header-navigation-content {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-width: 200px;
}

.header-navigation-link ul {
    display: flex;
    align-items: center;
    margin-left: 300px;
}

.header-navigation-link ul li a {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-right: 16px;
    padding: 12px 8px;
    background: transparent;
    border-radius: 51px;
}

.header-navigation-link ul li:last-of-type a {
    margin-right: 0;
}

.header-navigation-link ul li a.active,
.header-navigation-link ul li a:hover {
    background: var(--primary-color);
}

.hamburger {
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    display: block;
    background: var(--white);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.hamburger span:nth-of-type(2) {
    margin: 6px 0;
}

.hamburger:hover span {
    background: var(--primary-color);
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: var(--bg-black); 
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-logo img {
    max-width: 160px;
}

.side-menu-logo .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-logo .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: var(--bg-white);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-logo .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-logo .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-logo .close:hover span {
    background: var(--primary-color);
}

.side-menu-link ul {
    flex-direction: column;
    align-items: start;
    margin-left: 0;
}

.side-menu-link ul li a {
    margin: 0 0 15px;
}

.banner-area {
    position: relative;
}

.slider-container {
    padding: 300px 15px 170px;
    overflow: hidden;
    position: relative;
}

.banner-item {
    position: relative;
    z-index: 100;
    text-align: center;
}

.banner-item h1 {
    font-size: 82px;
    font-weight: 700;
    color: var(--white);
    line-height: 130%;
    margin-bottom: 10px;
}

.banner-item p {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.slider-container::after {
    background-color: #000;
    content: '';
    position: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    transform: scale(1.15);
    transition: opacity .6s ease;
}

.slide.active {
    animation: grow 5s linear forwards;
    opacity: 1;
}

@keyframes grow {
    0%, 20% {
        transform: scale(1);
    }
    
    75%, 100% {
        transform: scale(1.15);
    }
}

.banner-side-image {
    position: absolute;
    left: 10px;
    bottom: 45px;
    z-index: 100;
}

.banner-side-image img {
    max-width: 172px;
}

/*=== main content start ===*/

.main-content {
    overflow: hidden;
}

.about-area {
    padding-top: 50px;
}

.about-left h6 {
    margin-bottom: 30px;
}

.about-left h2 {
    margin-bottom: 30px;
}

.about-left p {
    margin-bottom: 75px;
}

.about-left ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-left ul li a.button {
    background: #20336d;
    margin-right: 20px;
}

.about-left ul li a.button i {
    margin-right: 10px;
}

.about-right {
    padding: 56px;
    background: #edf1fa;
}

.about-right h2 {
    margin-bottom: 25px;
}

.about-right p {
    margin-bottom: 30px;
}

/*=== about area start ===*/

.company-area {
    padding: 40px 0 0;
}

.company-content ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.company-content ul li {
    width: 16.666%;
    margin: 10px 0 40px;
    padding: 0 10px;
    text-align: center;
}

.company-content ul li a img {
    max-width: 126px;
}

.company-content ul li:nth-of-type(1) a img {
    max-width: 65px;
}

.company-content ul li:nth-of-type(2) a img {
    max-width: 71px;
}

.company-content ul li:nth-of-type(3) a img {
    max-width: 77.5px;
}

.company-content ul li:nth-of-type(4) a img {
    max-width: 58.5px;
}

.company-content ul li:nth-of-type(5) a img {
    max-width: 111px;
}

.company-content ul li:nth-of-type(6) a img {
    max-width: 158px;
}

.company-content ul li:nth-of-type(7) a img {
    max-width: 119px;
}

.company-content ul li:nth-of-type(8) a img {
    max-width: 103px;
}

.company-content ul li:nth-of-type(9) a img {
    max-width: 158px;
}

.company-content ul li:nth-of-type(10) a img {
    max-width: 158px;
}

.company-content ul li:nth-of-type(11) a img {
    max-width: 158px;
}

/*=== counter area start ===*/

.counter-area {
    background: #edf1fa;
}

.counter-left img {
    width: 100%;
    min-height: 526px;
    object-fit: cover;
}

.counter-right ul {
    display: flex;
    flex-wrap: wrap;
}

.counter-right ul li {
    width: 50%;
    min-height: 263px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
}

.counter-right ul li:nth-of-type(2),
.counter-right ul li:nth-of-type(3) {
    background: var(--dark-blue);
}

.counter-right ul li i {
    font-size: 50px;
    color: var(--white);
    display: block;
    margin-bottom: 30px;
}

.counter-right ul li h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.counter-right ul li p {
    font-size: 19px;
    font-weight: 400;
    color: var(--white);
}

/*=== service area start ===*/

.service-area {
    padding-top: 60px;
    position: relative;
    z-index: 9;
}

.service-area:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background: #edf1fa;
    z-index: -1;
}

.service-left {
    padding-bottom: 20px;
}

.service-left h6 {
    margin-bottom: 32px;
}

.service-left h2 {
    margin-bottom: 24px;
}

.service-left p {
    margin-bottom: 25px;
}

.service-left p:last-of-type {
    margin-bottom: 0;
}

.service-right {
    padding-left: 50px;
}

.service-right h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 25px;
}

.service-right h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-right a.button {
    padding: 9.25px 25px;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.service-right a.button:hover {
    color: var(--white);
}

.service-right a.button:after,
.service-right a.button:before {
    background: var(--primary-color);
}

/*=== commercial area start ===*/

.commercial-area {
    padding-top: 150px;
    padding-bottom: 180px;
}

.commercial-content {
    max-width: 1100px;
    margin: 0 auto;
}

.tab-menu-first {
    text-align: center;
    margin-bottom: 10px;
}

.tab-menu-first ul {
    display: inline-block;
    border-radius: 50px;
    background: #f7f7fb;
}

.tab-menu-first ul li {
    display: inline-block;
}

.tab-menu-first ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
    padding: 18.75px 20px;
    border-radius: 50px;
}

.tab-menu-first ul li.ui-state-active a {
    color: var(--white);
    background: var(--primary-color);
}

.tab-menu-second ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #02010129;
    margin-bottom: 20px;
}

.tab-menu-second ul li {
    width: 16.666%;
}

.tab-menu-second ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: 10px;
    padding-top: 26.5px;
    width: 100%;
    margin: -1px;
}

.tab-menu-second ul li:last-of-type a {
    margin-right: -5px;
}

.tab-menu-second ul li a i {
    font-size: 47px;
    min-height: 49px;
    margin-bottom: 14px;
}

.tab-menu-second ul li.ui-state-active a,
.tab-menu-second ul li a:hover {
    color: var(--white);
    background: var(--primary-color);
}

.commercial-item {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.commercial-item-left {
    width: 50%;
    padding-right: 10px;
}

.commercial-item-left h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
}

.commercial-item-left p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 30px;
}

.commercial-item-left p strong {
    font-weight: 700;
    display: block;
}

.commercial-item-left ul {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.commercial-item-left ul li {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    display: flex;
    align-items: center;
    margin-right: 14px;
    margin-bottom: 8px;
}

.commercial-item-left ul li i {
    color: var(--primary-color);
    margin-right: 6px;
}

.commercial-item-left-inner {
    padding-top: 50px;
}

.commercial-item-right {
    width: 50%;
    padding-left: 10px;
}

.commercial-item-right img {
    width: 100%;
}

/*=== story area start ===*/

.story-area {
    background: #edf1fa;
}

.story-area .container {
    max-width: 1350px;
}

.story-content {
    position: relative;
}

.story-left {
    max-width: 630px;
    padding: 40px 0 70px;
}

.story-left h2 {
    margin-bottom: 30px;
}

.story-left p {
    margin-bottom: 30px;
}

.story-left-inner {
    padding-top: 55px;
}

.story-left-inner h3 {
    font-family: 'Arial';
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
}

.story-right-inner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 659.5px;
}

.story-right-inner img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.story-right img {
    width: 100%;
}

/*=== question area start ===*/

.question-area {
    padding-top: 40px;
}

.question-title {
    text-align: center;
    margin-bottom: 50px;
}

.question-title h2 {
    font-size: 30px;
}

.question-content {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
}

.accordion-item {
    border: none;
    background: transparent;
}

.accordion-title {
    padding: 10px 15px;
    border-bottom: 1px solid #d5d8dc;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.accordion-title i {
    font-size: 15px;
    color: var(--text-color);
    margin-right: 12px;
}

.accordion-title i:nth-of-type(2) {
    display: none;
}

.accordion-title.active i:nth-of-type(1) {
    display: none;
}

.accordion-title.active i:nth-of-type(2) {
    display: block;
}

.accordion-title h2 {
    font-weight: 600;
}

.accordion-body {
    padding: 15px;
    border-bottom: 1px solid #d5d8dc;
    display: none;
}

.accordion-body p {
    margin-bottom: 25px;
}

/*=== team area start ===*/

.team-area {
    padding-top: 65px;
}

.team-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 4px;
}

.team-title {
    padding-top: 60px;
}

.team-title > span {
    width: 185px;
    height: 1px;
    display: block;
    background: var(--primary-color);
    margin-bottom: 40px;
}

.team-title h2 {
    margin-bottom: 20px;
}

.team-title p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.team-title p a {
    text-decoration: underline;
    color: var(--primary-color);
}

.team-title p a:hover {
    color: var(--text-color);
}

.team-item {
    position: relative;
    z-index: 9;
    overflow: hidden;
    margin-bottom: 2px;
}

.team-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 0;
    z-index: 1;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

.team-item:hover:after {
    height: 100%;
    opacity: 1;
}

.team-item-image img {
    width: 100%;
}

.team-item-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

.team-item:hover .team-item-inner {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.team-item-inner h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.team-item-inner h6 {
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.team-item-inner p {
    color: var(--white);
}

/*=== advice area start ===*/

.advice-area {
    padding-top: 65px;
}

.advice-upper {
    text-align: center;
    margin-bottom: 35px;
}

.advice-upper h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advice-upper h2 {
    margin-bottom: 20px;
}

.advice-content {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2px;
}

.advice-item {
    padding: 40px 0;
    text-align: center;
    min-height: 285px;
    background: var(--primary-color);
    margin-bottom: 4px;
}

.advice-item > i {
    font-size: 50px;
    color: var(--white);
    display: block;
    margin-bottom: 30px;
}

.advice-item h2 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 30px;
}

.advice-item p {
    color: var(--white);
    margin-bottom: 6px;
}

.advice-item p a {
    color: var(--white);
}

.advice-item a.button {
    color: var(--black);
    border-radius: 4px;
    background: var(--bg-white);
    padding: 7px 16px;
}

.advice-item a.button i {
    margin-right: 6px;
}

.advice-item a.button:hover {
    color: var(--white);
}

/*=== contact area start ===*/

.contact-area {
    padding: 50px 0 80px;
}

.contact-content {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.contact-left {
    width: 422px;
}

.contact-left h2 {
    margin-bottom: 26px;
}

.contact-left p {
    margin-bottom: 26px;
}

.contact-left img {
    max-width: 190px;
}

.contact-right {
    width: calc(100% - 422px);
    padding-left: 90px;
}

.contact-right-inner ul {
    display: inline-block;
    background-color: #f7f7fb;
    padding: 5px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.contact-right-inner ul li {
    display: inline-block;
}

.contact-right-inner ul li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 30px;
}

.contact-right-inner ul li.ui-state-active a {
    color: var(--white);
    background: var(--primary-color);
}

.contact-form .row {
    --bs-gutter-x: 20px;
}

.form-input input,
.form-input textarea {
    font-size: 16px;
    font-weight: 400;
    color: #7A7A7A;
    width: 100%;
    height: 47px;
    display: flex;
    align-items: center;
    border-radius: 1px;
    background: var(--bg-white);
    border: 1px solid #c7cdda;
    padding: 0 16px;
    margin-bottom: 10px;
}

.form-input textarea {
    padding: 6px 16px;
    height: 82px;
    resize: none;
}

.form-button button.button {
    font-size: 16px;
    padding: 11.5px 30px;
    border: none;
}

/*=== map area start ===*/

.map-content iframe {
    width: 100%;
    height: 350px;
}

.map-item {
    display: flex;
    flex-wrap: wrap;
}

.map-left {
    width: calc(100% - 152px);
    border: 1px solid #d5d5d7;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.map-left span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #575A5F;
    border-right: 1px solid #d5d5d7;
    border-radius: 5px 0 0 5px;
    background: #eaeaeb;
}

.map-left div {
    width: calc(100% - 42px);
}

.map-left div input {
    font-size: 15px;
    font-weight: 400;
    color: #575A5F;
    width: 100%;
    height: 42px;
    padding: 0 16px;
    border: none;
    border-radius: 0 5px 5px 0;
}

.map-right {
    width: 152px;
    padding-left: 30px;
}

.map-right button.button {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    padding: 0;
    width: 122px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    background: #0058e6;
}

.map-right button.button i {
    margin-right: 8px;
}

.map-right button.button:after {
    background: #0048bd;
}

.map-right button.button:before {
    background: #0048bd;
}

/*=== footer area start ===*/

.footer-area {
    background: #21222c;
    overflow: hidden;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-item {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 233px;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 100%;
}

.footer-item p {
    color: var(--white);
    margin-bottom: 30px;
}

.footer-item p i {
    color: var(--primary-color);
    width: 24px;
}

.footer-item-inner {
    margin-bottom: 20px;
}

.footer-item-inner ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
}

.footer-item-inner ul li a i {
    color: var(--primary-color);
    width: 24px;
}

.footer-item-inner ul li a:hover {
    color: var(--primary-color);
}

.footer-item-inner-second ul {
    display: flex;
    align-items: center;
}

.footer-item-inner-second ul li a {
    font-size: 12px;
    color: var(--primary-color);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 4px;
    background: var(--bg-white);
}

.footer-item-inner-second ul li a:hover {
    color: var(--white);
    background: var(--primary-color);
}

.footer-item h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.footer-item-inner-third {
    display: flex;
    flex-wrap: wrap;
}

.footer-item-inner-fourth {
    margin-right: 20px;
}

.footer-item-inner-third ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    display: inline-block;
    margin-bottom: 10px;
}

.footer-item-inner-third ul li:last-of-type a {
    margin-bottom: 0;
}

.footer-item-inner-third ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 6px double #d8d8D821;
}

.footer-bottom-item p {
    color: var(--white);
}

/*=== impressum page start ===*/

.second-header .header-navigation {
    position: inherit;
    background: var(--dark-blue);
    border-top: 1px solid #7a7a7a;
    border-bottom: 1px solid #7a7a7a;
}

.impressum-title {
    padding: 65px 15px;
    text-align: center;
    background: var(--dark-blue);
}

.impressum-title h2 {
    color: var(--white);
}

.impressum-content {
    padding: 50px 0 70px;
}

.impressum-item h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color);
    margin: 20px 0 25px;
}

.impressum-item p {
    margin-bottom: 30px;
}

.impressum-item p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.impressum-item p a:hover {
    color: var(--dark-blue);
}

.impressum-item p strong {
    font-weight: 700;
}

.impressum-item p span {
    margin-right: 8px;
}

.impressum-item ul {
    margin-bottom: 30px;
}

.impressum-item ul li {
    display: flex;
    align-items: start;
    padding-left: 32px;
    position: relative;
}

.impressum-item ul li:before {
    content: '';
    position: relative;
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    display: block;
    background: var(--text-color);
    margin-top: 10px;
    margin-right: 8px;
}

/*=== cookies page start ===*/

.cookies-area {
    padding: 65px 0 45px;
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookies-item {
    max-width: 800px;
}

.cookies-item h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #3A3A3A;
    margin-bottom: 30px;
}

.cookies-item p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4B4F58;
    margin-bottom: 30px;
}

.cookies-item p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookies-item p a:hover {
    color: var(--dark-blue);
}

.cookies-item p strong {
    font-weight: 700;
}

.cookies-item h3 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #3A3A3A;
    margin-bottom: 30px;
}

.cookies-item > ul {
    margin-bottom: 30px;
}

.cookies-item > ul li {
    font-size: 14px;
    font-weight: 400;
    color: #4B4F58;
    display: flex;
    align-items: start;
    position: relative;
}

.cookies-item > ul li:before {
    content: '';
    position: relative;
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    display: block;
    background: #4B4F58;
    margin-top: 10px;
    margin-right: 8px;
}

.cookies-item-inner ul {
    margin-bottom: 20px;
}

.cookies-item-inner ul li {
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3A3A3A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: rgba(239,239,239,.5)
}

.cookies-item-inner ul li span {
    font-size: 14px;
    font-weight: 400;
    color: #4B4F58;
}

.cookies-item-inner ul li span i {
    font-size: 25px;
    margin-left: 50px;
}

.slider-image p {
    text-align: center;
}

/*=== cookie page start ===*/

.popup-overlay {
    display:none;
    position:fixed;
    top:0;
    left:0;
    rigth:0;
    bottom:0;
    padding: 10px;
    background-color:rgba(0,0,0,.5);
    width:100vw;
    height:100vh;
    overflow: auto;
    text-align:center;
    align-items:center;
    justify-content:center;
    z-index: 999999;
}

.cookie-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-bar {
    padding: 15px 20px 10px;
    width: 526px;
    margin: auto;
    border-radius: 10px;
    background: var(--bg-white);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    position: relative;
}

.cookie-bar h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    text-align: center;
    margin-bottom: 30px;
}

.cookie-bar p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 15px;
}

.cookie-bar-inner {
    padding-top: 10px;
}

.cookie-bar-inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.cookie-bar-inner ul li {
    width: 31.5%;
    padding: 0 5px;
}

.cookie-bar-inner ul li:last-of-type {
    width: 37%;
}

.cookie-bar-inner ul li a.button {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    width: 100%;
    text-align: center;
    padding: 11.25px 0px;
    border-radius: 8px;
    background: #e6e6e6;
    margin-bottom: 14px;
}

.cookie-bar-inner ul li a.button.active,
.cookie-bar-inner ul li a.button.active:after,
.cookie-bar-inner ul li a.button.active:before,
.cookie-bar-inner ul li a.button:after,
.cookie-bar-inner ul li a.button:before {
    background: var(--primary-color);
}

.cookie-bar-inner ul li a.button.active,
.cookie-bar-inner ul li a.button:hover {
    color: var(--white);
}

.cookie-bar-inner-second ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cookie-bar-inner-second ul li a {
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--black);
    text-decoration: underline;
    margin: 0 5px 5px;
    display: block;
}

.cookie-bar-inner-second ul li a:hover {
    color: var(--primary-color);
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.cookie-close i {
    font-size: 18px;
    color: var(--black);
}

.cookie-accordion {
    display: none;
}

.cookie-accordion .accordion-item {
    margin-bottom: 10px;
}

.cookie-accordion .accordion-item {
    position: relative;
}

.cookie-accordion .accordion-title {
    padding: 10px;
    justify-content: space-between;
    border: none;
    background-color: #f7f7f7;
}

.cookie-accordion .accordion-title div {
    display: flex;
    align-items: center;
}

.cookie-accordion .accordion-title h2 {
    margin-bottom: 0;
}

.cookie-accordion .accordion-title i {
    margin-right: 0;
    margin-left: 10px;
}

.cookie-accordion .accordion-title small {
    font-size: 12px;
    font-weight: 500;
    color: #008000;
}

.cookie-accordion .accordion-body {
    padding: 10px;
    border: none;
    background-color: #f7f7f7;
}

.cookie-accordion .accordion-body p {
    font-size: 12px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 0;
    text-align: left;
    line-height: 25.6px;
}

.accordion-switch {
    position: absolute;
    top: 0;
    right: 35px;
    transform: translateY(-12px);
}

.accordion-switch input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.accordion-switch label {
	cursor: pointer;
	text-indent: -9999px;
	width: 35px;
	height: 20px;
	background: #F56E28;
	display: block;
	border-radius: 100px;
	position: relative;
}

.accordion-switch label:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

.accordion-switch input:checked + label {
	background: var(--primary-color);
}

.accordion-switch input:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

.accordion-switch label:active:after {
	width: 10px;
}

.cookie-show-button {
    position: fixed;
    right: 35px;
    bottom: -38px;
    z-index: 99999;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
}

.cookie-show-button:hover {
    bottom: 0;
}

.cookie-show-button a {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 181px;
    height: 50px;
    border-radius: 15px 15px 0 0;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    background-color: var(--bg-white);
}

.map-area p {
	text-align: center;
	padding-bottom: 5px;
}


#cc-main .cm--cloud .cm__desc span {
	display: flex;
	align-items: center;
	gap: 20px;
}
#cc-main .cm--cloud .cm__desc a {
    text-decoration: underline;
}

.success-alert {
    background-color: #DBFEDE;
    position: absolute;
    top: 36px;
    width: 50%;
    color: #31AC3A;
    z-index: 999999999999999999999999999999999;
    padding: 15px 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(49, 172, 58, .2);  

}
  
@media screen and (max-width: 767px) {
    .success-alert {
        width: 95%;
    }
}