:root {
    --main-color: #00a6bf;
    --second-color: #222222;
    --third-color: #393939;
    --fourth-color: #323232;
    --text-color: #393939;
    --p-color: #81848a;
    --link-color: #393939;
    --shadow-1: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
html{
    margin: 0 !important;
}
body {
    color: var(--text-color);
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    background: #fff;
    padding: 0 !important;
}
a{
    text-decoration: none;
    color: var(--link-color);
}
a:hover{
    color: var(--main-color);
}
h1, h2, h3, h4, h5, h6{
    line-height: 1.4;
}
section.page ul,
p{
    color: var(--p-color);
}
section.page ul li::marker{
    color: var(--main-color);
}
img {
    max-width: 100%;
}
*{
    transition: all 0.3s ease-out;
}
.placehold{
    padding: 500px 0;
}
section{
    padding: 70px 0;
    position: relative;
}

.home-slider-area{
    padding: 0;
    position: relative;
}
header{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 40px 0;
    z-index: 10;
    color: #fff;
}
.logo img{
    max-height: 30px;
}
ul.menu{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.menu a{
    color: inherit;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}
ul.menu li{
    position: relative;
    padding: 5px;
}
ul.menu li ul.submenu{
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    color: var(--text-color);
    padding: 5px 10px;
}
ul.menu li:hover ul.submenu{
    display: block;
}
.list-1{
    list-style: none;
    padding-left: 0;
}
.list-1 li + li{
    margin-top: 10px;
}
.list-1 img{
    height: 20px;
    margin-right: 5px;
}
.color-1{
    color: var(--main-color);
}
.btn-theme{
    padding: 12px 18px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
}
.btn-theme:hover{
    background: var(--second-color);
    color: #fff;
}

section.solutions{
    background: var(--second-color);
    color: #fff;
}
h3.title span{
    font-weight: 700;
    display: block;
}
h3.title strong{
    font-weight: 600;
    display: block;
}
.abs1{
    position: absolute;
    left: 0;
    bottom: 8%;
    max-width: 20%;
    max-height: 100%;
    opacity: .04;
}
.box-1{
    border: 1px solid var(--third-color);
    padding: 15px;
    border-radius: 18px;
    font-size: 13px;
    height: 100%;
}
.box-1 p{
    padding: 0;
    margin: 0;
    color: #d7d7d7;
}
.box-1.dark{
    background: var(--third-color);
}
.box-1 span{
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}
.abs2{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    z-index: 2;
}
.abs2 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.abs2 a{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.abs2 a i{
    transform: rotate(-45deg);
}
.abs2 a:hover i{
    transform: rotate(0);
}
.abs2 a:hover{
    background: var(--third-color);
}

.product-item{
    display: block;
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.product-item img{
    width: 100%;
}
.product-item .content{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    z-index: 2;
}
.product-item .content span{
    font-size: 13px;
}
.product-item .overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 166, 191, 0.95) 0%,
        rgba(0, 166, 191, 0.30) 40%,
        rgba(0, 166, 191, 0) 85%,
        rgba(0, 166, 191, 0) 100%
    );
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.product-item:hover .overlay{
    background: var(--main-color);
    opacity: .4;
}
section.dark{
    background: var(--second-color);
    color: #fff;
}
h6.subtitle i{
    margin-right: 5px;
}
.box-2{
    display: flex;
    width: 100%;
    gap: 15px;
    align-items: center;
    padding: 20px;
    border-radius: 18px;
}
.box-2 span{
    font-size: 30px;
    font-weight: 500;
    color: var(--main-color);
}
.box-2 p{
    font-size: 14px;
    margin: 0;
}
.box-2.dark{
    background: var(--main-color);
}
.box-2.dark span,
.box-2.dark p{
    color: #fff;
}
section.primary{
    background: var(--main-color);
}

.btn-white{
    padding: 12px 18px;
    background: #fff;
    color: var(--main-color);
    font-weight: 500;
    font-size: 14px;
}
.btn-white:hover{
    background: var(--second-color);
    color: #fff;
}
footer{
    background: var(--third-color);
    padding: 70px 0 0;
    color: #d7d7d7;
    font-size: 13px;
}
footer .d-flex i{
    margin-top: 4px;
}
footer p{
    color: #d7d7d7;
    margin: 0;
}
footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
footer a{
    color: #fff;
}
footer h6{
    font-size: 13px;
    color: #fff;
}
footer ul li a{
    font-size: 13px;
    color: #d7d7d7;
}
footer .bottom{
    padding: 30px 0;
    margin-top: 70px;
    background: var(--fourth-color);
}
.bottom-menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.timeline{
    padding: 40px 0;
}
.timeline .timeline-nav {
    position: relative;
    margin-bottom: 30px;
    padding: 20px 0;
}
.timeline .line {
    position: absolute;
    top: 70%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--third-color);
    z-index: 1;
}
.timeline .years-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.timeline .year-item {
    text-align: center;
    cursor: pointer;
}
.timeline .year-item span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--second-color);
    margin-bottom: 10px;
}
.timeline .dot {
    width: 18px;
    height: 18px;
    background: var(--second-color);
    border-radius: 50%;
    margin: 0 auto;
}
.timeline .year-item.active span { color: var(--main-color); }
.timeline .year-item.active .dot { background: var(--main-color);; }
.timeline .timeline-content { margin-bottom: 40px;  }
.timeline .timeline-content h3 { font-size: 20px; margin-bottom: 15px; font-weight: 600}
.timeline .btn-theme.active{
    background: var(--second-color);
    color: #fff;
}
.timeline .btn-theme{
    margin-right: 15px;
}

section.breadcrumb{
    width: 100%;
    position: relative;
    color: #fff;
}
section.breadcrumb img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}
section.breadcrumb img.bottom{
    object-position: bottom;
}
section.breadcrumb .container{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding-top: 30px;
    z-index: 2;
}
section.breadcrumb h2{
    font-size: 48px;
}
section.breadcrumb:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.8) 45%,
        rgba(0, 0, 0, 0.4) 75%,
        rgba(0, 0, 0, 0) 100%
    );
    content: "";
}
section.map{
    padding: 0;
}
section.map iframe{
    width: 100%;
    display: block;
}

.contact-box{
    display: flex;
    width: 100%;
    gap: 15px;
    padding: 30px 0;
    align-items: flex-start;
}
.contact-box .icon{
    background: var(--main-color);
    padding: 15px;
    color: #fff;
    border-radius: 6px;
    line-height: 1;
    font-size: 20px;
}
.z-index-2{
    position: relative;
    z-index: 2;
}
.contact-box + .contact-box{
    border-top: 1px solid #ddd;
}
.contact-box h6{
    font-weight: 600;
    margin-bottom: 0;
}
.box-3{
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-1);
    border-radius: 18px;
    overflow: hidden;
}
.form-group{
    margin-bottom: 15px;
}
.abs3{
    position: absolute;
    left: 5%;
    bottom: 8%;
    max-width: 25%;
    max-height: 100%;
    opacity: .04;
}
.form-control{
    font-size: 14px;
}

section.for-tabs{
    padding: 70px 0 200px;
}
section.for-tabs:before{
    content: "";
    background: var(--second-color);
    opacity: .6;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
h2.title span{
    font-weight: 700;
    display: block;
}

section.for-tabs h2.title {
    font-weight: 400;
}
section.for-tabs p{
    font-size: 18px;
}
section.tabs{
    padding-top: 0;
    margin-top: -140px;
}
.box-4{
    background: #fff;
    width: 100%;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
}

section.tabs .tab-pane{
    padding: 40px;
    color: var(--second-color);
}
section.tabs .tab-pane p{
    color: var(--second-color);
}
section.tabs .nav-tabs{
    width: 100%;
    display: flex;
    border: none;
}
section.tabs .nav-tabs .nav-item{
    flex: 1;
}
section.tabs .nav-tabs .nav-item .nav-link{
    width: 100%;
    color: var(--text-color);
    font-weight: 500;
    padding: 25px 15px;
    border: none !important;
    border-radius: unset !important;
}
section.tabs .nav-tabs .nav-item .nav-link img{
    height: 30px;
    margin-right: 10px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    background: var(--main-color);
    color: #fff !important;
}
.nav-tabs .nav-item.show .nav-link img, .nav-tabs .nav-link.active img{
    filter: brightness(0) invert(1);
}

.box-content{
    display: flex;
    border: 1px solid #fff;
    border-radius: 18px;
    overflow: hidden;
    flex-wrap: wrap;
}
.box-content .item{
    width: 50%;
    padding: 30px;
    position: relative;
}
.box-content .item .bg{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.box-content .item:nth-child(2),
.box-content .item:nth-child(4) {
  border-left: 1px solid #fff;
}
.box-content .item:nth-child(3),
.box-content .item:nth-child(4) {
  border-top: 1px solid #fff;
}
.box-content .item h6{
    margin: 20px 0 15px;
}
.box-content .item p{
    margin: 0;
}
.f-16{
    font-size: 16px;
}
.color-text{
    color: var(--text-color);
}


.custom-slider-1 .item h3.title{
    font-size: 2.25rem;
    margin-bottom: 25px;
}
.custom-slider-1 .item p{
    font-size: 20px;
}

.custom-slider-1 .prevArrow, .custom-slider-1 .nextArrow{
    position: absolute;
    z-index: 2;
    top: 80%;
}
.custom-slider-1 .prevArrow{
    left: calc(50% + calc(var(--bs-gutter-x) * .5));
}
.custom-slider-1 .nextArrow{
    left: calc(50% + calc(var(--bs-gutter-x) * .5) + 80px);
}
.custom-slider-1 h3{
    margin-top: -50px;
}
.custom-slider-1 .prevArrow.slick-disabled, .custom-slider-1 .nextArrow.slick-disabled{
    opacity: .6;
}
.abs4{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    z-index: -1;
}

.timeline .years-container {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.timeline .years-container::-webkit-scrollbar {
  display: none;
}
.timeline .year-item {
    flex: 0 0 auto;
    min-width: 90px;
}


.home-slider .prevArrow, .home-slider .nextArrow{
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}
.home-slider .prevArrow{
    left: 15px;
}
.home-slider .nextArrow{
    right: 15px;
}
.home-slider .prevArrow.slick-disabled, .home-slider .nextArrow.slick-disabled{
    opacity: .6;
}