/************************************/
/*** 	 Global Variables	  ***/
/************************************/

:root {
    --primary-color: #121820;
    --secondary-color: #12182080;
    --text-color: #575757;
    --accent-color: #114269;
    --default-color: #f4c312;
    --bg-color: #eff6f9;
    --white-color: #ffffff;
    --divider-color: #1218201a;
    --dark-divider-color: #ffffff1a;
    --error-color: rgb(230, 87, 87);
    --default-font: "Plus Jakarta Sans", sans-serif;
    --accent-font: "Plus Jakarta Sans", sans-serif;
}

/************************************/
/*** 	   General css		  ***/
/************************************/

html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--default-font);
    width: calc(100% - 30px);
    margin: 0 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--white-color);
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
    /* font-size: 18px; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.1em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

section {
    padding: 60px 0;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25em;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 15px 52px 15px 30px;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease-in-out;
    z-index: 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.btn-default::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    width: 12px;
    height: 12px;
    background: url("../images/arrow-white.svg") no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0%;
    width: 102%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.5s ease-in-out;
    z-index: -1;
    transform: skewY(9.3deg) scaleY(0);
}

.btn-default:hover::after {
    transform: skewY(0deg) scaleY(2);
}

.btn-highlighted {
    background-color: var(--default-color);
}

.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before {
    filter: brightness(0) invert(0);
}

.btn-default.btn-highlighted::after {
    background-color: var(--white-color);
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
    content: "";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../images/blog/arrow-accent.png") no-repeat;
    background-position: right center;
    background-size: cover;
    width: 12px;
    height: 12px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    filter: brightness(0) invert(0);
    transform: translateY(-50%) rotate(45deg);
}

.readmore-btn:hover {
    color: var(--primary-color);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    background-color: var(--bg-color);
    /* max-width: 1760px; */
    border-radius: 20px;
    margin: 30px auto 0;
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-title.section-title-center {
    width: 100%;
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    color: var(--accent-color);
    font-family: var(--accent-font);
    background-color: var(--bg-color);
    padding: 10px 18px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.section-title h1 {
    font-size: 46px;
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 46px;
    margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
    font-family: var(--accent-font);
    font-weight: 400;
    font-style: italic;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.dark-section {
    background-color: var(--primary-color);
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1 {
    color: var(--white-color);
}

.dark-section .section-title h3 {
    background-image: url("../images/icon-sparkle-white.svg");
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   Header css		 ****/
/************************************/

header.main-header {
    position: relative;
    margin: 30px auto;
    z-index: 100;
}

header.main-header .container-fluid {
    padding: 0;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
        rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    background-color: var(--bg-color);
    border-top: none;
    /*border-radius: 0 0 20px 20px;*/
}

.navbar {
    padding: 25px 30px;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 195px;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    position: relative;
    margin: 0 5px;
}

.main-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1em;
    padding: 15px 10px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: "\f105";
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.header-social-links {
    text-align: right;
    margin-right: 20px;
    display: none;
}

.header-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-social-links ul li {
    display: inline-block;
    margin: 0 10px 0 0;
    transition: all 0.3s ease-in-out;
}

.header-social-links ul li:last-child {
    margin-right: 0;
}

.header-social-links ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--divider-color);
    color: var(--accent-color);
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
}

.header-social-links ul li a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.header-social-links ul li a i {
    font-size: 20px;
    color: inherit;
}

.header-btn {
    text-align: end;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--white-color);
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--white-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--primary-color);
}

/************************************/
/***        Hero css	      ***/
/************************************/

/*.hero {*/
/*  background: url("../");*/
/*  border-radius: 0;*/
/*}*/

.hero-box img {
    width: 100%;
    border-radius: 20px;
}

.hero .container-fluid {
    padding: 0;
}

/*.hero.hero-bg-image .hero-box {*/
/*  position: relative;*/
/*  display: block;*/
/*  background: url("../images/hero/hero-bg.webp") no-repeat;*/
/*  background-position: center center;*/
/*  background-size: cover;*/
/*  border-radius: 20px;*/
/*  padding: 220px 15px;*/
/*  overflow: hidden;*/
/*}*/

/*.hero.hero-bg-image .hero-box::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  background: var(--secondary-color);*/
/*  opacity: 80%;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  z-index: 1;*/
/*}*/

/*.hero.hero-bg-image.hero-video .hero-box .hero-bg-video {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  right: 0;*/
/*  left: 0;*/
/*  bottom: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/

/*.hero.hero-bg-image.hero-video .hero-box .hero-bg-video video {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/

/*.hero.hero-bg-image .hero-box .hero-content {*/
/*  position: relative;*/
/*  background: transparent;*/
/*  width: 100%;*/
/*  max-width: 950px;*/
/*  padding: 0px;*/
/*  margin: 0 auto;*/
/*  text-align: center;*/
/*  z-index: 2;*/
/*}*/

/*.hero-box {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 30px;*/
/* margin-bottom: 30px; */
/*}*/

/*.hero-content,*/
/*.hero-image-box {*/
/*  width: calc(50% - 15px);*/
/*  border-radius: 20px;*/
/*}*/

/*.hero-content {*/
/*  padding: 5.208vw;*/
/*  align-content: center;*/
/*}*/

/*.hero-content .section-title h1 {*/
/*  font-weight: 700;*/
/*}*/

/*.hero-body {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  flex-wrap: wrap;*/
/*  gap: 20px 40px;*/
/*  margin-top: 40px;*/
/*}*/

/*.hero-image-box {*/
/*  position: relative;*/
/*}*/

/*.hero-image {*/
/*  height: 100%;*/
/*}*/

/*.hero-image figure {*/
/*  display: block;*/
/*  height: 100%;*/
/*  border-radius: 20px;*/
/*}*/

/*.hero-image img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  aspect-ratio: 1 / 0.842;*/
/*  object-fit: cover;*/
/*  border-radius: 20px;*/
/*}*/

/*.hero-counter {*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  right: 0;*/
/*  width: 100%;*/
/*  max-width: 310px;*/
/*  background: var(--bg-color);*/
/*  border: 20px solid var(--bg-color);*/
/*  border-right: none;*/
/*  border-bottom: none;*/
/*  border-radius: 20px 0 0 0;*/
/*  z-index: 1;*/
/*}*/

/*.hero-counter::before,*/
/*.hero-counter::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  mask: url("../images/hero-image-corner-shape.svg");*/
/*  -webkit-mask: url("../images/hero-image-corner-shape.svg");*/
/*  background-color: var(--bg-color);*/
/*  mask-repeat: no-repeat;*/
/*  mask-size: cover;*/
/*}*/

/*.hero-counter::before {*/
/*  top: -40px;*/
/*  right: 0;*/
/*}*/

/*.hero-counter::after {*/
/*  bottom: 0;*/
/*  left: -40px;*/
/*}*/

/*.hero-counter-box {*/
/*  background: var(--white-color);*/
/*  border-radius: 20px;*/
/*  padding: 30px;*/
/*}*/

/*.hero-counter-content {*/
/*  margin-bottom: 20px;*/
/*}*/

/*.hero-counter-content h2 {*/
/*  font-family: var(--accent-font);*/
/*  font-size: 46px;*/
/*  margin-bottom: 50px;*/
/*}*/

/*.hero-counter-content p {*/
/*  margin-bottom: 0;*/
/*}*/

/************************************/
/*** 	 Page Header css	  ***/
/************************************/

.page-header {
    position: relative;
    background: var(--accent-color) url("../images/page-header-bg.jpg")
        no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 160px 0;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 80%;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.1em;
    color: var(--white-color);
    margin-bottom: 10px;
}

.page-header-box h1 span {
    font-family: var(--accent-font);
    font-weight: 400;
    font-style: italic;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: normal;
    color: var(--white-color);
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

/************************************/
/*** 	   About Us css 	  ***/
/************************************/

.about-image img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    border-radius: 20px;
}

.about-us-counter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.about-us-counter-item {
    position: relative;
    width: calc(25% - 37.5px);
    display: flex;
}

.about-us-counter-item::before {
    content: "";
    position: absolute;
    right: -25px;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.about-us-counter-item:nth-child(4n + 4):before,
.about-us-counter-item:last-child:before {
    display: none;
}

.about-us-counter-item .icon-box {
    margin-right: 20px;
}

.about-us-counter-item .icon-box img {
    max-width: 50px;
}

.about-us-counter-content h3 {
    font-size: 30px;
    margin-bottom: 5px;
}

.about-us-counter-content p {
    text-transform: capitalize;
    margin: 0;
}

/************************************/
/*** 	 Our Services css	  ***/
/************************************/

.our-services .section-title h3 {
    background-color: var(--white-color);
}

.our-services-item {
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.our-services-image img {
    width: 100%;
    aspect-ratio: 1/0.9;
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.our-services-content h3 {
    margin: 20px 0 10px 0;
}

.our-services-content h3 a {
    color: var(--accent-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.our-services-content p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/************************************/
/*** Our Mission and Vision css ***/
/************************************/
.mission-vision-box {
    height: 100%;
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.mission-vision-box h3 {
    margin-bottom: 20px;
}

.mission-vision-box p {
    margin: 0;
}

/************************************/
/*** 	   Why Choose Us css 	  ***/
/************************************/
.why-choose-item {
    position: relative;
    display: flex;
    margin-bottom: 60px;
}

.why-choose-item:last-child {
    margin-bottom: 0;
}

.why-choose-item:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(30px, 60px);
    border-left: 1px dashed var(--divider-color);
    width: 1px;
    height: 100%;
    z-index: -1;
}

.why-choose-item:last-child:after {
    display: none;
}

.why-choose-item-no {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}

.why-choose-item-no:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0) rotate(180deg);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.excellence-item:hover .why-choose-item-no:before {
    transform: scale(1) rotate(0deg);
}

.why-choose-item-no h3 {
    position: relative;
    font-size: 20px;
    color: var(--white-color);
    z-index: 1;
}

.why-choose-item-content {
    width: calc(100% - 75px);
}

.why-choose-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.why-choose-item-content p {
    margin: 0;
}

.why-choose-images img {
    width: 100%;
    aspect-ratio: 1/1.1;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/************************************/
/*** 	   Our Blog css 	  ***/
/************************************/

.our-blog {
    /* padding: 100px 0 70px; */
}

.our-blog .section-title h3 {
    background-color: var(--white-color);
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image a {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.695;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.post-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h2 a {
    display: inline-block;
    color: inherit;
}

/************************************/
/*** 	 Blog Single css	  ***/
/************************************/

.post-single-meta {
    margin-top: 10px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
    border-radius: 20px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 600;
    line-height: 1.1em;
    margin: 0 0 0.435em;
}

.post-entry h1 {
    font-size: 46px;
}

.post-entry h2 {
    font-size: 46px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 20px;
}

.post-entry p {
    font-weight: 500;
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

/************************************/
/***   Our Testimonials css   ***/
/************************************/

.our-testimonial {
}

.testimonial-item {
    position: relative;
}

.testimonial-item::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: -30px;
    bottom: 0;
    left: auto;
    background: var(--divider-color);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 18px;
    color: var(--default-color);
    margin-right: 2px;
}

.testimonial-rating i:last-child {
    margin-right: 0;
}

.testimonial-content {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.author-content h3 {
    color: var(--accent-color);
    font-size: 20px;
    text-transform: capitalize;
}

.author-content p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    height: 6px;
    width: 6px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.testimonial-slider
    .testimonial-pagination
    .swiper-pagination-bullet-active:before {
    border: 1px solid var(--accent-color);
    height: 14px;
    width: 14px;
}

.project-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.project-slider .project-pagination .swiper-pagination-bullet {
    position: relative;
    height: 6px;
    width: 6px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
}

.project-slider .project-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.project-slider .project-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.project-slider .project-pagination .swiper-pagination-bullet-active:before {
    border: 1px solid var(--accent-color);
    height: 14px;
    width: 14px;
}

.testimonial-counter-box {
    position: relative;
    background: url("../images/testimonial-counter-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 12px;
    padding: 30px;
    overflow: hidden;
}

.testimonial-counter-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
}

.testimonial-counter-item {
    position: relative;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.testimonial-counter-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.testimonial-counter-item h2 {
    font-size: 46px;
    line-height: 1em;
    color: var(--white-color);
    margin-bottom: 8px;
}

.testimonial-counter-item p {
    text-transform: capitalize;
    color: var(--white-color);
    margin: 0;
}

/************************************/
/*** 	Service Single css	  ***/
/************************************/

.page-single-image {
    margin-bottom: 40px;
}

.page-single-image figure {
    display: block;
    border-radius: 20px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.538;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry h1 {
    margin-bottom: 20px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.service-entry h2 span {
    font-family: var(--accent-font);
    font-weight: 400;
    font-style: italic;
}

.service-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-entry ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child {
    margin-bottom: 0;
}

.service-entry ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

/************************************/
/*** 	 Our Project Css	  ***/
/************************************/
.our-Project-nav {
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.our-Project-nav ul {
    list-style: none;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 40px;
    padding: 0;
    margin: 0;
}

.our-Project-nav ul li a {
    position: relative;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px;
    display: block;
    border-radius: 10px;
}

.our-Project-nav ul li a:hover,
.our-Project-nav ul li a.active-btn {
    color: var(--white-color);
    background-color: var(--accent-color);
}

.our-Project-nav ul li a:before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: -23px;
    transform: translateY(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: var(--divider-color);
}

.our-Project-nav ul li:last-child a:before {
    display: none;
}

.our-project .section-title h3 {
    background-color: var(--white-color);
}

.project-gallery {
    position: relative;
    margin-bottom: 30px;
}

.project-gallery a {
}

.project-gallery figure {
    display: block;
    border-radius: 20px;
}

.project-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
    border-radius: 20px;
}

.project-gallery-image {
    position: relative;
}

.project-gallery-content {
    padding: 20px;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background-color: var(--white-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.project-gallery-content h5 {
    color: var(--default-color);
}

.project-gallery-content h4 {
    margin: 10px 0;
}

.project-gallery-content p {
    margin-bottom: 0;
}

/************************************/
/***   Brand We Offer css   ***/
/************************************/
.brand-we-offer {
    background-color: var(--bg-color);
}

.brand-we-offer .section-title h3 {
    background-color: var(--white-color);
}

.brand-we-offer-items img {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.brand-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.brand-slider .brand-pagination .swiper-pagination-bullet {
    position: relative;
    height: 6px;
    width: 6px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
}

.brand-slider .brand-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.brand-slider .brand-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.brand-slider .brand-pagination .swiper-pagination-bullet-active:before {
    border: 1px solid var(--accent-color);
    height: 14px;
    width: 14px;
}

.main-brand-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.main-brand-slider .main-brand-pagination .swiper-pagination-bullet {
    position: relative;
    height: 6px;
    width: 6px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
}

.main-brand-slider .main-brand-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.main-brand-slider .main-brand-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.main-brand-slider .main-brand-pagination .swiper-pagination-bullet-active:before {
    border: 1px solid var(--accent-color);
    height: 14px;
    width: 14px;
}

/******************************************/
/****   	 07. Our Process css  	   ****/
/******************************************/

.step-item {
    text-align: center;
    padding: 20px 40px 0;
    position: relative;
}

.step-header {
    margin-bottom: 30px;
    position: relative;
}

.step-item.step-1 .step-header:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 212px;
    height: 46px;
    background: url(../images/process/icon-step1.svg) no-repeat center center;
    background-size: 100% auto;
    transform: translate(156px, -50%);
}

.step-item.step-2 .step-header:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 212px;
    height: 46px;
    background: url(../images/process/icon-step2.svg) no-repeat center center;
    background-size: 100% auto;
    transform: translate(156px, -50%);
}

.step-header .step-icon {
    width: 130px;
    height: 130px;
    position: relative;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-header .step-icon figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.step-header .step-icon figure img {
    position: relative;
    width: 55px;
    z-index: 1;
}

.step-header .step-icon figure:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 30px;
    transform: translate(-100%, 100%);
    transition: all 0.3s ease-out;
}

.step-item:hover .step-icon figure:before {
    transform: translate(0);
}

.step-header .step-no {
    display: block;
    height: 48px;
    width: 48px;
    background: var(--accent-color);
    border-radius: 30px;
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 40px;
    position: absolute;
    top: -20px;
    right: -20px;
    border: 4px solid var(--white-color);
}

.step-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content p {
    margin-bottom: 0;
}

.our-process-layout2 {
    background: var(--secondary-color);
    padding: 100px 0;
}

.process-item2 {
    background: var(--white-color);
    max-width: 310px;
    margin: 20px auto 0;
    aspect-ratio: 1/1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.process-item2 .process-step {
    width: 100px;
    height: 100px;
    position: relative;
    background: var(--accent-color);
    border: 4px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--white-color);
    font-family: var(--accent-font);
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
    overflow: hidden;
}

.process-item2 .process-step:before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease-out;
}

.process-item2 .process-step span {
    position: relative;
    z-index: 1;
}

.process-item2:hover .process-step:before {
    top: 0;
    left: 0;
}

.process-item2 .process-content {
    text-align: center;
    padding: 0 30px;
}

.process-item2 .process-content .icon-box {
    margin-bottom: 25px;
}

.process-item2 .process-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-item2 .process-content p {
    margin: 0;
}

.our-process-layout2 .process-item2:after {
    content: "";
    display: block;
    width: 84px;
    height: 84px;
    background: url(../images/icon-step-right.svg) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.our-process-layout2 .row .col-lg-4:last-child .process-item2:after {
    display: none;
}

/************************************/
/***   Thank You Page css  ***/
/************************************/
.thank-you-page {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-color);
}

.thank-you-content {
    background: var(--white-color);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
    color: #28a745;
    font-size: 36px;
    margin-bottom: 20px;
}
.thank-you-content p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.success-icon {
    margin-bottom: 30px;
}

.whatsapp-redirect p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/************************************/
/***        Footer css  	  ***/
/************************************/

.footer-main {
    position: relative;
    padding: 80px 0 0;
    margin-bottom: 40px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.footer-main::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("../images/section-bg-leaf-1.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    width: 194px;
    height: 224px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-1 3s infinite alternate;
    z-index: 0;
}

.footer-main::after {
    content: "";
    position: absolute;
    right: 0;
    top: 30px;
    background: url("../images/section-bg-leaf-8.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 148px;
    height: 160px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.about-footer {
    margin-right: 80px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 195px;
}

.about-footer-content {
    margin-bottom: 30px;
}

.about-footer-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-links h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links p {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-links p a {
    color: inherit;
    color: var(--white-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    margin-right: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-contact-item .icon-box img {
    width: 100%;
    max-width: 24px;
}

.footer-contact-content {
    width: calc(100% - 65px);
}

.footer-contact-content h3 {
    text-transform: initial;
    margin-bottom: 5px;
}

.footer-contact-info-item {
    margin-bottom: 20px;
}

.footer-contact-info-item:last-child {
    margin-bottom: 0;
}

.footer-contact-info-item h3 {
    margin-bottom: 5px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--white-color);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px 30px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 20px;
    padding: 40px 0;
}

.footer-copyright-text p {
    color: var(--white-color);
    text-align: center;
    margin-bottom: 0;
}

.footer-copyright-text p a {
    color: var(--white-color);
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-links span {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--white-color);
}

.footer-social-links ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child {
    margin: 0;
}

.footer-social-links ul li a {
    width: 40px;
    height: 40px;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-social-links ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.footer-social-links ul li a i {
    color: inherit;
    font-size: 20px;
}

/************************************/
/*** 	Contact Us Page css	  ***/
/************************************/

.page-contact-us {
    background-color: var(--white-color);
}

.contact-info-list {
    background-color: var(--bg-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    padding: 30px;
    margin-bottom: 30px;
}

/* .contact-info-item {
  position: relative;
  width: calc(50% - 25px);
} */

/* .contact-info-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  height: 100%;
  width: 1px;
  background-color: var(--divider-color);
} */

/* .contact-info-item:nth-child(2n + 2):after {
  display: none;
} */

.contact-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-header .icon-box {
    margin-right: 10px;
}

.contact-info-header .icon-box img {
    width: 100%;
    max-width: 24px;
}

.contact-info-title {
    width: calc(100% - 34px);
}

.contact-info-title h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.contact-info-body p {
    margin: 0;
}

.contact-info-body p a {
    color: inherit;
    transition: all 0.3s;
}

.contact-info-body p a:hover {
    color: var(--primary-color);
}

.location-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.location-info-list .contact-info-item {
    width: calc(50% - 15px);
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px;
}

.location-info-list .contact-info-item::after {
    display: none;
}

.contact-us-form {
    background-color: var(--bg-color);
    border-radius: 20px;
    /* margin-left: 15px; */
    padding: 40px;
}

.contact-us-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-color);
    background: var(--white-color);
    border: none;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: none;
    outline: none;
}

.contact-us-form .form-control::placeholder {
    color: var(--text-color);
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 700px;
    border-radius: 20px;
}

/************************************/
/***      31. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1760px) {
    header.main-header .header-sticky.active {
        border-top: none;
        border-right: none;
        border-left: none;
        border-radius: 0;
    }
}

@media only screen and (max-width: 1300px) {
    .header-social-links {
        display: none;
    }
}

@media only screen and (max-width: 1100px) {
    .main-menu ul li a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1024px) {
    .main-menu ul li {
        margin: 0;
    }

    .header-social-links {
        display: none;
    }

    .hero-content,
    .hero-image-box {
        width: 100%;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-image,
    .hero-image figure,
    .hero-image img {
        height: auto;
    }

    .hero-image img {
        aspect-ratio: 1 / 0.55;
    }
}

@media only screen and (max-width: 991px) {
    body {
        width: 100%;
        margin: 0;
    }

    .btn-default {
        padding: 12px 40px 12px 20px;
    }

    .btn-default::before {
        right: 20px;
        width: 10px;
        height: 10px;
    }

    header.main-header {
        margin: 0;
    }

    .navbar {
        padding: 15px;
        border-radius: 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .bg-section {
        margin: 30px auto 0;
        border-radius: 0px;
    }

    section {
        padding: 40px 0;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title.section-title-center {
        max-width: 100%;
    }

    .section-content-btn .section-btn {
        margin-top: 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title h3 {
        font-size: 16px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        margin: 30px auto;
    }
    
    .hero-box img {
        border-radius: 0;
    }

    /*.hero .container-fluid {*/
    /*  padding: 0 15px;*/
    /*}*/

    /*.hero.hero-bg-image .hero-box {*/
    /*  padding: 80px 15px;*/
    /*}*/

    /*.hero-body {*/
    /*  gap: 20px 30px;*/
    /*  margin-top: 30px;*/
    /*}*/

    /* Page Header */
    .page-header {
        padding: 80px 0;
    }

    .page-header-box h1 {
        font-size: 36px;
    }

    /* About Us */
    .about-us-counter-box {
        gap: 30px;
        margin-top: 40px;
        padding-top: 40px;
    }

    .about-us-counter-item {
        display: block;
        width: calc(50% - 22.5px);
        text-align: center;
    }

    .about-us-counter-item::before {
        right: -15px;
    }

    .about-us-counter-item:nth-child(2)::before {
        display: none;
    }

    .about-us-counter-item .icon-box {
        margin: 0 0 10px 0;
    }

    .about-us-counter-item .icon-box img {
        max-width: 40px;
    }

    .about-us-counter-content h3 {
        font-size: 26px;
    }

    .about-us-counter-content p {
        font-size: 14px;
    }

    .about-us-counter-item .icon-box {
        margin-right: 10px;
    }

    /* Work Process */

    .our-process {
        padding: 60px 0 30px;
    }

    .step-item {
        padding-left: 0;
        padding-right: 0;
    }

    .step-item.step-1 .step-header:after,
    .step-item.step-2 .step-header:after {
        display: none;
    }

    .step-header .step-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .step-header .step-icon figure,
    .step-header .step-icon figure:before {
        border-radius: 20px;
    }

    .step-header .step-icon img {
        max-width: 50%;
    }

    .step-header .step-no {
        width: 38px;
        height: 38px;
        font-size: 18px;
        line-height: 30px;
    }

    .our-process-layout2 {
        padding: 60px 0 30px;
    }

    .process-item2 {
        margin-bottom: 30px;
    }

    /* Why Choose Us */
    .why-choose-item {
        margin-bottom: 30px;
    }

    .why-choose-item:after {
        transform: translate(25px, 50px);
    }

    .why-choose-item-no {
        width: 50px;
        height: 50px;
    }

    .why-choose-item-content {
        width: calc(100% - 65px);
    }

    /* Contact Us */
    .location-info-list .contact-info-item {
        padding: 20px;
    }

    .contact-info-list {
        padding: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    /* Fotter */
    .about-footer {
        margin: 0 0 0 0;
    }

    .about-footer-content {
        margin-bottom: 20px;
    }

    .footer-newsletters-form .form-group .form-control {
        padding: 8px 10px;
    }

    .footer-contact-item {
        margin-bottom: 20px;
    }

    .footer-links h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-contact-content h3,
    .footer-contact-info-item h3 {
        margin-bottom: 5px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-copyright {
        margin-top: 30px;
        padding: 20px 0;
    }

    .footer-social-links ul li {
        margin-right: 8px;
    }
}

@media only screen and (max-width: 767px) {
    section {
        padding: 30px 0;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .navbar-brand img {
        width: 170px;
    }

    .hero-body {
        gap: 20px;
        margin-top: 30px;
    }

    .hero-image img {
        aspect-ratio: 1 / 0.99;
    }

    .hero-counter {
        max-width: 180px;
        border-width: 10px;
    }

    .hero-counter::before {
        top: -30px;
        right: 0;
    }

    .hero-counter::after {
        bottom: 0;
        left: -30px;
    }

    .hero-counter-box {
        padding: 15px;
    }

    .hero-counter-content {
        margin-bottom: 10px;
    }

    .hero-counter-content h2 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .hero-counter-content p {
        font-size: 12px;
    }

    /* Page Header */
    .page-header-box h1 {
        font-size: 26px;
    }

    /* Mission & Vision */
    .mission-vision-box {
        padding: 25px 15px;
    }

    /* Why Choose Us */
    .why-choose-item:after {
        transform: translate(20px, 40px);
    }

    .why-choose-item-no {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .why-choose-item-no h3 {
        font-size: 18px;
    }

    .why-choose-item-content {
        width: calc(100% - 50px);
    }

    /* Our Project */
    .our-Project-nav ul {
        display: block;
    }

    .our-Project-nav ul li {
        margin-bottom: 10px;
    }

    /* Contact Us */
    .contact-us-form {
        padding: 20px;
    }

    .location-info-list .contact-info-item {
        width: 100%;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    /* Footer */
    .footer-logo,
    .about-footer-content {
        margin-bottom: 15px;
    }

    .footer-links {
        /* margin-bottom: 30px; */
    }

    .footer-links h3 {
        font-size: 18px;
    }

    .footer-copyright {
        flex-direction: column;
        margin-top: 0;
        padding: 15px 0;
    }

    .footer-social-links span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 380px) {
    .footer-social-links {
        flex-direction: column;
    }
}

/* CSS Multiple Whatsapp Chat */
/**----------------------------------------
START: Whatsapp CSS
----------------------------------------*/
.whatsapp-name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
}

#whatsapp-chat {
    box-sizing: border-box !important;
    outline: none !important;
    position: fixed;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 90px;
    left: 30px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
}

.head-home p {
    color: #fff !important;
}

a.blantershow-chat {
    /*   background: #009688; */
    background: #fff;
    color: #404040;
    position: fixed;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    z-index: 98;
    bottom: 25px;
    left: 30px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    text-decoration: none;
}

a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    background: #4caf50;
    color: #fff;
    padding: 20px;
}

.header-chat h3 {
    margin: 0 0 10px;
}

.header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.info-avatar {
    position: relative;
}

.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
}

a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 0.5s;
}

a.informasi:hover {
    background: #f1f1f1;
}

.info-chat span {
    display: block;
}

#get-label,
span.chat-label {
    font-size: 12px;
    color: #888;
}

#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

#get-label,
#get-nama {
    color: #fff;
}

span.my-number {
    display: none;
}

textarea#chat-input {
    border: none;
    width: 100%;
    height: auto;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
    background: #ffff;
}

a#send-it {
    width: 40px;
    font-weight: 700;
    padding: 10px;
    background: #eee;
    display: flex;
    border-radius: 0;
    justify-content: center;
    align-items: center;
}

a#send-it svg {
    fill: #a6a6a6;
    height: 24px;
    width: 24px;
}

.first-msg {
    background: transparent;
    padding: 30px;
    text-align: center;
}

.first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
}

.start-chat .blanter-msg {
    display: flex;
    background: #fff;
}

#get-number {
    display: none;
}

a.close-chat {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 30px;
}

@keyframes ZpjSY {
    0% {
        background-color: #b6b5ba;
    }

    15% {
        background-color: #111111;
    }

    25% {
        background-color: #b6b5ba;
    }
}

@keyframes hPhMsj {
    15% {
        background-color: #b6b5ba;
    }

    25% {
        background-color: #111111;
    }

    35% {
        background-color: #b6b5ba;
    }
}

@keyframes iUMejp {
    25% {
        background-color: #b6b5ba;
    }

    35% {
        background-color: #111111;
    }

    45% {
        background-color: #b6b5ba;
    }
}

@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    a.blantershow-chat {
        left: 15px;
    }

    #whatsapp-chat {
        left: 15px;
    }
}

@media screen and (max-width: 480px) {
    
}

.hidee {
    display: none;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.showw {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-message-container {
    display: flex;
    z-index: 1;
}

.whatsapp-message {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: #e6ddd4;
    position: relative;
}

.whatsapp-chat-body::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}

.dAbFpq {
    display: flex;
    z-index: 1;
}

.eJJEeC {
    background-color: white;
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
    position: relative;
    display: flex;
}

.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: #9e9da2;
    animation-name: ZpjSY;
}

.dRvxoz {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: #b6b5ba;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
}

.kAZgZq {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.kAZgZq::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
}

.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}
