html {
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?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&display=swap');
@import url('https://fonts.googleapis.com/css2?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&display=swap');

@font-face {
    font-family: 'nt_epika_boldbold';
    src: url('../fonts/nt_epika_bold_personal_use-webfont.woff2') format('woff2'), url('../fonts/nt_epika_bold_personal_use-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* background Colors: */
    --color-ffffff: #ffffff;
    --color-000000: #000000;
    --color-0bb2aa: #0bb2aa;
    --color-8cdbd7: #8cdbd7;
    --color-00a3c0: #0090D1;
    --color-f3f4f4: #f3f4f4;
    --color-ecece4: #ecece4;
    --color-1d1f30: #1d1f30;
    --gradient-color: linear-gradient(90deg, #00a3c0 0%, rgba(38, 242, 236, 1) 100%);
    /* Font/text values */
    --font-family-mona: "Mona Sans", sans-serif;
    --font-family-kanit: "Kanit", sans-serif;
    --font-family-sora: "Sora", sans-serif;
    --font-family-epika: 'nt_epika_boldbold';
    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-size-30: 30px;
    --font-size-34: 34px;
    --font-size-40: 40px;
    --font-size-50: 50px;
    --font-size-65: 65px;
    --font-size-82: 82px;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
}


/* common css start*/

* {
    outline: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sora);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-16);
    color: var(--color-2c2c2c);
    margin: 0;
    padding: 0;
}

.clr {
    width: 100%;
    float: left;
}

.img {
    width: 100%;
    image-rendering: pixelated
}

a,
.btn,
button {
    color: var(--color-000000);
    outline: none;
    border: none;
    cursor: pointer;
    outline: 0;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
select:focus,
.custom-select:focus,
.form-control:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
    color: var(--color-673418);
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--color-0bb2aa);
    transition-timing-function: linear;
    color: var(--color-ffffff);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-400);
    text-transform: normal;
    margin-bottom: 15px;
    line-height: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

header,
footer,
section {
    width: 100%;
    float: left;
}

.navbar-expand-xl {
    justify-content: end;
}


/* text .reveal */

section .revealtext {
    position: relative;
    transform-origin: left;
    transform: scaleX(0);
    transition: 0.5s;
    transition-delay: 0.5s;
}

section .revealtext.active {
    transform: scaleX(1);
    transition-delay: 0s;
}

section .revealtext:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transform-origin: right;
    transition: 0.5s;
    transition-delay: 0s;
}

section .revealtext:nth-child(2):before {
    background: #fff;
}

section .revealtext.active:before {
    transform: scaleX(0);
    transition-delay: 0.5s;
}

.navbar-nav .phone a {
    color: var(--color-1d1f30);
    padding: 10px 30px;
    border-radius: 50px;
    border: 2px solid #0cb1aa;
    margin-left: 35px;
    background-color: var(--color-ffffff);
}

.navbar-nav .phone a:hover {
    background-color: var(--color-0bb2aa);
    color: var(--color-ffffff);
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: #0cb1aa;
}

.navbar-nav li:hover .dropdown-menu {
    margin-top: 0px;
    visibility: visible;
    border-top: 4px solid var(--color-57cdc9);
    border-radius: 0;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.navbar-nav .social-link {
    padding-left: 150px;
}

.navbar-nav .social-link a {
    padding: 0;
    border-radius: 100%;
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.navbar-nav .social-link a:hover {
    color: var(--color-ffffff);
    background-color: var(--color-00a3c0);
}

p {
     font-family: "Poppins", sans-serif;
    font-size: var(--font-size-16);
    line-height: var(--line-height-18);
    color: var(--color-2c2c2c);
    margin-bottom: 15px;
}

.section-space {
    padding: 100px 0;
}

#backtotop {
    display: inline-block;
    background-color: var(--color-0bb2aa);
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: ease all 0.5s;
}

#backtotop i {
    color: var(--color-63018a);
    font-size: var(--font-size-30);
    color: var(--color-ffffff);
    top: 3px;
    position: relative;
}

#backtotop:hover {
    cursor: pointer;
    background-color: #333;
    transform: scale(1.1);
}

#backtotop:active {
    background-color: #555;
}

#backtotop.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn {
    position: fixed;
    bottom: 210px;
    right: 30px;
    z-index: 999;
}
.instagram-btn{
    display: flex;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 150px;
    right: 30px;
    z-index: 1000;
    transition: ease all 0.5s;
    align-items: center;
    justify-content: center;
}
.phone-btn {
    display: flex;
    background-color: var(--color-0bb2aa);
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 1000;
    transition: ease all 0.5s;
    align-items: center;
    justify-content: center;
}

.phone-btn:hover {
cursor: pointer;
    background-color: #333;
}
.phone-btn i,.instagram-btn i{
    font-size: 20px;
    line-height: 20px;
    color: var(--color-ffffff);
    top: 3px;
    position: relative;
}

.whatsapp-btn img {
    width: 50px;
}

.swiper-pagination-bullet {
    width: auto;
    height: auto;
    background-color: #fff;
    padding: 2px;
    border-radius: 100%;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 50px;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: var(--color-63018a);
}

.swiper-button-prev:after {
    font-size: var(--font-size-16);
    background-color: aliceblue;
    border-radius: 50%;
    padding: 15px 20px;
    width: 50px;
    height: 48px;
    left: 35px;
    position: relative;
    color: var(--color-63018a);
    transition: ease all 0.5s;
}

.swiper-button-prev:hover:after {
    background-color: var(--color-63018a);
    color: var(--color-ffffff);
}

.swiper-button-next:hover:after {
    background-color: var(--color-63018a);
    transition: ease all 0.5s;
    color: var(--color-ffffff);
}

.swiper-button-next:after {
    font-size: var(--font-size-16);
    background-color: aliceblue;
    border-radius: 50%;
    padding: 15px 20px;
    width: 50px;
    height: 48px;
    position: relative;
    right: 35px;
    color: var(--color-63018a);
    transition: ease all 0.5s;
}

.navbar-brand {
    padding: 15px 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

a.navbar-brand img {
    width: 100%;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.navbar-expand-lg .navbar-nav {
    width: 100%;
}

.navbar-expand-lg {
    height: 100px;
}

.shrink {
    position: fixed;
    background-size: contain;
    background-repeat: repeat-x;
    display: inline-block;
    top: 0;
    z-index: 999;
    width: 100%;
    display: block;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    animation: smoothScroll 1.5s forwards;
    background-position: bottom;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.shrink .contact-box {
    display: none !important;
}

.shrink .navbar-brand img {
    width: 90%;
}

.shrink .navbar-expand-lg {
    height: 75px;
    padding-bottom: 0;
}

.shrink .navbar-brand {
    padding: 10px 0;
}

header {
    position: relative;
    margin: 0 auto;
    background: var(--color-ffffff);
    z-index: 99;
    transition: ease all 0.5s;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.main-header {
    height: 100%;
    width: 100%;
    justify-content: space-between;
    font-weight: var(--font-weight-medium);
    color: var(--color-ffffff);
}

.main-title {
    font-size: var(--font-size-65);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-kanit);
    color: var(--color-0bb2aa);
}

.section-title {
    font-size: var(--font-size-50);
    font-weight: var(--font-weight-medium);
    line-height: 50px;
    color: var(--color-0bb2aa);
    font-family: var(--font-family-kanit);
    letter-spacing: 1px;
    /* text-transform: uppercase; */
}

.title-40 {
    font-size: var(--font-size-40);
    font-weight: var(--font-weight-semibold);
    line-height: 40px;
    font-family: var(--font-family-kanit);
    margin-top: 30px;
    color: var(--color-1d1f30);
}

.sub-title {
    font-size: var(--font-size-30);
    font-family: var(--font-family-kanit);
    text-transform: capitalize;
    font-weight: var(--font-weight-bold);
    line-height: 35px;
}

.sub-heading {
    font-size: var(--font-size-22);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-sora);
    line-height: 30px;
}

.small-heading {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-sora);
    line-height: 30px;
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.small-heading::after {
    width: 80px;
    height: 5px;
    content: '';
    position: absolute;
    background-color: #00a3c0;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    margin: 10px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--color-1d1f30);
    text-transform: uppercase;
    font-weight: var(--font-weight-medium);
    transition: all ease-in-out .2s;
    padding: 20px 30px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #096f67;
}

.navbar-light .navbar-nav .line-bottom::after {
    transition: all ease-in-out .2s;
    background: none repeat scroll 0 0 #ffffff;
    content: "";
    display: block;
    height: 2px;
    width: 0;
}

.navbar-light .navbar-nav .nav-link.line-bottom:hover:after {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link.line-bottom .active:after {
    transition: all ease-in-out .2s;
    background: none repeat scroll 0 0 #ffffff;
    content: "";
    height: 2px;
    width: 100%;
}

.navbar-nav {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
}

.contact-page .view-more-btn {
    background-color: var(--color-0bb2aa);
    color: #fff;
    border: 1px solid var(--color-0bb2aa);
    border-radius: 0;
}
.contact-page .view-more-btn:hover {
    background-color: var(--color-ffffff);
    color:  var(--color-0bb2aa);
    border-radius: 0;
}
.contact-bg img {
    height: 400px;
    object-fit: cover;
}

.contact-box {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-bold);
    position: relative;
    /* overflow: hidden; */
    border-radius: 15px;
    display: flex;
    /* justify-content: flex-end; */
    /* float: right; */
    width: 100%;
    height: 100%;
}

.contact-box .social-link i {
    color: var(--color-cd93e0);
    padding: 10px;
    font-size: var(--font-size-24);
}

.contact-box .email {
    background-color: var(--color-f59326);
    padding: 10px 40px;
}

.contact-box .email a {
    color: var(--color-63018a) !important;
}

.contact-box .phone a {
    color: var(--color-ffffff) !important;
}

.contact-box .phone a:hover {
    color: var(--color-000000) !important;
}

.contact-box .phone {
    background-color: var(--color-57cdc9);
    padding: 10px 40px;
    overflow: hidden;
    position: relative;
}

.contact-box:after {
    background-color: var(--color-57cdc9);
    position: absolute;
    content: '';
    width: 50px;
    height: 100%;
    overflow: hidden;
    top: 0;
    right: 0;
    z-index: -1;
}

.contact-box ul {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: var(--color-f0f0f0);
    border-radius: 15px;
    overflow: hidden;
    justify-content: center;
}

.contact-box li {
    width: auto;
    padding: 0px 15px;
}

.contact-address {
    padding: 2rem;
}

.contant-content {
    padding: 2rem;
    background-color: var(--color-ffffff);
    width: 100%;
    word-wrap: break-word;
    -webkit-box-shadow: 0px 17px 77px -30px rgba(0, 0, 0, 0.48);
    -moz-box-shadow: 0px 17px 77px -30px rgba(0, 0, 0, 0.48);
    box-shadow: 0px 17px 77px -30px rgba(0, 0, 0, 0.48);
    text-align: center;
}

.contant-content a {
    font-size: var(--font-size-22);
}

.contant-content img {
    width: 100px;
    margin-bottom: 30px;
}

.contant-content a:hover {
    color: var(--color-00a3c0);
}

.map-address .row {
    border-radius: 1rem;
    overflow: hidden;
    /* padding: 2rem; */
    width: 99%;
}

.map-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    background-color: var(--color-0bb2aa);
    color: var(--color-ffffff);
}

.map-content .section-title {
    color: var(--color-ffffff);
}

.map-content img {
    width: 100px;
}

.dropdown-toggle::after {
    top: 2px;
    position: relative;
}

.dropdown-menu {
    padding: 0;
}

.dropdown-menu {
    min-width: 14rem;
    border: transparent;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: .25rem;
}

.hero-style {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.swiper-container {
    overflow: hidden;
}

.container-fluid.p-0 {
    overflow: hidden;
}

img.banner-img {
    width: 100%;
    height: 900px;
    object-fit: cover;
}
.mobile-banner{
    display: none;
}

.hero-style .content-box {
    position: absolute;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    height: 100vh;
    flex-direction: column;
    width: 100%;
    text-align: left;
    align-items: center;
    justify-content: center;
}

.hero-style .content-box .content {
    display: flex;
    height: 100%;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    color: var(--color-ffffff);
}

.hero-style .content-box .content h1.section-title {
    font-size: var(--font-size-82) !important;
    color: var(--color-ffffff);
}

.hero-style .content-box .content h2 {
    font-size: var(--font-size-34) !important;
    font-family: var(--font-family-sora);
    text-transform: uppercase;
    color: var(--color-ffffff);
}
.banner-text{
    position: absolute;
    top: 30%;
    right: 7%;
    width: 34%;
}
.banner-text1{
    position: absolute;
    top: 30%;
    left: 7%;
    width: 34%;
}
.banner-text3{
    position: absolute;
    top: 20%;
    left: 25%;
    width: 45%;
}
img.vanart-logo{
    width: 100%;
}
.banner-text h3 {
    font-size: 50px;
    line-height: 65px;
    font-family: "Poppins", sans-serif;
    font-weight: var(--font-weight-light);
}
.banner-text h3 img{
    width: 150px;
    display: block;
    margin-bottom: 10px;
}
.banner-text h3 span{
    font-weight: var(--font-weight-semibold);
}
.swiper-slide-active .slide-down{
    animation: bounceInDown 2.5s;
}
.swiper-slide-active .slide-right{
    animation: fadeInRight 2s;
}
.swiper-slide-active .slide-up{
    animation: bounceInUp 2.5s;
}
.swiper-slide-active .slide-left{
    animation: fadeInLeft 2.5s;
}

@media screen and (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .dropdown .dropdown-menu {
        display: none;
    }
    .dropdown:hover .dropdown-toggle::after {
        border-top: 0;
        border-bottom: 0.3em solid;
    }
}

@media screen and (max-width: 991px) {
    .dropdown-toggle.show::after {
        border-top: 0;
        border-bottom: 0.3em solid;
    }
}


.dropdown-item {
    font-weight: var(--font-weight-regular);
    padding: 10px 15px;
}

.hero-slider h2.main-title {
    position: absolute;
    display: flex;
    align-items: center;
    height: 100%;
    width: 40%;
    font-family: var(--font-family-baloobhai);
    font-size: var(--font-size-65);
    font-weight: var(--font-weight-extrabold);
}

.color-purple {
    color: var(--color-63018a);
}

.color-orange {
    color: var(--color-f59326);
}

.hero-style {
    position: relative;
    overflow: hidden;
}

.read-more a::after {
    border-top: 8px solid transparent;
    border-left: 12px solid #00b3aa;
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    /* right: 0; */
    transform: translateY(-50%);
    /* opacity: 0; */
    /* width: 50px; */
    height: 15px;
    content: '';
    margin-left: 13px;
    /* border-radius: 4px; */
}

.read-more a {
    position: relative;
    text-transform: uppercase;
}


/* about-founder-section  */

.feature {
    background-image: url(../images/feature-bg.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    width: 100%;
    height: 650px;
}

.feature .col-md-2 {
    width: 20%;
    padding: 30px;
}

.feature-box {
    text-align: left;
    padding: 3rem;
}

.feature-box h3 {
    color: var(--color-1d1f30);
    font-weight: 800;
    line-height: 35px;
}

.feature-box .icon {
    margin: 30px 0;
}

.feature-box .icon img {
    width: 100px;
}

.about-section {
    margin: 50px 0;
    background-color: var(--color-29e0db);
}

.about-founder-section {
    padding-top: 200px
}

.about-left img {
    position: relative;
    top: -60px;
    z-index: 9;
    width: 100%;
}

.about-founder-section .container-fluid {
    background-color: var(--color-f0f0f0);
}

.yearimg {
    position: absolute;
    left: 0;
    bottom: -50px;
    z-index: 9;
}
.yearimg img {
    width: 60%;
}


/* whysection */

.navbar-expand-xl {
    height: 100px;
}


/* aboutsection */

.about-section {
    padding-top: 100px;
}

.about-img {
    position: relative;
}

.about-img::after {
    width: 150px;
    height: 150px;
    background-color: var(--color-97927F);
    position: absolute;
    content: '';
    z-index: -1;
    bottom: -20px;
    right: -20px;
}

.about-right-img {
    width: 100%;
    margin-top: -175px;
    position: relative;
    display: flex;
    justify-content: end;
    z-index: -1;
    position: absolute;
    top: 114px;
}

.about-right-img img {
    display: flex;
    justify-content: flex-end;
    width: 30%;
    /* align-items: flex-end; */
}

.about-right-img {
    position: relative;
}

.about-right-img::after {
    width: 150px;
    height: 150px;
    background-color: var(--color-673418);
    position: absolute;
    content: '';
    z-index: -1;
    top: -20px;
    right: -20px;
}

.about-section .content {
    padding-left: 100px;
}


/* work section */

.work-box {
    margin-bottom: 80px;
}

.work-img {
    overflow: hidden;
    position: relative;
    transition: ease all 0.5s;
}

.work-img:hover {
    transform: scale(1.05);
    overflow: hidden;
}

.work-img img {
    object-fit: cover;
    width: 85%;
    overflow: hidden;
    margin-right: 15%;
}

.arrow-icon {
    position: relative;
}

.arrow-icon i {
    font-size: var(--font-size-64);
    font-weight: 200;
    position: absolute;
    right: 87px;
    transform: rotate(45deg);
    top: -12px;
    color: var(--color-97927F);
}
/* blogs */
.media{
    background: var(--color-293035);
}
.media-post{
    padding: 0 20px;
}
.media-post h3 {
    margin-bottom: -50px;
    font-family: var(--font-family-Montserrat);
    font-weight: var(--font-weight-SemiBold);
    z-index: 99;
    position: relative;
    padding-left: 50px;
    color: #fff;
}
.media img{
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.media img:hover{
     box-shadow: none;
}
.media .container-fluid {
    padding: 0 12%;
}
.media a.downloads-btn {
    float: right;
    margin-top: -55px;
}
a.downloads-btn:hover .media img{
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.media a.downloads-btn:hover {
    color: var(--color-000000)!important;
}
.media .downloads-btn::before{
    display: none;
}




.blogs{
    background: #efefef;
    overflow: hidden;
}
.blogs-top {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    align-items: center;
    margin-top: 20px;
}
.blog-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-text p {
    font-size: 14px;
    line-height: normal;
      display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
    opacity: 0.5;
}

.date {
    font-size: 14px;
    color: var(--color-0bb2aa);
}

.blog-text a {
    font-size: 14px;
}
.blog-text a:hover{
    color: var(--color-0bb2aa);
}
.blog-bottom {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-text {
    padding: 20px;
}
.blog-bottom img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
a.view-btn {
    border: 1px solid #000;
    color: var(--color-1d1f30);
    padding: 10px 30px;
    border-radius: 50px;
    border: 2px solid #0cb1aa;
    margin-top: 55px;
    display: inline-block;
    background-color: var(--color-ffffff);
}
a.view-btn:hover {
    background-color: #0cb1aa;
    color:#fff;

}
/* details-page */

.cs-blog {
    margin-bottom: 30px;
}
.cs-blog h2 {
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 29px;
    margin: 0 0 11px;
    position: relative;
    text-transform: uppercase;
}
.cs-blog::after {
    clear: both;
    content: "";
    display: block;
}
ul.blog-list {
    list-style: outside none none;
    margin: -30px 0 0;
    padding: 0;
    position: relative;
    width: 100%;
}
.blog-list.blog-slide {
    margin: 0;
}
.blog-list.blog-slider {
    margin: 0;
}
ul.blog-list li {
    float: left;
    list-style: outside none none;
    margin: 30px 0 0;
}
.blog-slide .slick-list {
    margin: 0 -15px;
}
ul.blog-list.blog-slide li {
    margin-bottom: 10px;
    margin-top: 0;
}
ul.blog-list li:first-child {
    border: 0 none;
}
ul.blog-list li figure {
    overflow: hidden;
    position: relative;
}
ul.blog-list li figure img {
    width: 100%;
}
ul.blog-list li .cs-text {
    border: 1px solid #f0f0f0;
    overflow: hidden;
    padding: 15px 20px;
}


.cs-blog-detail .cs-text .post-option {
    border-top: 1px solid #f0f0f0;
    float: left;
    padding-top: 10px;
    width: 100%;
}
.cs-blog-detail .cs-text .post-option span a {
    color: #777;
}
.widget ul.blog-list li .cs-text {
    height: auto;
    margin: 0;
    min-height: inherit;
    padding: 9px 0 13px;
}
ul.blog-list li .cs-text span {
    color: #8b919e;
    display: inline-block;
    font-size: 12px;
    line-height: 19px;
}
ul.blog-list li .cs-text p {
    margin-bottom: 12px;
}
ul.blog-list li .cs-text h5 {
    border-bottom: 1px solid #fff;
    font-size: 15px;
    margin: 0;
    min-height: 56px;
    padding: 0 0 5px;
}
ul.blog-list li .cs-text h5 a {
    color: #292c33;
}
ul.blog-list li .cs-text .readmore {
    float: right;
    font-size: 11px;
    line-height: 20px;
    padding-top: 6px;
    position: relative;
    text-transform: uppercase;
}
ul.blog-list .slick-list.draggable {
    overflow: hidden;
}
.cs-auther-name a {
    color: #999;
}
.blog-list .slick-arrow {
    background-color: #f9f9f9;
    float: left;
    height: 29px;
    margin: 5px 0 0 5px;
    text-align: center;
    width: 29px;
}
.blog-list .slick-arrow a {
    color: #999;
    font-size: 18px;
    line-height: 32px;
}
.cs-blog.classic {
    margin: 0 0 30px;
}
.cs-blog.classic ul {
    margin: 0;
}
.cs-blog.classic li {
    border-top: 2px solid #eceef0;
    float: left;
    list-style: outside none none;
    padding: 16px 0;
    width: 100%;
}
.cs-blog.classic p {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin: 0 -4px 0 0;
    vertical-align: middle;
    width: 100%;
}
.cs-blog.classic p i {
    color: #c4c6c8;
    margin: 0 10px 0 0;
    vertical-align: middle;
}
.cs-blog.classic span {
    display: inline-block;
    float: right;
    font-size: 12px;
    text-align: right;
    vertical-align: middle;
}
.cs-blog.classic span i {
    color: #e2e5e8;
    float: right;
    font-size: 24px;
    margin: 2px 0 0 10px;
}
.cs-pagination-blog {
    margin-bottom: 30px;
}
.cs-blog.blog-medium {
    border-bottom: 0 none;
    margin: 0;
    padding-bottom: 30px;
}
.cs-blog.blog-medium::after {
    clear: both;
    content: "";
    display: block;
}
.cs-blog.blog-medium .blog-text .cs-post-title {
    clear: both;
}
.cs-blog .cs-media figure {
    position: relative;
}
.cs-blog .cs-media figure figcaption {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
    width: 100%;
}
.cs-blog .cs-media:hover figure figcaption {
    opacity: 1;
    visibility: visible;
}
.cs-blog.blog-medium .post-title h3 {
    margin-bottom: 0;
}
.cs-blog .post-title {
    margin-bottom: 10px;
}
.cs-blog.blog-medium .cs-media figure figcaption .cs-readmore a {
    color: #fff;
    font-size: 24px;
    left: 50%;
    margin: -10px 0 0 -65px;
    position: absolute;
    top: 50%;
    transform: scale(0.7);
}
.cs-blog.blog-medium .cs-media:hover figure figcaption .cs-readmore a {
    transform: scale(1);
}
.cs-blog.blog-medium:last-child {
    border-bottom: medium none;
    padding-bottom: 40px;
}
.blog-medium .cs-media {
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
    width: 37%;
}
.blog-modern .cs-media {
    display: inline-block;
    margin-right: -4px;
    vertical-align: middle;
    width: 48.6%;
}
.blog-medium .cs-media figure img, .blog-modern .cs-media img {
    width: 100%;
}
.blog-medium .cs-media ~ .blog-text {
    display: inline-block;
    float: none;
    margin-right: 0;
    vertical-align: middle;
    width: 58%;
}
.blog-modern .blog-text {
    display: inline-block;
    margin-right: -4px;
    padding-left: 30px;
    vertical-align: middle;
    width: 51.4%;
}
.blog-modern .blog-text .cs-post-title {
    margin-bottom: 5px;
    padding-bottom: 1px;
    position: relative;
}
.blog-modern .blog-text .cs-post-title::after {
    bottom: 1px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 27px;
}
.blog-modern .blog-text .blog-separator {
    margin: 0 0 10px;
}
.blog-modern .blog-text .blog-separator::before {
    display: none;
}
.blog-medium .blog-text {
    width: 99.1%;
}
.blog-medium .blog-text p {
    display: inline;
    margin: 0 0 15px;
}
.blog-medium .blog-separator {
    margin: 0 0 10px;
}
.cs-blog .cs-categories, .cs-blog-detail .cs-categories {
    display: block;
    margin: 0 0 12px;
}
.cs-blog .cs-categories a, .cs-blog-detail .cs-categories a {
    border-bottom: 2px solid #ededed;
    color: #55a747;
    display: inline-block;
    font-size: 10px;
    margin-right: 5px;
    padding-bottom: 2px;
    text-transform: uppercase;
}
.cs-blog-detail .post-option {
    float: right;
}
.cs-blog .post-option span a, .cs-blog-detail .post-option span a {
    color: #999 !important;
    display: inline-block;
    font-size: 12px;
    margin-right: 18px;
    vertical-align: middle;
}
.cs-blog .post-option span i, .cs-blog-detail .post-option span i {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    vertical-align: middle;
}
.cs-blog-detail .post-option span.post-category i {
    margin: 0;
}
.cs-blog-detail .post-option .post-category a {
    margin-left: 10px;
    margin-right: 0;
}
.cs-blog-detail .post-option .post-date {
    margin-left: 18px;
}
.cs-blog-detail .cs-text .post-option span i {
    float: left;
    margin: 3px 8px 0 0;
}
.cs-blog.blog-grid figure img {
    width: 100%;
}
.cs-blog.blog-grid .cs-media ~ .blog-text {
    margin: -30px 0 0;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}
.cs-blog.blog-grid .cs-inner-bolg {
    background-color: #fff;
    display: inline-block;
    padding: 20px 25px;
    width: 100%;
}
.cs-blog.blog-grid .blog-text p {
    margin: 0 0 5px;
}
.cs-blog.blog-grid .post-option {
    line-height: normal;
    margin: 0 0 10px;
}
.cs-blog.blog-grid .post-option span {
    color: #8b919e;
    font-size: 10px;
    margin: 0 15px 0 0;
    position: relative;
    text-transform: uppercase;
}
.cs-blog.blog-grid .post-option span::before {
    background-color: #8b919e;
    border-radius: 100%;
    content: "";
    height: 3px;
    left: -10px;
    position: absolute;
    top: 5px;
    width: 3px;
}
.cs-blog.blog-grid .post-option span:last-child {
    margin: 0;
}
.cs-blog.blog-grid .post-option span:first-child::before {
    display: none;
}
.cs-blog.blog-grid .read-more {
    display: inline-block;
    font-size: 12px;
    position: relative;
}
.cs-blog.blog-grid .read-more::before {
    content: "";
    font-family: "icomoon";
    font-size: 14px;
    position: absolute;
    right: -15px;
    top: 0;
}
.blog-large .cs-media img {
    width: 100%;
}
.blog-large .cs-text {
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}
.blog-large .cs-media ~ .cs-text {
    background-color: #fff;
    margin: 0 auto;
    padding: 30px 0 0;
    width: 100%;
}
.cs-blog .cs-author, .cs-blog-detail .cs-author {
    float: left;
    margin: 0 0 10px;
}
.cs-blog .cs-author figure, .cs-blog-detail .cs-author figure {
    display: inline-block;
    height: 32px;
    margin: 0 10px 0 0;
    vertical-align: middle;
    width: 32px;
}
.cs-blog .cs-author figure img, .cs-blog-detail .cs-author figure img {
    border-radius: 100%;
}
.cs-blog .cs-author .cs-text, .cs-blog-detail .cs-author .cs-text {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}
.cs-blog .cs-author .cs-text a, .cs-blog-detail .cs-author .cs-text a {
    color: #555;
    font-size: 13px;
}
.blog-large .post-option, .cs-blog.blog-medium .post-option {
    float: right;
}
.cs-blog.blog-large .post-option span i, .cs-blog.blog-medium .post-option span i {
    color: #cfcfcf;
}
.post-option span i {
    margin-right: 5px;
    transition: all 0.3s ease-in-out 0s;
}
.blog-separator {
    border-bottom: 1px solid #f1f1f1;
    display: inline-block;
    margin: 20px 0 25px;
    position: relative;
    width: 100%;
}
.blog-large .cs-text p {
    margin: 0 0 25px;
}
.blog-large .read-more {
    border: 1px solid;
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
    padding: 4px 20px;
    text-transform: uppercase;
}
.blog-large .cs-post-title {
    margin: 0 0 15px;
}
.blog-large .cs-post-title h3 {
    margin: 0;
}

.cs-blog-detail .cs-post-title h1 {
    margin: 0 0 10px;
}
.cs-blog-detail .cs-post-title::after {
    clear: both;
    content: "";
    display: block;
}
.cs-blog-detail .cs-main-post img {
    width: 100%;
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.cs-blog-detail .cs-main-post {
    margin-bottom: 25px;
}
.cs-blog-detail .cs-admin-post .cs-media figure, .cs-blog-detail .cs-admin-post .cs-media figure img {
    border-radius: 100%;
}
.cs-blog-detail .cs-admin-post .cs-text {
    overflow: hidden;
}
.cs-blog-detail .cs-admin-post {
    float: left;
    width: 40%;
}
.cs-blog-detail .cs-admin-post .cs-media {
    float: left;
    height: 46px;
    margin-right: 14px;
    width: 46px;
}
.cs-blog-detail .cs-author-name {
    color: #ccc;
    display: inline-block;
    font-size: 14px;
    margin-right: 20px;
    padding-top: 6px;
    vertical-align: middle;
}
.cs-blog-detail .cs-author-name strong {
    color: #55a747;
    display: block;
    line-height: 26px;
}
.cs-blog-detail .cs-more-post {
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: #ccc;
    font-size: 11px;
    padding: 6px 8px;
}
.cs-blog-detail .cs-social-share {
    float: right;
}
.cs-blog-detail .cs-social-media {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.cs-blog-detail .cs-social-media li {
    display: inline-block;
    list-style: outside none none;
    margin: 0;
    vertical-align: top;
}
.cs-blog-detail .cs-social-media li a {
    background-color: #fc6d4c;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 13px;
    height: 28px;
    line-height: 30px;
    margin: 0 5px 5px 0;
    text-align: center;
    width: 28px;
}
.cs-blog-detail .cs-social-media li a.cs-more {
    line-height: 33px;
    padding: 0;
}
.cs-blog-detail .cs-social-media li a::before {
    display: none;
}

.cs-blog-detail .cs-social-media li a.cs-more .at4-icon {
    border-radius: 10px;
    margin: 5px 0 0 -2px;
}
.cs-blog-detail .cs-share {
    float: none;
    left: 0;
    margin: 0 15px 0 0;
    position: absolute;
    top: 0;
}
.cs-blog-detail .cs-share a {
    color: #333;
    font-size: 18px;
    font-weight: 700;
}
.cs-blog-detail .cs-share-detail::after {
    clear: both;
    content: "";
    display: block;
}
.cs-blog-detail .cs-share-detail {
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    vertical-align: middle;
    width: 49%;
}
.cs-blog-detail .cs-post-option-panel {
    float: left;
    padding-top: 20px;
    width: 100%;
}
.cs-blog-detail p {
    margin-bottom: 30px;
}
 
.cs-blog-detail .tags {
    display: inline-block;
    margin: 0 -4px 0 0;
    vertical-align: middle;
    width: 50%;
}
.cs-blog-detail .cs-tags {
    display: block;
    margin: 0 0 40px;
}
.cs-blog-detail .cs-tags .tags span {
    color: #333;
    display: inline-block;
    font-size: 18px;
    margin: 0 10px 5px 0;
}
.cs-blog-detail .cs-tags .tags ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.cs-tags ul li {
    display: inline-block;
    list-style: outside none none;
    margin: 0 0 6px;
}
.cs-tags ul li a {
    display: block;
    font-size: 12px;
    margin: 0 8px 0 0;
}
.cs-tags .tags ul li a {
    background-color: #f5f5f5;
    border-radius: 20px;
    color: #777;
    padding: 2px 18px 3px;
}
.cs-blog-detail .cs-post-option-panel h4 {
    font-size: 20px;
    color: #282828;
}
.cs-blog-detail strong{
    display: block;
    text-align: left;
    color: var(--color-0bb2aa);
}
.blog-detail {
    box-shadow: none;
}
.blog-detail .blog-list {
    float: left;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}
.blog-slider-next {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 10px;
}
.blog-slider-prev {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 10px;
}
.blog-detail::after, .author-detail::after, #comment ul li::after, .blog-detail .blog-list::after, .cs-packeges::after {
    clear: both;
    content: "";
    display: block;
}
.blog-post img{
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.cs-blog-detail h1{
    margin-bottom: 20px;
    text-transform: unset;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-293035);
}
.blog-title {
    margin-bottom: 25px;
}
.blog-title h3 {
    color: #282828;
    letter-spacing: -1px;
    line-height: 34px;
    margin: 0 0 10px;
}
.blog-detail .main-post {
    margin: 0 0 25px;
}

.author-detail {
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 10px;
    padding-bottom: 22px;
}
.cs-admin figure {
    float: left;
    margin-right: 15px;
}
.cs-admin .cs-text {
    display: inline-block;
    overflow: hidden;
    padding-top: 8px;
}
.cs-admin .cs-text span {
    color: #ccc;
    display: block;
    font-size: 13px;
    line-height: 16px;
}
.cs-admin .cs-text strong {
    color: #282828;
    font-size: 14px;
    line-height: 18px;
}
.blog-detail h2 {
    line-height: 29px;
    margin: 0 0 10px;
    position: relative;
}
.rich-editor-text p {
    clear: both;
    line-height: 24px;
    margin-bottom: 20px;
}
/* blogs */

/* footer */

footer {
    background-color: var(--color-f3f4f4);
    position: relative;
    z-index: 1;
    z-index: 0;
}

footer i {
    color: var(--color-1d1f30);
}


footer a {
    color: var(--color-1d1f30);
    width: auto;
}

footer a i {
    margin-right: 10px;
}

footer a:hover {
    color: var(--color-00a3c0);
}

footer p {
    color: var(--color-1d1f30);
}

footer p a:hover {
    color: var(--color-00a3c0);
}

footer h3 {
    font-size: var(--font-size-20);
    color: var(--color-1d1f30);
    text-transform: uppercase;
    font-weight: 600;
}

.footer-left {
    position: relative;
    z-index: 9;
}

.footer-link li {
    margin-bottom: 15px;
    color: var(--color-1d1f30);
}

.footer-left h3 {
    font-family: var(--font-family-baloobhai);
    margin: 20px 0;
    font-weight: var(--font-weight-extrabold);
    font-size: var(--font-size-40);
}

footer .social-link {
    margin-top: 80px;
    display: none;
}

footer .social-link ul {
    display: flex;
}

footer .social-link i {
    margin-right: 0;
    color: var(--gradient-color);
}

footer .social-link a {
    padding: 10px 12px;
    border: 2px solid var(--color-1d1f30);
    border-radius: 100%;
    margin-right: 15px;
}

footer .social-link a:hover {
    border: 2px solid var(--color-00a3c0);
}

.socialfooter {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.social-footer-box {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* flex-direction: revert-layer; */
    margin: 30px 0;
    justify-self: flex-start;
    flex-direction: row;
}

.social-footer-box::before {
    width: 89%;
    background-color: var(--color-57cdc9);
    height: 1px;
    position: absolute;
    content: '';
    right: 11%;
}

.socialfooter i {
    color: var(--color-57cdc9);
    font-size: 20px;
    margin-left: 15px;
}

.footer-link a {
    position: relative;
    color: var(--color-1d1f30);
}
img.iso {
    width: 50%;
}

.copyright {
    background-color: var(--color-29e0db);
    padding: 30px 0;
}

.copyright a {
    color: var(--color-0bb2aa);
}

.testimonial-section {
    color: var(--color-ffffff);
    background: var(--color-02006b);
    /* margin-bottom: 100px; */
    /* padding-bottom: 200px; */
    height: 500px;
    z-index: 9;
    position: relative;
}

.testimonial-section .read-more a {
    color: var(--color-29e0db);
}

.testimonial-section .read-more a:hover {
    color: var(--color-f0f1f3);
    letter-spacing: 1px;
}

.testimonial-section .section-title {
    color: var(--color-ffffff);
}

.testimonial-name h5 {
    font-size: var(--font-size-22);
    color: var(--color-1d1f30);
    margin-bottom: 0;
}

.testimonial-name h6 {
    font-size: var(--font-size-16);
    color: var(--color-1d1f30);
    text-transform: uppercase;
}

.testimonial-box {
    border-radius: 30px;
    background-color: var(--color-ffffff);
    padding: 30px;
    margin-bottom: 50px;
}

.testimonial-box p {
    color: var(--color-1d1f30);
    width: 90%;
}

.designation .title {
    color: var(--color-1d1f30);
}

.designation small {
    color: var(--color-1d1f30);
}

.why-section {
    background-image: url(../images/why-bg.jpg);
    background-color: var(--color-0bb2aa);
}
img.why-img {
    width: 100%;
}
.why-box1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 50px;
    right: -25%;
    position: relative;
}

.why-box {
    color: var(--color-ffffff);
}

.why-box h3 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 600;
}

.why-box .section-title {
    color: var(--color-ffffff) !important;
}

.why-box .icon {
    margin-bottom: 10px;
}

.border-gradient {
    margin: 10px 0;
}

.border-gradient img {
    width: 61%;
}

.why-box2 {
    padding: 50px;
    text-align: end;
    margin-bottom: 50px;
    left: -25%;
    position: relative;
}

.why-box3 {
    padding: 50px;
    text-align: end;
    left: -25%;
    position: relative;
}

.counter-section {
    width: 80%;
}

.counter {
    font-size: 50px;
    color: #cccccc;
}

.counter-digit .sub-heading {
    text-transform: uppercase;
}

.counter-digit .plus {
    display: flex;
    font-size: var(--font-size-40);
    align-items: center;
    background: var(--gradient-color);
    font-weight: var(--font-weight-extrabold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.count-digit {
    font-size: var(--font-size-82);
    background: var(--gradient-color);
    font-weight: var(--font-weight-extrabold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.count-digit::before {
    height: 100%;
    width: 50px;
    background-color: var(--color-ffffff);
    position: absolute;
    content: '';
    z-index: -1;
    left: -30px;
}

.product-category-box {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    width: 100%;
    padding: 6rem;
    text-align: center;
    position: relative;
}

.product-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.product-left {
    width: 70%;
}

.content .list {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 30%;
    margin-right: 50px;
}

.content .list label {
    cursor: pointer;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
    font-weight: 500;
    color: var(--color-1d1f30);
    padding-left: 25px;
    transition: all 0.5s ease;
    z-index: 10;
}

.product-section .nav .nav-item button {
    width: 60%;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px dashed #1d1f30;
    padding: 20px;
    border-radius: 0;
    font-size: var(--font-size-24);
    color: var(--color-1d1f30);
}

.product-section .nav .nav-item button:hover {
    color: var(--color-00a3c0)
}

.product-section .nav .nav-item button.active {
    background-color: transparent;
    color: var(--color-00a3c0)
}

.product-section .nav .nav-item button.active::after {
    content: "";
    height: 100%;
    position: absolute;
    right: -1px;
    top: 0;
    border-radius: 5px 0 0 5px;
    content: '';
    display: block;
    border-top: 19px solid transparent;
    border-left: 19px solid #00b3aa;
    border-bottom: 19px solid transparent;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* opacity: 0; */
    /* width: 50px; */
    height: 20px;
}

.arrow-top,
.arrow-right,
.arrow-bottom,
.arrow-left {
    display: block;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
    height: 64px;
    width: 34px;
    border-left-color: #aaa;
    left: 0;
    top: 2px;
}

.product-section .product-left {
    width: 40%;
}

.product-section .product-right {
    width: 60%;
}

.product-section .nav {
    flex-direction: column;
}

.product-section .nav li {
    height: 80px;
}

.product-section .tab-content>.tab-pane img {
    margin-bottom: 30px;
    width: 100%;
}

#parent-circle {
    position: absolute;
    width: 30vw;
    height: 29vw;
    border: 3px solid var(--color-0bb2aa);
    border-radius: 50%;
    transform: rotate(0deg);
    transition: transform 0.7s linear;
    animation: rotate 7s infinite linear;
    top: -10%;
    left: 0%;
    z-index: 0;
}

#parent-circle .circle {
    display: block;
    position: absolute;
    width: 10%;
    height: 10%;
    margin: -8%;
    border-radius: 50%;
    top: 80%;
    left: 50%;
}

#parent-circle .circle.blue {
    background-color: var(--color-0bb2aa);
    transform: translate(13vw);
}

#parent-circle .circle.lime {
    background-color: var(--color-0bb2aa);
    transform: rotate(180deg) translate(12vw) rotate(-144deg);
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

.inner-hero-style {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    object-fit: cover;
    height: 100%;
}

.inner-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-img img {
    width: 100%;
    height: 900px;
    object-fit: cover;
}

.inner-banner .breadcrumb {
    padding: 0;
    margin: 0;
    background-color: #0000;
    border-radius: 0;
    justify-content: center;
}

.inner-banner .breadcrumb ul {
    display: flex;
}

.inner-banner .breadcrumb ul li a {
    margin: 0.938rem;
    font-size: var(--font-size-12);
    position: relative;
}

.inner-banner .breadcrumb ul li a::after {
    content: '/';
    position: absolute;
    right: -17px;
    top: 2px;
}

.inner-banner .breadcrumb ul li:last-child a::after {
    display: none;
}
section.breadcrumb {
    height: 900px;
}
.inner-banner .content {
    position: absolute;
    width: 100%;
    align-items: flex-start;
    height: 600px;
    display: flex;
    flex-direction: column;
    left: 0;
    padding-left: 10rem;
    padding-bottom: 0;
    justify-content: center;
}

.inner-banner .content::before {
    z-index: 9;
}

.inner-banner .content h1 {
    font-size: 60px;
    margin: 1rem 0 !important;
    font-family: var(--font-family-kanit);
}

.banner p {
    width: 90%;
    margin-bottom: 50px;
}

.mainSlider img {
    width: 100%;
    height: auto;
    object-fit: cover   ;
}

.inner-text {
    position: absolute;
    top: 25%;
    width: 40%;
    right: 6%;
}

.view-more-btn {
    padding: 15px 40px;
    border-radius: 50px;
    background-color: var(--color-ffffff);
    margin-top: 15px;
    color: var(--color-1d1f30);
    display: inline-block;
    font-family: var(--font-family-kanit);
    font-size: var(--font-size-20);
    text-transform: uppercase;
    border: 1px solid var(--color-ffffff);
}

.view-more-btn:hover {
    background-color: var(--color-0bb2aa);
    color: var(--color-ffffff);
}

form {
    margin: 10% auto 0 auto;
    padding: 1.875rem;
    width: 400px;
    height: auto;
    overflow: hidden;
    background: white;
    border-radius: 10px;
}

form label {
    font-size: 0.875rem;
    color: darkgray;
    cursor: pointer;
}

form label,
form input {
    float: left;
    clear: both;
}

form input {
    margin: 0.938rem 0;
    padding: 0.938rem 0px;
    width: 100%;
    outline: none;
    border-bottom: 1px solid #bbb;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -ms-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    border: transparent;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.875rem;
    padding-top: 0;
}

form input[type="text"]:focus,
form input[type="password"]:focus {
    border-color: cornflowerblue;
}

input[type="submit"] {
    padding: 0.938rem 3.125rem;
    width: auto;
    background: #1abc9c;
    border: none;
    color: white;
    cursor: pointer;
    display: inline-block;
    float: right;
    clear: right;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -ms-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

input[type="submit"]:hover {
    opacity: 0.8;
}

input[type="submit"]:active {
    opacity: 0.4;
}

.forgot,
.register {
    margin: 10px;
    float: left;
    clear: left;
    display: inline-block;
    color: cornflowerblue;
    text-decoration: none;
}

.forgot:hover,
.register:hover {
    color: darkgray;
}

.contact-right {
    height: 100%;
}

.contact-right img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.contact-left {
    padding-left: 4rem;
}




.product-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 6rem;
}

.banner-box {
    height: 900px;
    padding-top: 11rem;
    text-align: center;
    background-color: var(--color-0bb2aa);
}

.product-box1 {
    position: relative;
    max-width: calc(100% - 40px);
    width: 860px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 100px 0;
}

.product-section {
    position: relative;
    width: 100%;
    display: block;
    background-color: var(--color-ebece5);
}

.individual-category-box {
    height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 7rem;
    justify-content: center;
}
.tab-pane p {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    margin-top: -15px;
}

img.products-logo {
    width: 25%;
    margin-bottom: 30px;
    object-fit: contain;
}

.individual-category-box .nav {
    display: flex;
    /* flex-wrap: wrap; */
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.individual-category-box .nav::before {
    width: fit-content;
    position: absolute;
    content: "Available Colors";
    rotate: 90deg;
    right: -70px;
    font-size: 13px;
    color: #545454;
    font-weight: var(--font-weight-semibold);
}

.individual-category-box .nav li {
    width: 50px;
    height: 50px;
}

.individual-category-box .nav .nav-item button {
    margin-bottom: 5px;
    margin: 5px;
}

.individual-category-box .nav .nav-item button.active {
    /* background-color: transparent; */
    /* color: var(--bs-danger) !important; */
    border-radius: 100%;
}

.individual-category-box .nav .nav-item button.active::after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 5px 5px 0 0;
}

.individual-content-box {
    display: flex;
    /* flex-direction: row-reverse; */
    width: 100%;
    justify-content: space-between;
}

.individual-content-box .nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem;
    padding: 0;
}

.individual-content-box .nav-pills .nav-link img {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    border: 2px solid #fff;
    border-radius: 100%;
    box-shadow: black;
}

.individual-category-box.light-blue {
    background-color: #f1f1f1;
}

.individual-category-box.blue {
    background-color: #f1f1f1;
}

.sky-section {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-color: #00c7a5;
}

.link-box {
    padding: 15px;
    text-align: center;
    position: fixed;
    position: -webkit-sticky;
    top: 100px;
    font-size: var(--font-size-14);
    background-color: var(--color-00a3c0);
    color: var(--color-ffffff);
    z-index: 9;
}

.link-box a {
    margin-left: 30px;
    text-transform: capitalize;
    color: var(--color-ffffff);
}

.link-box a:hover {
    color: var(--color-1d1f30);
}

div.sticky {
    position: sticky;
    top: 0;
    background-color: yellow;
    padding: 50px;
    font-size: 20px;
}


/* about page */

.about-page {
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 92%;
}

.about-reception {
    position: relative;
}

.about-reception img {
    position: absolute;
    right: -1%;
    bottom: -460px;
}

.about-left-bg {
    position: absolute;
    top: 10%;
}

.about-left-bg img {
    border-radius: 0px 20px 20px 0px;
}

img.about-pg {
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
}

img.on-pg {
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
}

.about-left {
    padding-left: 3.125rem;
}

.team-page {
    position: relative;
}

.team-page .left-box {
    padding: 20px;
    background-color: var(--color-29e0db);
    width: 38%;
    position: absolute;
    left: -27%;
    top: 6%;
    padding: 2rem;
    border-radius: 1rem;
    z-index: 1;
}

.team-page .left-box h4 {
    margin-bottom: 0;
}

.team-page .left-box h4 {
    color: var(--color-ffffff);
}

.team-page .left-box h3 {
    color: var(--color-ffffff);
}

.team-page .right-box {
    padding: 3rem;
    background-color: var(--color-ffffff);
    width: 100%;
    text-align: justify;
    z-index: 1;
}

.director-box {
    position: relative;
}

.director-box img {
    z-index: 0;
    position: relative;
}

.team-cards .card {
    position: relative;
    text-align: left;
    border: transparent;
    margin-bottom: 1.875rem;
    background-color: transparent;
    padding: 0.938rem;
}

.team-cards .card .social-icon {
    background: #111;
    padding: 1rem;
    display: inline-block;
    position: absolute;
    left: 0.938rem;
}

.team-cards .card .social-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.team-cards .card .social-icon:hover i {
    color: var(--color-c22025);
}

.team-cards .card img {
    filter: grayscale(0%);
    transition: 0.5s ease;
    object-fit: cover;
    width: 100%;
    overflow: hidden;
}

.team-cards .card img:hover {
    filter: grayscale(100%);
    transform: scale(1.05);
}

.team-cards .card .card-content-wrapper {
    /* margin-right: auto; */
    max-width: 85%;
    margin-left: 15%;
    background-color: var(--color-ffffff);
    transition: ease all 0.5s;
}

.team-cards .card .card-content-wrapper .card-content {
    display: block;
    transition: 0.5s ease;
    padding: 2rem;
}

.team-cards .card .card-content-wrapper .card-content i {
    color: var(--color-c22025);
}

.team-cards .card:hover .card-content-wrapper .card-content i {
    color: var(--color-ffffff);
}

.team-cards .card:hover .card-content-wrapper {
    color: var(--color-ffffff);
    background-color: var(--color-0bb2aa) !important;
}

.team-cards .card:hover .card-content-wrapper .card-content p {
    color: var(--color-ffffff);
}

.team-cards .card .card-content-wrapper .card-content>div {
    text-align: right;
}

.team-cards .card .card-content-wrapper .card-content h3,
.team-cards .card .card-content-wrapper .card-content p {
    text-transform: capitalize;
    color: var(--color-282828);
    font-size: var(--font-size-22);
    margin-bottom: 10px;
    text-align: left;
}

.team-cards .card .card-content-wrapper .card-content h3 {
    font-weight: 800;
}

.team-cards .card:hover .card-content-wrapper .card-content {
    background: var(--color-02006b);
    color: var(--color-ffffff);
}

.team-cards .card:hover .card-img-wrapper~.card-content-wrapper .card-content {
    background: var(--color-c22025);
}

.team-cards .card:hover .card-img-wrapper:hover~.card-content-wrapper .card-content h3,
.team-cards .card:hover .card-img-wrapper:hover~.card-content-wrapper .card-content p,
.team-cards .card:hover .card-img-wrapper:hover~.card-content-wrapper .card-content svg {
    color: var(--color-ffffff);
}

.team-cards .card:hover .card-content-wrapper .card-content {
    background: var(--color-c22025);
}

.team-cards .card:hover .card-content-wrapper .card-content h3,
.team-cards.card:hover .card-content-wrapper .card-content p,
.team-cards .card:hover .card-content-wrapper .card-content svg {
    color: var(--color-ffffff);
}

.strength-box {
    padding: 2rem;
}

.director-box .left-box h3.section-title {
    color: var(--color-0bb2aa) !important;
}

.director-box .left-box h4 {
    color: var(--color-02006b) !important;
}

.percent:after {
    content: "%";
}

.vision-section {
    /* background-color: var(--color-f0f1f3); */
}
.vision-section h3,.mission-section h3{
    font-size: var(--font-size-22);
}

.mission-section {
    background-color: var(--color-);
}

.mission-content {
    padding: 2rem;
    display: flex;
    /* align-items: center; */
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.download-section {
    background-color: var(--color-0bb2aa);
    color: var(--color-ffffff);
}

.download-section .section-title {
    color: var(--color-ffffff);
}

.products{
    padding: 100px 0;
    background: #f1f1f1;
    margin-top: 0;
}
.products h2{
    padding-bottom: 30px;
}
.products .row{
    justify-content: space-between;
}
.item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 77%); /* semi-transparent black overlay */
  color: white;
  padding: 5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.item:hover .item-desc {
  opacity: 1;
}

.item-desc p {
  margin-bottom: 10px;
}

.view-more {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--color-0bb2aa);
  border: 1px solid var(--color-0bb2aa);
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.view-more:hover{
    background: var(--color-ffffff);
    color: var(--color-0bb2aa);
}
.universal-rage-main {
    width: 49%;
    border-radius: 0 36px 36px 0;
    padding-right: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}
.gold-series-main{
    width: 49%;
    border-radius: 36px 0 0 36px;
    padding-left: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.universal-rage-main img{
    border-radius: 0 36px 36px 0;

}
.gold-series-main img{
    border-radius: 36px 0 0 36px;
}

.grid {
  max-width: 100%;
  margin: 40px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.grid > li {
  width: calc(100% / 4 - 40px);
  margin: 0px 15px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 15px;
  text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.grid > li h3{
    text-align: center;
    font-size: 18px;
    padding-top: 10px;
    margin-bottom: 0;
    color: var(--color-1d1f30);
    border-top: 1px solid #00000021;
}
.filters {
  margin-top: 40px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.grid li img {
  max-width: 100%;
  text-align: center;
  border-radius: 10px;
}
.filters button {
  padding: 10px;
  margin: 10px;
  background-color: var(--color-ffffff);
  border: 1px solid var(--color-0bb2aa);
  border-radius: 8px;
  transition: 150ms;
  color: #282828;
  font-size: 16px;
  line-height: 19px;
  font-weight: var(--font-weight-medium);
  position: relative;
  outline: none;
  cursor: pointer;
}
.filters button.is-checked {
  background-color: var(--color-0bb2aa);
  color: var(--color-ffffff);
}
.element-item > div {
  padding: 20px 15px;
  color: #dddddd;
}
.element-item p {
  font-size: 18px;
  line-height: 24px;
  font-family: "Lato", sans-serif;
}
ul.uses {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

ul.uses li {
    width: 100px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 767px) {
  .filters button {
    padding: 5px 10px;
    margin: 5px;
  }
  .grid > li {
    width: calc(100% - 30px);
  }
  .element-item p {
    font-size: 16px;
    line-height: 22px;
  }
}
.pure-products .card-inner{
  padding: 20px 15px;
  background-color: #ed1c24;
  color: #dddddd;
  text-align: center;
  border-radius: 16px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 30px;
}
.pure-products img{
    height: 200px;
    object-fit: contain;
}
.pure-products h3{
    text-align: center;
    font-size: 18px;
    padding-top: 10px;
    margin-bottom: 0;
    color: var(--color-ffffff);
    border-top: 1px solid #fff5;
    display: none;
}