@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;800;900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  position: relative;
}
.relative {
  position: relative;
}
.w-100 {
  width: 100%;
}
::selection {
  color: var(--white);
  background: var(--brandColor);
}

:root {
  --brandColor: #396cf0;
  --main-normal: #15b9a8;
  --main-dark: #008777;
  --light: #373737;
  --white: white;
  --black: #232a61;
  --fontBold: 600;
  --big-title-font-size: 56px;
  --title-font-size: 40px;
  --paragraph-font-size: 20px;
  --button-font-size: 20px;
  --bg: #f3f7fe;
}

section {
  background-color: white;
}

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0px auto;
  position: relative;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.gap-20 {
  grid-gap: 20px;
}
.brandColor {
  color: var(--brandColor);
}
.padding {
  padding: 80px 0px;
}
.w-100 {
  width: 100%;
}
.text-center {
  text-align: center;
}
.margin-auto {
  margin: 15px auto !important;
}
.bold {
  font-weight: bold;
}
.common-button-wrap {
  text-align: center;
}
button.common-button {
  outline: none;
  padding: 15px 30px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: var(--brandColor);
  color: white;
  border: 2px solid transparent;
  width: max-content;
  font-size: var(--button-font-size);
  box-shadow: 0px 0px 10px lightgray;
  border-radius: 2px;
}
.common-button-wrap button.common-button:hover {
  background: white;
  border: 2px solid var(--brandColor);
  color: var(--brandColor);
  font-weight: 500;
}

main {
  
}


/* Hero Section
================ */
.hero-section {
  width: 100%;
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  position: relative;
  z-index: -1;
}
.hero-wrapper {
  grid-gap: 10px;
  max-width: 1250px;
  margin: 0px auto;
  position: relative;
  display: flex;
  align-items: center;
  height: 520px;
}
.hero-image {
  width: 113%;
  margin-top: 67px;
}

.hero-image img {
  width: 100%;
}
.hero-content {
  width: 100%;
  text-align: center;
  width: 70%;
  position: relative;
}
.hero-content .arrow-icon {
  width: 172px;
  position: absolute;
  left: -100px;
  top: -20px;
}
.hero-content-buttons {
  grid-gap: 10px;
  position: relative;
  justify-content: center !important;
  margin-top: 20px;
}
.about-button {
  outline: none;
  padding: 13px 30px;
  border-radius: 30px;
  color: var(--main-dark);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: white;
  border: 1px solid #1ea597;
  font-size: 15px;
  box-shadow: 0px 3px 7px -4px #1a978a;
  transition: all 0.3s ease-in-out;
}
.contact-button {
  border: 2px solid white;
  color: white;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.contact-button:hover, .about-button:hover{
  transform: translateY(-4px);
}
.about-button:hover {
  background: white;
  border: 1px solid var(--brandColor);
  color: var(--brandColor);
  font-weight: 500;
}
.contact-button {
  padding: 10px;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(90deg, #70d8cd -20%, #009382 115%);
  margin-left: 10px;
  font-size: 16px;
  font-family: poppins;
  cursor: pointer;
  box-shadow: 0px 2px 2px 0px #008777;
  font-weight: 600;
}

.hero-content p {
  text-transform: capitalize;
  color: #026f63;
  font-weight: 500;
}
.hero-content h1 {
  font-weight: 900;
  font-size: 56px;
  line-height: 63px;
  text-transform: uppercase;
  /* background: -webkit-linear-gradient(#ffffff, #ffffff); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  margin-bottom: 10px;
  color: #004b43;
}
.hero-content span {
  font-size: 65px;
  text-shadow: 3px 5px 4px #00000021;
}

/* popup modal */
.tvc-play-button {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: animate 3s linear infinite;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
  border: 1px solid red;
  background: red;
}
.tvc-play-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.tvc-modal {
  position: fixed;
  /* top: 0px; */
  left: 0px;
  right: 0px;
  bottom: -100%;
  width: 100%;
  background: #000000b2;
  height: 100vh;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.tvc-modal.active {
  visibility: visible;
  opacity: 1;
  bottom: 0px;
}
.featured-modal {
  width: 100%;
  height: 550px;
  border-radius: 4px;
  padding: 10px;
  max-width: 60%;
  margin: 0px auto;
  position: relative;
}
.featured-modal iframe {
  width: 100%;
  height: 100%;
}
.tvc-cancel {
  position: absolute;
  right: -10px;
  top: -9px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: -1px 8px 10px 0px black;
}

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 red, 0 0 0 0 red;
    opacity: 1;
    transform: scale(0.7);
  }
  40% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 0 red;
  }
  80% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* top header section */
.top-header-section {
  background: var(--main-dark);
}
.top-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 10px;
  height: 35px;
}
.top-header-item {

}
.top-header-item ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 10px;
}
.top-header-item li{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
  color: #ffffffde;
  font-size: 14px;
}
.top-header-item a{
  color: #ffffffde;
  text-decoration: none;
}
.top-header-item img{
  width: 20px;
}
.top-header-social {
  margin-top: unset !important;
}
.top-header-social img {
  filter: invert(1);
}

/* Header */
header {
  background-color: #009b8b;
  height: 75px;
  width: 100%;
  /* padding: 5px 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 3px 1px 0px rgb(0 135 119);
  z-index: 100;
}

.logo-wrapper {
  width: 330px;
  height: auto;
}
.logo-wrapper img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.logo-wrapper img:hover {
  transform: translateY(-4px);
}
.menu-wrapper ul {
  display: flex;
  align-items: center;
}
.menu-wrapper li {
  list-style: none;
  z-index: 1;
}
.menu-wrapper img {
  /* filter: invert(1); */
}
.menu-wrapper a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
.menu-wrapper a:hover {
  color: orangered;
}

/* Sidebar Section
================= */
.sidebar-wrapper {
  width: 300px;
  background: white;
  position: fixed;
  right: -100%;
  height: 100%;
  top: 0px;
  z-index: 999;
  box-shadow: -2px 0px 7px 0px #00000059;
  transition: all 0.3s ease-in-out;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
}
.sidebar-wrapper.active {
  visibility: visible;
  opacity: 1;
  left: 0px;
}

.sidebar-header {
  display: flex;
  height: 60px;
  justify-content: space-between;
  width: 100%;
  padding: 14px;
  align-items: center;
  border-bottom: 1px solid lightgray;
  box-shadow: 5px 1px 10px 0px lightgrey;
  background: transparent;
  flex-direction: row-reverse;
}
.sidebar-close-icon {
  width: 35px;
  background: var(--black);
  border-radius: 50%;
  height: 35px;
  padding: 12px;
  display: flex;
  box-shadow: 0px 0px 10px 0px #00000047;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.sidebar-close-icon img {
  width: 100%;
}
.sidebar-logo {
  width: 125px;
}
.sidebar-logo img {
  width: 100%;
}

/* sidebar body */
.sidebar-body-wrapper {
  padding: 14px;
}
.sidebar-body-wrapper h2 {
  font-size: 18px;
  /*! font-family: "poppinsSemiBold"; */
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 9px;
  font-weight: 500;
}
.sidebar-bio h4 {
  margin-top: 10px;
  font-weight: 500;
}
.sidebar-underline {
  margin: unset !important;
}
.sidebar-bio p {
  padding: 0px;
  margin: 0px;
  line-height: 22px;
  font-size: 15px;
}
.sidebar-bio ul {
  list-style: none;
  margin: 15px 0px; 
  padding: 0px;
}
.sidebar-bio li {

}
.sidebar-bio li a{
  text-decoration: none;
  color: var(--black);
}
.appointment-btn {
  background: var(--main-dark);
  color: white !important;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0px 2px 1px 0px #007668;
}
.appointment-li {
  margin: 5px 0px;
}

/* Social */
#social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
#social li {
  list-style: none;
  transition: all 0.3s ease-in-out;
}
#social li:hover {
  transform: translateY(-5px);
}
#social img {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Swiper bullet */
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
  width: 12px;
  height: 12px;
  background: rgb(153, 153, 153);
  background: -moz-linear-gradient(
    top,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  background: -o-linear-gradient(
    top,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  background: linear-gradient(
    to bottom,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr="rgb(153, 153, 153)", endcolorstr="rgb(225, 225, 225)",gradienttype=0 );
  border: 3px solid rgb(229, 229, 229);
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
}
.swiper-pagination-bullet-active {
  background: green !important;
}

/* Featured Section
=================== */
.featured-section {
  padding: 0px 0px;
  position: relative;
  margin-bottom: 50px;
}
.featured-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.featured-left {
  width: 100%;
  height: 500px;
}
.featured-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Featured Right */
.featured-right {
  width: 100%;
}
.featured-right .featured-subtitle {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: gray;
}
.featured-right h2 {
  font-size: 40px;
  padding: 5px 0px;
  line-height: 57px;
  margin-bottom: 18px;
}
.featured-right .span-bold {
  font-weight: bold;
  text-transform: uppercase;
  color: #30335c;
  font-size: 32px;
}
.featured-right .span-light {
  font-weight: 900;
  font-size: 53px;
  color: #8410c1;
}
.featured-right .orderlist {
  margin-bottom: 20px;
}
.featured-right .orderlist li {
  color: darkslategray;
  font-size: 18px;
  font-weight: 500;
}
.li-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.li-wrap img {
  width: 25px;
}
.featured-right p {
}
.featured-right button {
  border: none;
  outline: none;
  padding: 12px 20px;
  border-radius: 30px;
  background: white;
  border: 1px solid #df3a81;
  color: #e03a7f;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
  width: 170px;
  height: auto;
}
.featured-right button:hover {
  background: #8912be;
  border: 1px solid transparent;
  color: white;
  transform: translateY(-5px);
}

.bg1 {
  background-size: contain;
  background-repeat: no-repeat;
  width: 108px;
  background-position: right;
  height: 193px;
  position: absolute;
  right: 0px;
  top: -70px;
}

/* Blog Section
=============== */
.blog-section {
  padding: 50px;
  width: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 0px;
  background: var(--bg);
}
.blog-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  position: relative;
}
.blog-title img {
  width: 30px;
}
.blog-title h2 {
  text-transform: uppercase;
  color: var(--brandColor);
  font-size: 35px;
  margin-right: 7px;
}
.blog-title h2::after {
  content: "";
  position: absolute;
  right: 138px;
  background: var(--brandColor);
  width: 39px;
  height: 11px;
  top: 28px;
}
.blog-wrapper {
  display: flex;
  justify-content: space-between;
  grid-gap: 20px;
}
.blog-box {
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px lightgray;
  width: 100%;
  background: white;
  transition: all 0.3s ease-in-out;
}
.blog-box:hover {
  transform: translateY(-7px);
}
.blog-box a {
  text-decoration: none;
}
.blog-thumb {
  width: 100%;
  height: 250px;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-content {
  padding: 10px;
}
.blog-content h2 {
  color: #0d1a28d1;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 10px;
}
.blog-content p {
  color: gray;
  font-size: 15px;
  margin-bottom: 13px;
}
.blog-content button {
  border: none;
  background: white;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-image: linear-gradient(to top, #ffffff03, #ffffff),
    url(../images/bg/footer-bg.jpg);
  background-size: cover;
  background-position: bottom;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.blog-content button:hover {
  letter-spacing: 1.2px;
  color: green;
  /* text-shadow: 1px 1px 1px black; */
}

/* Single page
============== */
.single-section {
  padding-bottom: 30px;
  margin-top: 30px;
}
.single-wrapper {
} 
.single-bg-wrap {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 300px;
}
.thumb-title {
  position: relative;
  z-index: 10;
  width: 100%;
  border-radius: 3px;
}
.single-thumb {
  width: 100%;
  height: 380px;
}
.single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-title {
  position: absolute;
  top: 50%;
  max-width: 90%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  right: 0px;
  left: 0px;
}
.single-title h1 {
  width: max-content;
  margin: 0px auto;
  color: black;
  font-size: 35px;
  border-radius: 5px;
  font-family: 'Shurjo', 'Poppins';
  font-weight: 900;
  background: var(--main-dark);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 20px;
}
.single-title span {
  background: var(--brandColor);
  color: white;
  padding: 3px 7px;
  line-height: 61px;
  font-family: 'Poppins', 'Shurjo';
  border-radius: 3px;
}
.single-wrapper {
  width: 100%;
  max-width: 940px;
  margin: 0px auto;
  background-color: transparent;
  margin-top: 20px;
}
.single-excerpt p {
  color: gray;
  font-size: 17px;
  margin-top: 10px;
}
.single-content {
}
.single-content p {
  margin: 10px 0px;
  /* font-size: 17px; */
  font-family: 'Poppins', Shurjo;
  font-size: 18px;
  font-weight: 400;
  color: #000000d1;
}
.append-style {
  font-size: 17px !important;
}

.closeIcon button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.closeIcon button span {
  background: #da0b0b;
  padding: 10px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  position: absolute;
  margin-top: 3px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Footer section
================== */
.footer-section {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: revert;
  position: relative;
  margin-top: 40px;
}
.dia-footer-shape3 {
  left: 0;
  right: 0;
  opacity: 1;
  z-index: -1;
  top: 80px;
  margin: 0 auto;
  text-align: center;
  animation-duration: 25s;
  animation-name: left-right-move;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  position: absolute;
  height: 271px;
  overflow: hidden;
}
@keyframes left-right-move {
  0% {
    transform: translateX(-100px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-100px);
  }
}
.footer-bottom {
  border-top: 2px solid #d3d3d340;
  height: 45px;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  grid-gap: 10px;
  align-items: flex-start;
  padding: 30px 0px;
}
.footer-bottom-box li {
  border-right: 1px solid lightgray;
  padding-right: 10px;
  list-style: none;
}
.footer-bottom-box li:last-child {
  border-right: unset;
}
.footer-bottom-box a {
  text-decoration: none;
  font-weight: 500;
  color: var(--main-dark);
}

.footer-social {
}
.footer-social ul {
}
.footer-social li {
}
.footer-social li a {
}
.footer-thumb {
  width: 40px;
  height: 40px;
}
.footer-social img {
  width: 100%;
  height: 100%;
}

/* footer link */
.footer-title {
  margin-bottom: 14px;
}
.footer-title h2 {
  font-size: 18px;
  font-weight: 500;
}
.footer-links {
}
.footer-links ul {
}
.footer-links li {
  list-style: none;
  padding: 1px 0px;
}
.footer-links a {
  text-decoration: none;
  font-family: "poppins";
  color: black;
  transition: 0.3s ease-in-out;
}
.footer-links a::before {
  content: "";
  background: green;
  border: 2px solid white;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  margin-top: 5px;
  margin-right: 10px;
}
.footer-links a:hover {
  padding-left: 12px;
}
.footer-links a:hover::before {
  content: "";
  background: green;
  border: 2px solid white;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 15px;
  visibility: visible;
  opacity: 1;
}
.footer-underline {
  background: #e12026;
  width: 16%;
  height: 3px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Footer address */
.footer-address-wraper {
  position: relative;
}
.footer-address-wraper li::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  background: green;
  margin-top: 7px;
  margin-left: -25px;
}
.footer-address-wraper li {
  list-style: none;
  display: flex;
  justify-content: flex-start;
}
/* Mobile logo area
================== */
.mobile-header-section {
	position: absolute;
	background-color: rgba(0, 128, 0, 0.137);
	z-index: 1;
	width: 100%;
	left: 0px;
	right: 0px;
	top: 30px;
}
.mobile-header-wrapper {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  background: var(--main-dark);
  box-shadow: 0px 4px 3px -2px rgb(0 0 0 / 35%);
  padding: 7px 10px;
  padding-bottom: 7px;
  padding-bottom: 4px;
}
.mobile-logo-wrapper {
  width: 250px;
  z-index: 1;
}
.mobile-logo-wrapper img {
  width: 100%;
  height: auto;
}
.mobile-address {
  background: #00685b;
  padding: 3px;
  padding-left: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-address ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 5px;
}

.mobile-address ul li img {
  filter: invert(1);
}
.mobile-address li{
  color: white;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
  font-size: 13px;
}
.mobile-address img {
  width: 18px;
}
.mobile-address li a {
  color: white;
  text-decoration: none;
}
.btn {
  border: none;
  outline: none;
  background: green;
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50px;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
}
.btn:hover {
  background: orangered;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev::after,
.swiper-container-rtl .swiper-button-next::after {
  content: "next";
  font-size: 18px;
  background: var(--brandColor);
  padding: 10px;
  color: white;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 1px 2px 0px black;
}
.swiper-button-prev::after,
.swiper-container-rtl .swiper-button-next::after {
  content: "prev";
}

/* Why choose us section
======================= */
.why-choose-us-section {
  padding: 50px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-color: #6ac9e738;
}
.why-choose-us-title-wrapper {
  text-align: center;
  max-width: 80%;
  margin: 0px auto;
  margin-bottom: 30px;
}
.why-choose-us-title-wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: #000000b0;
}
.why-choose-us-title-wrapper p:first-child {
  color: darkcyan;
}
.why-choose-us-title-wrapper h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: var(--brandColor);
}
.why-choose-us-wrapper {
  grid-gap: 20px;
  width: 100%;
}
.why-choose-us-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-gap: 10px;
  background: white;
  border: 2px solid white;
  box-shadow: 0px 0px 10px 0px #d3d3d385;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  height: 160px;
}
.why-choose-us-box:hover {
  border: 1px solid var(--brandColor);
  cursor: pointer;
}
.why-choose-us-box img {
}
.why-choose-us-box h3 {
  font-size: 19px;
  color: #000000b5;
  text-transform: capitalize;
  font-weight: 600;
  padding: 0px 40px;
}

/* Expert service section
======================== */

.expert-service-section {
  position: relative;
}
.expert-service-shape-2 {
  position: absolute;
  left: -390px;
  top: -244px;
  transform: rotate(45deg);
}
.box-content {

}
.box-content h4{
  color: gray;
  font-weight: 400;
}
.box-content h2{
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 55px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.box-content p{
  font-size: 18px;
  font-weight: 400;
}
.box-content ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
  margin-top: 20px;
}
.box-content li{
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 7px;
  font-weight: 500;
  font-size: 17px;
}
.box-content li img {
  width: 20px;
}
.box-image {
  width: 100%;
  position: relative;
}
.box-image box-image-thumb-img{

}
.expert-service-shape-1 {
  position: absolute;
  right: 0px;
  bottom: 0px;
  top: 0px;
}

/* Portfolio section */

/* web design and development */
.portfolio-section {
  padding: 40px;
  background: var(--bg);
}
.portfolio-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.portfolio-item {
  width: 100%;
  height: 200px;
}
.portfolio-item img {
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  box-shadow: #80808059 0px 2px 7px 0px;
  width: 100%;
}
.portfolio-item img:hover {
  transform: translateY(-5px);
}
.portfolio-button {
  background: var(--brandColor);
  color: white;
  padding: 10px 20px;
  width: 300px;
  border: unset;
  outline: unset;
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.portfolio-button:hover {
  background: white;
  color: var(--brandColor);
  border: 2px solid var(--brandColor);
  transform: translateY(-5px);
}
.title h2 {
  font-size: 43px;
  line-height: 55px;
  text-transform: uppercase;
  max-width: 90%;
}
.title h2::first-letter {
  font-size: 60px;
}
.title p {
  font-size: 17px;
}


/* web design and development */


/* Our core value section */
.our-core-value-section {
}
.our-core-value-wrapper {
  text-align: center;
}
.our-core-value-wrapper h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.our-core-value-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
}
.our-core-value-title-wrapper button {
  border: unset;
  padding: 10px 20px;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid var(--brandColor);
  transition: all 0.1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  grid-gap: 10px;
  height: 50px;
}
.our-core-value-title-wrapper button img {
  width: 25px;
  transform: rotate(270deg);
}
.our-core-value-title-wrapper button.active {
  background: var(--brandColor);
  border: 1px solid var(--brandColor);
  color: var(--white);
}
/* .our-core-value-title-wrapper button:hover {
  background: white;
  border: 2px solid var(--brandColor);
  color: var(--black);
} */
.our-core-value-content-wrapper {
}
.our-core-value-content {
  padding: 30px;
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}
.our-core-value-content p {
  font-size: var(--paragraph-font-size);
}
.tabcontent {
  display: none;
  padding: 6px 12px;
}




/* Our service
============== */
.our-service-section {
  padding: 50px 0px;
  /* background: var(--bg); */
}
.our-service-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 25px;
}
.our-service-box {
  background: white;
  padding: 20px;
  border: 3px solid white;
  box-shadow: 0px 0px 10px 0px #d3d3d38c;
  border-radius: 3px;
  min-height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  cursor: pointer;
}
.our-service-box:hover {
  border: 1px solid lightseagreen;
}
.our-service-box h2 {
  color: #232a61;
  margin-bottom: 5px;
  font-weight: 600;
}
.our-service-box p {
}
.our-service-box svg {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.7;
}
.our-service-box button {
  border: unset;
  outline: unset;
  background: var(--brandColor);
  width: 100%;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.3s ease-in-out;
  margin-top: 20px;
}
.our-service-box button:hover {
  background: white;
  border: 2px solid var(--brandColor);
  color: var(--brandColor);
}
.our-service-title {
  margin-bottom: 30px;
}
.our-service-title h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: #232a61;
  margin-bottom: 8px;
}
.service-underline {
  margin-top: 0px;
}
.our-service-template-header {
  text-align: center;
  margin-bottom: 30px;
}
.our-service-template-header img {
  width: 235px;
  height: auto;
}
.our-service-template-header h2 {
  text-transform: capitalize;
}
.our-service-template-header p {
  font-size: 23px;
  width: 70%;
  margin: 0px auto;
}
.our-service-template-header .underline {
  margin: 0px auto;
  text-align: center;
  margin-bottom: 20px;
}
.our-service-button {
  text-align: center;
  margin-top: 40px;
}
/* Testimonial Section
===================== */
.testimonial-section {
}
.testimonial-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.testimonial-box {
  width: 100%;
}
.testimonial-box iframe {
  width: 100%;
}

/* two column section */
.two-col-section {
  padding: 80px 0px;
  width: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}
.two-col-wrapper {
  grid-gap: 40px;
}
.first-col h2 {
  font-size: 53px;
  line-height: 56px;
  margin-bottom: 15px;
  color: var(--black);
}
.first-col p {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--light);
}
.first-col ul {
  margin-bottom: 10px;
  margin-left: 18px;
}
.first-col ul li {
  font-weight: 600;
}
.first-col button {
  margin-top: 20px;
}
.second-col {
}
.second-col img {
  width: 100%;
}
.web-dev-image{
  width: 95%;
  margin: 0px auto;
  float: right;
}
.flip-image {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.text-right {
  text-align: right;
}


/* click to arrow up */
.up-arrow {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 22px;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 1px 3px 0px #002a5c;
  z-index: 999;
}
.up-arrow.active {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.up-arrow img {
  width: 100%;
  height: 100%;
  background: var(--main-dark);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.up-arrow img:hover {
  transform: translateY(-5px);
}

/* Appoinment Section */
.appointment-section {
  background: var(--bg);
  padding-bottom: 5px;
  margin-top: 20px;
}
.appointment-wrapper {
  display: grid;
  grid-template-columns: 2fr;
  grid-gap: 34px;
  position: relative;
}
.appointment-content {
  width: 100%;
  padding-top: 40px;
  text-align: center;
}
.appointment-content h2{
  font-size: 50px;
  color: var(--main-dark);
}
.appointment-content p{
  /* margin: 20px 0px; */
}
.appointment-box-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  grid-gap: 20px;
  margin-top: 20px;
  width: 100%;
  border-radius: 6px;
}
.office-item {
  background: white;
  padding: 30px;
  border-radius: 3px;
  border: 1px solid #a5a5a53b;
  box-shadow: 0px 0px 4px 0px #d3d3d380;
}
.office-item h2 {
  font-size: 20px;
  background: var(--main-normal);
  padding: 7px;
  border-radius: 4px;
  margin-bottom: 10px;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
.appointment-box {
  border-radius: 5px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 5fr;
  align-items: center;
  grid-gap: 10px;
  overflow: hidden;
  background: #d1e1fd;
  margin-bottom: 10px;
}
.appointment-box-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgb(179, 203, 247);
  height: 100%;
  border-right: 2px solid white;
  width: 110px;
  border-left: 3px solid var(--main-dark);
}
.appointment-box-thumb h3{
  font-size: 14px;
  font-weight: 500;
  color: var(--animate-delay);
  width: max-content;
}
.appointment-box-thumb img{width: 19px;object-fit: cover;filter: invert(1);}
.appoinment-box-content {
  color: var(--black);
  width: 100%;
  padding: 4px;
  text-align: initial;
}
.appoinment-box-content p{

}
.appoinment-box-content a {
  text-decoration: none;
  color: var(--black);
}

/* appointment Hour */
.appoinment-hour {
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0px 2px 7px 2px #00000017;
  background: white;
  margin-top: -35px;
  border: 1px solid var(--brandColor);
}
.appoinment-hour h2 {

margin-bottom: 11px;

color: white;

text-transform: uppercase;

text-align: center;

background: var(--brandColor);

border-radius: 3px;

padding: 5px;
}
.appoinment-hour ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  grid-gap: 10px;
}
.appoinment-hour li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 10px;
  border-bottom: 1px solid #005dff1a;
  width: 100%;
  padding-bottom: 10px;
}
.appoinment-hour li:last-child {
  border-bottom: unset;
  padding-bottom: unset;
}
.appoinment-hour span {

}

/* our team section */
.our-team-section {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding: 100px 0px;
  padding-bottom: 80px;
  margin-bottom: 100px;
}
.our-team-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  padding-top: 312px;
}
.our-team-item {
  width: 100%;
  /* box-shadow: 0px 5px 6px 0px #092e5adb; */
  border-radius: 3px;
  background: white;
  padding: 20px;
  text-align: center;
  padding: 30px 0px;
  /* border: 1px solid transparent; */
}
.our-team-item:hover {
  /* border: 2px solid var(--brandColor); */
}
.our-team-thumb {
  width: 100px;
  height: 100px;
  margin: 0px auto;
  overflow: hidden;
  border-radius: 50%;
}
.our-team-thumb img{
  overflow: hidden;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--brandColor);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.our-team-thumb img:hover {
  transform: scale(1.1);
  border: 3px solid var(--brandColor);
}
.our-team-content {
  margin-top: 15px;
  padding: 0px 30px;
}
.our-team-content h2{
  font-size: 20px;
  color: #004c5c;
  margin-bottom: 4px;
}
.our-team-content h3{
  font-size: 13px;
  color: var(--brandColor);
  text-transform: uppercase;
  font-weight: 500;
}
.our-team-content h3 span {
  text-transform: capitalize;
}
.our-team-social {
  margin-top: 10px;
}
.our-team-social ul{
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
}
.our-team-social li{

}
.our-team-social img{
  transition: all 0.3s ease-in-out;
  filter: contrast(0.5);
}
.our-team-social img:hover {
  transform: translateY(-3px);
}
.our-team-title {
  text-align: center;
}
.our-team-title h2{
  font-size: 40px;
  text-transform: uppercase;
}
.our-team-title p {
  font-size: 18px;
}
.visiting-time h3 {
  font-weight: 600;
  border-bottom: 2px solid #ff8c0040;
  padding-bottom: 10px;
  margin-bottom: 5px;
}
.visiting-time {
  background: lightgoldenrodyellow;
  padding: 10px;
  border: 1px solid darkorange;
  border-radius: 3px;
  text-align: initial;
}
.address-thumb {
  position: absolute;
  right: 0px;
  height: 100%;
  width: 446px;
  bottom: -41px;
}
.address-thumb img {
  width: 100%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  height: 100%;
  object-fit: cover;
}
.bold-600 {
  font-weight: 600;
}
.highlight {
  background: var(--main-dark);
  color: white;
  border-radius: 3px;
  padding: 2px 7px;
  text-transform: uppercase;
}
.none {
  display: none;
}