/*============================================
/*  01. Theme Default CSS
==============================================*/
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  /* --tg-body-font-family: 'ObviouslyDemo', sans-serif; */
  --tg-body-font-family: 'OldschoolGrotesk', sans-serif;
  --tg-heading-font-family: 'OldschoolGrotesk', sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Free";
  --tg-body-font-size: 17px;
  --tg-body-line-height: 1.75;
  --tg-heading-line-height: 1.2;
  --tg-body-color: #445374;
  --tg-heading-color: #33272C;
  --tg-theme-primary: #4eb59c;
  --tg-theme-secondary: #C60634;
  --tg-color-dark-blue: #0E104B;
  --tg-color-dark-blue-2: #001950;
  --tg-color-light-blue: #37528E;
  --tg-color-yellow-default: #FFBE17;
  --tg-color-yellow-light: #F9EADC;
  --tg-color-white-default: #ffffff;
  --tg-color-red-default: #ED1730;
  --tg-color-gray-1: #ACB9D8;
  --tg-color-gray-2: #686677;
  --tg-color-gray-3: #C2A8C2;
  --tg-color-gray-4: #F7F4F7;
  --tg-color-gray-5: #8FA5D6;
  --tg-color-gray-6: #D0DAEF;
  --tg-color-gray-7: #9399A6;
  --tg-color-dark: #111111;
  --tg-color-black-1: #06042E;
  --tg-color-black-2: #161439;
  --tg-border-1: #C8C2C8;
  --tg-border-2: #D0CACA;
  --tg-border-3: #CCD2E1;
  --tg-border-4: #DBE3EB;
  --tg-border-5: #F8F8F8;
  --tg-border-6: #E6E6E6;
  --tg-fw-extra-bold: 800;
  --tg-fw-bold: 700;
  --tg-fw-semi-bold: 600;
  --tg-fw-medium: 500;
  --tg-fw-regular: 400;
  --tg-fw-light: 300;
}

@font-face {
  font-family: 'ObviouslyDemo';
  src: url('../fonts/ObviouslyDemo-Narrow.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'OldschoolGrotesk';
  src: url('../fonts/OldschoolGrotesk-Medium.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'OldschoolGrotesk';
  src: url('../fonts/OldschoolGroteskCondensed-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/*=============================
Typography css start
===============================*/
body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  line-height: var(--tg-body-line-height);
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: var(--tg-theme-primary);
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--tg-theme-primary);
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h4,
h5,
h6 {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  margin-top: 0px;
  font-weight: var(--tg-fw-bold);
  line-height: var(--tg-heading-line-height);
  text-transform: unset;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

p {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  line-height: var(--tg-body-line-height);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  margin-bottom: 15px;
}

*::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

::selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

/*=============================
- Input Placeholder
===============================*/
input,
textarea {
  color: var(--tg-body-color);
}

*::-moz-placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

/*=============================
- Common Classes
===============================*/
.fix {
  overflow: hidden;
}

/*=============================
- Bootstrap Custom
=============================*/
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-20 {
  --bs-gutter-x: 20px;
}

.container {
  max-width: 1320px;
}
@media (max-width: 1500px) {
  .container {
    max-width: 1250px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
/* @media (max-width: 991.98px) {
  .custom-container {
    max-width: 720px;
  }
} */

/*=============================
Button style
===============================*/

.btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-theme-secondary) none repeat scroll 0 0;
  border: medium none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  color: var(--tg-color-white-default);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 20px 30px 16px 30px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  /* white-space: nowrap; */
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--tg-heading-font-family);
  gap: 10px;
  --arrow-hover-move-x: -110%;
}
.btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: var(--tg-theme-primary);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.btn:hover, .btn:focus-visible {
  color: var(--tg-color-white-default);
  background: var(--tg-theme-secondary);
}
.btn:hover:before, .btn:focus-visible:before {
  top: -40%;
}
.btn:focus-visible svg path:nth-of-type(1) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
  opacity: 0;
  transition-delay: 0s, 0s;
}
.btn:focus-visible svg path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

/*=============================
Section Title
===============================*/
.section__title .sub-title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: var(--tg-theme-primary);
  margin-bottom: 14px;
  display: inline-flex;
  line-height: 1;
  font-family: var(--tg-heading-font-family);
  gap: 6px;
}
.section__title .title {
  margin-bottom: 0;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.1;
}
@media (max-width: 1199.98px) {
  .section__title .title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .section__title .title {
    font-size: 26px;
    letter-spacing: .5px;
  }
  .section__title .sub-title{
    font-size: 16px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title .title {
    font-size: 36px;
  }
}
.section__title p {
  margin-bottom: 0;
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  .section__title.mb-40 {
    margin-bottom: 30px;
  }
}
/*=============================
Header
===============================*/
.tg-header__top-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tg-header__top-info img{
  width: 20px;
}
@media (max-width: 991.98px) {
  .tg-header__top-info {
    justify-content: center;
    margin-bottom: 10px;
  }
}
.tg-header__top-info li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tg-color-gray-1);
  font-size: 15px;
  font-weight: 400;
  position: relative;
}
.tg-header__top-info li::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(16deg);
  -moz-transform: translateY(-50%) rotate(16deg);
  -ms-transform: translateY(-50%) rotate(16deg);
  -o-transform: translateY(-50%) rotate(16deg);
  transform: translateY(-50%) rotate(16deg);
  width: 2px;
  height: 16px;
  background: var(--tg-color-gray-1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.tg-header__top-info li:last-child::before {
  display: none;
}
.tg-header__top-info li i {
  color: var(--tg-theme-primary);
  font-size: 20px;
  line-height: 0;
}
.tg-header__top-info li a {
  color: var(--tg-color-gray-1);
}
.tg-header__top-info li a:hover {
  color: var(--tg-theme-secondary);
}
.tg-header__area {
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 15px 40px;
}
@media (max-width: 768px) {
  .tg-header__area {
    padding: 15px 0;
  }
}

.tgmenu__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
  }
}
.tgmenu__nav .logo img {
  max-height: 100px;
}

.tgmenu__action{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;

  /* gap: 40px; */
  padding-left: 20px;
}

.contact__wrapper {
  position: relative;
  padding-left: 20px;
}
.contact__wrapper h5{
  text-align: center;
}
.contact__wrapper:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background: var(--tg-color-gray-1);
}
/* @media (max-width: 991px) {
  .tgmenu__action {
    margin-right: 25px;
    margin-left: auto;
  }
} */
.tgmenu__action ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  /* margin-left: 10px; */
}
.tgmenu__action ul li {
  position: relative;
  /* margin-left: 35px; */
}
/* @media (max-width: 1199.98px) {
  .tgmenu__action ul li {
    margin-left: 20px;
  }
} */
.tgmenu__action ul li a {
  color: var(--tg-theme-primary);
  font-size: 16px;
}
.tgmenu__action ul li:first-child {
  margin-left: 0;
}
/*=============================
Banner
===============================*/
.banner__bg {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 100px 0 0;
  display: flex;
  align-items: center;
  background: rgba(78, 181, 156, .09)
}

@media (min-width: 1199px) {
  .banner__bg{
    height: 750px;
  }
}
.banner__content {
  margin-top: -60px;
}
@media (max-width: 991.98px) {
  .banner__content {
    text-align: center;
    margin: 0 0 50px;
  }
}
.banner__content .title {
  margin-bottom: 18px;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 60px;
  /* color: var(--tg-theme-sec); */
}
/* @media (max-width: 1500px) {
  .banner__content .title {
    font-size: 56px;
  }
} */
@media (max-width: 1199.98px) {
  .banner__content .title {
    font-size: 46px;
  }
}
@media (max-width: 767.98px) {
  .banner__content .title {
    font-size: 36px;
    margin-top: 48px;
  }
}
@media only screen and (max-width: 575px) {
  .banner__content .title {
    font-size: 31px;
    line-height: 1.4;
  }
}
.banner__content .title > img {
  margin-top: -65px;
}
@media (max-width: 767.98px) {
  .banner__content .title > img {
    margin-top: -48px;
    width: 85px;
  }
}
.banner__content p {
  margin-bottom: 25px;
  font-weight: 500;
}
.banner__shape-wrap img {
  position: absolute;
  z-index: -1;
}
.banner__shape-wrap img:nth-child(1) {
  left: 11%;
  top: 0;
}
.banner__shape-wrap img:nth-child(2) {
  left: 4%;
  bottom: 8%;
}
@media (max-width: 1500px) {
  .banner__shape-wrap img:nth-child(2) {
    left: 2%;
    bottom: 4%;
    width: 100px;
  }
}
.banner__shape-wrap img:nth-child(3) {
  right: 44%;
  top: 25%;
}
@media (max-width: 991.98px) {
  .banner__shape-wrap img:nth-child(3) {
    right: 16%;
    top: 40%;
  }
}
@media (max-width: 767.98px) {
  .banner__shape-wrap img:nth-child(3) {
    right: 16%;
    top: 43%;
  }
}
.banner__shape-wrap img:nth-child(4) {
  right: 47%;
  bottom: 14%;
}
@media (max-width: 991.98px) {
  .banner__shape-wrap img:nth-child(4) {
    right: 3%;
    bottom: 8%;
  }
}
@media (max-width: 767.98px) {
  .banner__shape-wrap img:nth-child(4) {
    display: none;
  }
}

.healthy-pets {
  width: 180px;
  height: 180px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-yellow-default);
  border: 8px solid var(--tg-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  right: -90px;
  bottom: 33%;
}
@media (max-width: 1500px) {
  .healthy-pets {
    right: -70px;
  }
}
@media (max-width: 1199.98px) {
  .healthy-pets {
    right: 0;
    bottom: 13%;
  }
}
.healthy-pets .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-color-dark);
  line-height: 0;
  width: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.healthy-pets .content .circle {
  position: absolute;
  margin-bottom: 0;
  font-size: 17px;
  text-transform: uppercase;
  left: 50%;
  top: 50%;
  font-weight: 700;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--tg-color-dark);
}
.healthy-pets .content .circle span {
  position: absolute;
  top: -70px;
  display: inline-block;
  transform-origin: 0 70px;
}
.healthy-pets-two {
  right: 10px;
  top: 0;
  width: 160px;
  height: 160px;
  background: var(--tg-color-gray-4);
  border: none;
}
@media (max-width: 767.98px) {
  .healthy-pets-two {
    display: none;
  }
}
.healthy-pets-two::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 2px dashed #D3D3D3;
  width: 180px;
  height: 180px;
}
.healthy-pets-two .icon {
  color: var(--tg-theme-primary);
}

.discount__shape-two {
  position: absolute;
  left: 28px;
  top: 0;
  z-index: 1;
  padding: 19px 25px;
}
.discount__shape-two svg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}
.discount__shape-two .title {
  margin-bottom: 0;
  color: var(--tg-color-white-default);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
}
.discount__shape-two .title span {
  font-size: 24px;
  margin-left: 5px;
}

/*=============================
About
===============================*/
.about__area {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .about__area {
    padding: 80px 0 60px;
  }
}
.about__area-two {
  padding: 130px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .about__area-two {
    padding: 100px 0;
  }
}
.about__area-three {
  padding: 130px 0;
}
@media (max-width: 767.98px) {
  .about__area-three {
    padding: 100px 0;
  }
}
.about__area-four {
  padding: 130px 0;
}
@media (max-width: 767.98px) {
  .about__area-four {
    padding: 100px 0;
  }
}
.about__img {
  position: relative;
}
@media (max-width: 991.98px) {
  .about__img {
    margin-bottom: 50px;
  }
}
.about__img-two {
  position: relative;
  padding-bottom: 55px;
}
@media (max-width: 991.98px) {
  .about__img-two {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about__img-two {
    padding-bottom: 0;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__img-two {
    padding-bottom: 55px;
    text-align: left;
  }
}
.about__img-two .mask-img {
  -webkit-mask-image: url(../img/images/h2_about_mask_img.svg);
  mask-image: url(../img/images/h2_about_mask_img.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  height: 520px;
  width: 377px;
}
@media (max-width: 1500px) {
  .about__img-two .mask-img {
    height: 506px;
    width: 365px;
  }
}
@media (max-width: 767.98px) {
  .about__img-two .mask-img {
    height: 440px;
    width: 320px;
  }
}
.about__img-two .mask-img img {
  max-width: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__img-two .mask-img-wrap {
  position: relative;
  padding: 10px;
  display: inline-block;
}
.about__img-two .mask-img-wrap .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.about__img-two .mask-img-wrap .shape svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  color: #D3D3D3;
}
.about__img-two .mask-img-wrap .shape svg .animation-dashed {
  animation: animation__shape-five 0.5s infinite linear;
  animation-play-state: paused;
}
.about__img-two .mask-img-wrap:hover .shape svg .animation-dashed {
  animation-play-state: running;
}
.about__img-two .img-two {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about__img-two .img-two img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  border: 10px solid var(--tg-color-white-default);
  filter: drop-shadow(0px 0px 80px rgba(0, 0, 0, 0.15));
  transform: rotate(-1.926deg);
  max-width: 290px;
}
@media (max-width: 767.98px) {
  .about__img-two .img-two img {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__img-two .img-two img {
    display: block;
  }
}
.about__img-two .shape img {
  position: absolute;
  left: -17%;
  bottom: -10%;
  z-index: -1;
  max-width: 120px;
}
@media (max-width: 1500px) {
  .about__img-two .shape img {
    left: -8%;
    max-width: 100px;
  }
}
@media (max-width: 1199.98px) {
  .about__img-two .shape img {
    left: -2%;
    max-width: 80px;
  }
}
@media (max-width: 991.98px) {
  .about__img-two .shape img {
    display: none;
  }
}
.about__img-three {
  position: relative;
  padding-bottom: 7px;
}
@media (max-width: 991.98px) {
  .about__img-three {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about__img-three {
    text-align: center;
  }
}
@media (max-width: 1199.98px) {
  .about__img-three > img {
    max-width: 330px;
  }
}
@media (max-width: 767.98px) {
  .about__img-three > img {
    max-width: 100%;
  }
}
.about__img-three .customer__review-two {
  border: 1px solid var(--tg-border-2);
  left: 13%;
  bottom: 0;
}
@media (max-width: 1199.98px) {
  .about__img-three .customer__review-two {
    left: 4%;
  }
}
@media (max-width: 767.98px) {
  .about__img-three .customer__review-two {
    left: 50%;
    transform: translateX(-50%) !important;
  }
}
.about__img-three .healthy-pets-two {
  right: 8%;
  top: 22%;
}
@media (max-width: 1199.98px) {
  .about__img-three .healthy-pets-two {
    right: 0%;
    top: 21%;
  }
}
.about__img-three .healthy-pets-two::before {
  border-color: #C2A8C2;
}
.about__img-four {
  position: relative;
}
@media (max-width: 991.98px) {
  .about__img-four {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about__img-four {
    text-align: center;
  }
}
.about__img-four img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 1199.98px) {
  .about__img-four img:nth-child(1) {
    max-width: 350px;
  }
}
@media (max-width: 767.98px) {
  .about__img-four img:nth-child(1) {
    max-width: 100%;
  }
}
.about__img-four img:nth-child(2) {
  position: absolute;
  right: 40px;
  top: 22%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  border: 6px solid var(--tg-color-white-default);
}
@media (max-width: 1199.98px) {
  .about__img-four img:nth-child(2) {
    right: 0;
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .about__img-four img:nth-child(2) {
    display: none;
  }
}
.about__img-four .shape img {
  position: absolute;
  right: 13%;
  top: 2%;
}
@media (max-width: 1199.98px) {
  .about__img-four .shape img {
    right: 2%;
  }
}
@media (max-width: 767.98px) {
  .about__img-four .shape img {
    display: none;
  }
}
.about__content {
  padding-left: 55px;
  position: relative;
  text-align: justify;
}
@media (max-width: 1199.98px) {
  .about__content {
    padding: 0;
  }
}
.about__content > p {
  margin-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .about__content > p {
    margin-bottom: 30px;
  }
}
.about__content-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 60px;
  margin-bottom: 25px;
}
@media (max-width: 1199.98px) {
  .about__content-inner {
    gap: 20px 40px;
  }
}
.about__content-inner > p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}
.about__content-inner-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 55px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.about__content-inner-two .experience__box-shape svg {
  color: var(--tg-theme-secondary);
}
.about__content-inner-two .experience__box::before {
  height: 116px;
  background: #E0E0E0;
}
@media (max-width: 767.98px) {
  .about__content-inner-two .experience__box::before {
    display: none;
  }
}
.about__content-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 30px;
  flex-wrap: wrap;
}
.about__content .shape img {
  position: absolute;
  right: 10%;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .about__content .shape img {
    right: 3%;
    top: -6%;
    width: 80px;
  }
}
@media (max-width: 991.98px) {
  .about__content .shape img {
    top: -16%;
  }
}
@media (max-width: 767.98px) {
  .about__content .shape img {
    display: none;
  }
}
.about__content-two {
  margin-left: 80px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .about__content-two {
    margin-left: 0;
  }
}
.about__content-two p {
  margin-bottom: 32px;
  font-weight: 500;
  width: 90%;
}
@media (max-width: 1199.98px) {
  .about__content-two p {
    width: 100%;
  }
}
.about__content-two .shape img {
  position: absolute;
  z-index: -1;
  right: -15%;
  top: -35%;
  max-width: 90px;
}
@media (max-width: 1500px) {
  .about__content-two .shape img {
    right: -7%;
  }
}
@media (max-width: 1199.98px) {
  .about__content-two .shape img {
    right: -4%;
    max-width: 80px;
  }
}
@media (max-width: 991.98px) {
  .about__content-two .shape img {
    display: none;
  }
}
.about__content-three {
  position: relative;
}
.about__content-three p {
  margin-bottom: 20px;
  font-weight: 500;
}
.about__content-three .shape img {
  position: absolute;
  right: -15%;
  top: -27%;
  z-index: -1;
  max-width: 136px;
}
@media (max-width: 991.98px) {
  .about__content-three .shape img {
    right: 0%;
    top: -42%;
    max-width: 120px;
  }
}
@media (max-width: 767.98px) {
  .about__content-three .shape img {
    top: -20%;
    max-width: 90px;
  }
}
.about__content-four {
  margin-right: 70px;
}
@media (max-width: 1500px) {
  .about__content-four {
    margin-right: 50px;
  }
}
@media (max-width: 1199.98px) {
  .about__content-four {
    margin-right: 0px;
  }
}
.about__content-four p {
  margin-bottom: 30px;
  font-weight: 500;
}
.about__video-wrap {
  position: relative;
  text-align: right;
  padding-bottom: 32px;
}
@media (max-width: 991.98px) {
  .about__video-wrap {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about__video-wrap {
    text-align: center;
  }
}
.about__video-wrap img {
  -webkit-border-radius: 126px;
  -moz-border-radius: 126px;
  -o-border-radius: 126px;
  -ms-border-radius: 126px;
  border-radius: 126px;
}
.about__video-wrap .play-btn {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-red-default);
  color: var(--tg-color-white-default);
  font-size: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 5px solid var(--tg-color-white-default);
  position: absolute;
  right: 27%;
  bottom: 0;
}
@media (max-width: 991.98px) {
  .about__video-wrap .play-btn {
    right: 35%;
  }
}
@media (max-width: 767.98px) {
  .about__video-wrap .play-btn {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about__video-wrap .play-btn::after {
  display: none;
}
.about__shape-wrap img {
  position: absolute;
  z-index: -1;
}
.about__shape-wrap img:nth-child(1) {
  right: 5%;
  bottom: 10%;
}
@media (max-width: 1500px) {
  .about__shape-wrap img:nth-child(1) {
    right: 2%;
    bottom: 8%;
    width: 90px;
  }
}
@media (max-width: 991.98px) {
  .about__shape-wrap img:nth-child(1) {
    bottom: auto;
    top: 10%;
  }
}
@media (max-width: 767.98px) {
  .about__shape-wrap img:nth-child(1) {
    top: 2%;
    width: 70px;
    left: 5%;
  }
}
.about__shape-wrap img:nth-child(2) {
  right: 6%;
  bottom: 10%;
}
@media (max-width: 991.98px) {
  .about__shape-wrap img:nth-child(2) {
    bottom: auto;
    bottom: 7%;
  }
}
@media (max-width: 767.98px) {
  .about__shape-wrap img:nth-child(2) {
    bottom: 3%;
  }
}

.video__box {
  position: absolute;
  z-index: 1;
  right: 12%;
  top: 4%;
  padding: 46px 30px 65px 28px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .video__box {
    right: 5%;
  }
}
@media (max-width: 767.98px) {
  .video__box {
    right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video__box {
    right: 7%;
  }
}
.video__box-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.video__box-shape svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--tg-theme-secondary);
}
.video__box .title {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--tg-color-white-default);
  font-family: var(--tg-body-font-family);
}
.video__box .play-btn {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-red-default);
  color: var(--tg-color-white-default);
  border: 3px solid var(--tg-color-yellow-light);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 55px;
  bottom: -22px;
}
.video__box .play-btn::after {
  display: none;
}

.experience__box {
  position: relative;
  padding: 28px 20px 20px;
  text-align: center;
}
.experience__box::before {
  content: "";
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 90px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  background: var(--tg-theme-primary);
}
@media (max-width: 1199.98px) {
  .experience__box::before {
    right: -22px;
  }
}
.experience__box-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.experience__box-shape svg {
  width: 100%;
  height: 100%;
  color: var(--tg-theme-primary);
  overflow: visible;
}
.experience__box .title {
  margin-bottom: 0;
  font-size: 64px;
  line-height: 0.8;
  color: var(--tg-color-white-default);
  display: inline-flex;
  gap: 5px;
}
@media (max-width: 991.98px) {
  .experience__box .title {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .experience__box .title {
    font-size: 50px;
    line-height: 1;
  }
}
.experience__box .title span {
  font-size: 20px;
}
.experience__box p {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-color-white-default);
}

.customer__review {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  margin-top: 35px;
}
/* @media (max-width: 767.98px) {
  .customer__review {
    padding: 0;
  }
} */
.customer__review-img .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.customer__review-img .list-wrap li {
  width: 54px;
  flex: 0 0 auto;
}
.customer__review-img .list-wrap li:not(:nth-child(1)) {
  margin-left: -25px;
}
.customer__review-img .list-wrap li:nth-child(1) {
  z-index: 5;
}
.customer__review-img .list-wrap li:nth-child(2) {
  z-index: 4;
}
.customer__review-img .list-wrap li:nth-child(3) {
  z-index: 3;
}
.customer__review-img .list-wrap li img {
  border-radius: 50%;
  border: 3px solid var(--tg-color-white-default);
}
/* .customer__review-content{
  display: flex;
  gap: 10px;
} */
.gap-10{
  gap: 10px !important;
}
.customer__review-content .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--tg-color-yellow-default);
  margin-bottom: 5px;
}
.customer__review-content .rating i{
  font-size: 14px;
}
.customer__review-content span {
  display: block;
}
.customer__review-two {
  position: absolute;
  background: var(--tg-color-white-default);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 10px 20px 10px 10px;
  gap: 10px;
  left: 26%;
  bottom: 22%;
}
@media (max-width: 767.98px) {
  .customer__review-two {
    left: 9%;
    bottom: 18%;
  }
}
.customer__review-two::before {
  display: none;
}
.customer__review-two .customer__review-img .list-wrap li {
  width: 48px;
}
.customer__review-two .customer__review-img .list-wrap li:not(:nth-child(1)) {
  margin-left: -17px;
}
.customer__review-two .customer__review-content span {
  font-size: 14px;
  line-height: 1;
}
/*=============================
Services
===============================*/
.services__area {
  background: rgba(78, 181, 156, .09);
  padding: 80px 0 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .services__area {
    padding: 60px 0 60px;
  }
  .services__item{
    margin: 0 40px;
  }
}
.services__item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 35px 40px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  margin-bottom: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.equal-height {
  display: flex;
  flex-wrap: wrap;
}

.equal-height > [class*="col"],
.equal-height > [class*="col-"] {
  display: flex;
}

.services__item:hover {
  filter: drop-shadow(10px 10px 0px #DED8DE);
}
.services__item:hover .services__shape .shape-one svg {
  stroke: #CEC4CE;
}
.services__item:hover .services__shape .shape-two svg .animation-dashed {
  animation-play-state: running;
}
.services__shape .shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.services__shape .shape-one svg {
  width: 100%;
  height: 100%;
  color: #FBFBFB;
  overflow: visible;
  display: block;
  position: absolute;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  stroke-width: 1px;
  stroke: transparent;
}
.services__shape .shape-two {
  position: absolute;
  left: 8px;
  top: 8px;
  right: 8px;
  bottom: 8px;
  z-index: -1;
}
.services__shape .shape-two svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--tg-theme-primary);
  display: block;
  position: absolute;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.services__shape .shape-two svg .animation-dashed {
  animation: animation__shape 0.5s infinite linear;
  animation-play-state: paused;
}
.services__icon {
  position: relative;
  font-size: 60px;
  line-height: 0;
  color: var(--tg-theme-primary);
  margin-bottom: 25px;
}
.services__icon-shape {
  position: absolute;
  color: rgba(78, 181, 156, .09);
  z-index: -1;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.services__icon img{
  width: 65px;
}
.services__content .title {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;
}
.services__content p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}
.services__content .btn {
  padding: 16px 22px 12px 22px;
  font-size: 16px;
}
.services__content .btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.services__shape-wrap img {
  position: absolute;
  z-index: -1;
}
.services__shape-wrap img:nth-child(1) {
  left: 5%;
  bottom: 15%;
}
@media (max-width: 1500px) {
  .services__shape-wrap img:nth-child(1) {
    left: 2%;
    bottom: 8%;
  }
}
@media (max-width: 991.98px) {
  .services__shape-wrap img:nth-child(1) {
    left: 4%;
    bottom: 4%;
  }
}
@media (max-width: 767.98px) {
  .services__shape-wrap img:nth-child(1) {
    left: 6%;
    bottom: 1%;
    width: 70px;
  }
}
.services__shape-wrap img:nth-child(2) {
  top: 17%;
  right: 0;
}
@media (max-width: 1199.98px) {
  .services__shape-wrap img:nth-child(2) {
    top: 14%;
  }
}
@media (max-width: 991.98px) {
  .services__shape-wrap img:nth-child(2) {
    display: none;
  }
}
.services__shape-wrap img:nth-child(3) {
  top: 16%;
  right: 0%;
}
@media (max-width: 1500px) {
  .services__shape-wrap img:nth-child(3) {
    top: 20%;
  }
}
@media (max-width: 1199.98px) {
  .services__shape-wrap img:nth-child(3) {
    top: 3%;
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  .services__shape-wrap img:nth-child(3) {
    top: 0%;
    width: 80px;
  }
}

@media (max-width: 991.98px) {
  .view__all-btn {
    text-align: left !important;
  }
}

.shine-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.shine-animate::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.shine-animate-item:hover .shine-animate::before {
  -webkit-animation: hoverShine 1.2s;
  animation: hoverShine 1.2s;
}

.section-more-btn {
  text-align: right;
}
@media (max-width: 991.98px) {
  .section-more-btn {
    text-align: left;
    margin-bottom: 50px;
  }
}
.section-more-btn .border-btn {
  border-color: var(--tg-color-white-default);
  color: var(--tg-color-white-default);
}
.section-more-btn .border-btn:hover {
  color: var(--tg-theme-secondary);
  background: var(--tg-color-white-default);
  border-color: var(--tg-color-white-default);
}

.about__list-box-three .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 0 -5px;
  flex-wrap: wrap;
  gap: 10px 0;
}
.about__list-box-three .list-wrap li {
  width: 50%;
  flex: 0 0 auto;
  padding: 0 5px;
  margin: 0;
}
@media (max-width: 767.98px) {
  .about__list-box-three .list-wrap li {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__list-box-three .list-wrap li {
    width: 50%;
  }
}
/*=============================
Product
===============================*/
.product__area {
  padding: 70px 0 50px;
  background-color: var(--tg-theme-primary);
}

.product__item {
  margin-bottom: 25px;
}
/* .product__item:hover .product__thumb::before {
  opacity: 1;
} */
.product__item-wrap {
  position: relative;
}
.product__item-wrap:hover button {
  opacity: 1;
}
.product__nav-wrap button {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.1));
  border: 1px solid #D6D6D6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 22px;
  position: absolute;
  left: -25px;
  top: 40%;
  z-index: 2;
  opacity: 0;
}
@media (max-width: 767.98px) {
  .product__nav-wrap button {
    width: 40px;
    height: 40px;
    left: 0;
    top: 30%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__nav-wrap button {
    left: -25px;
  }
}
.product__nav-wrap button.product-button-next {
  left: auto;
  right: -25px;
}
@media (max-width: 767.98px) {
  .product__nav-wrap button.product-button-next {
    right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__nav-wrap button.product-button-next {
    right: -25px;
  }
}
.product__nav-wrap button:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  border-color: var(--tg-theme-primary);
}
.product__thumb {
  position: relative;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}
.product__thumb img {
  width: 100%;
}

/*=============================
===============================*/
.testimonial__area {
  /* background: var(--tg-color-gray-4); */
  position: relative;
  z-index: 1;
  padding: 100px 0 100px;
}
.testimonial__item-three .content p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  text-transform: capitalize;
  width: 90%;
}
@media (max-width: 1199.98px) {
  .testimonial__item-three .content p {
    font-size: 18px;
    width: 100%;
  }
}
.testimonial__item-three-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 15px;
}
@media (max-width: 1199.98px) {
  .testimonial__item-three-top {
    gap: 15px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__item-three-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial__item-three-top {
    flex-direction: row;
    align-items: center;
  }
}
.testimonial__item-three-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1199.98px) {
  .testimonial__item-three-bottom {
    gap: 15px;
  }
}
.testimonial__icon-three {
  width: 76px;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .testimonial__icon-three {
    margin-left: 10px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__icon-three {
    margin-left: 0;
  }
}
.testimonial__content-three {
  margin-left: 35px;
}
@media (max-width: 1199.98px) {
  .testimonial__content-three {
    margin-left: 0;
  }
}
.testimonial__author-info .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--tg-color-yellow-default);
  gap: 5px;
  margin-bottom: 12px;
}
.testimonial__author-info .title {
  margin-bottom: 5px;
  line-height: 1;
  font-family: var(--tg-body-font-family);
  font-size: 20px;
}
.testimonial__img-two {
  position: relative;
  padding-bottom: 8px;
}
@media (max-width: 991.98px) {
  .testimonial__img-two {
    margin-bottom: 50px;
  }
}
.testimonial__img-mask-two {
  -webkit-mask-image: url(../img/images/h3_testimonial_mask_img.svg);
  mask-image: url(../img/images/h3_testimonial_mask_img.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  height: 442px;
  width: 490px;
  margin: 0 auto;
}
@media (max-width: 1500px) {
  .testimonial__img-mask-two {
    height: 412px;
    width: 460px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial__img-mask-two {
    height: 384px;
    width: 430px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__img-mask-two {
    height: 284px;
    width: 320px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial__img-mask-two {
    height: 340px;
    width: 380px;
  }
}
.testimonial__img-mask-two img {
  max-width: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: var(--tg-theme-primary);
}
.testimonial__nav-wrap-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
}
.testimonial__nav-wrap-two button {
  width: 48px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8E8E8;
  border: none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  color: var(--tg-body-color);
  z-index: 2;
}
.testimonial__nav-wrap-two button.testimonial-button-prev {
  transform: rotate(180deg);
}
.testimonial__nav-wrap-two button:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.testimonial__shape-wrap img {
  position: absolute;
  z-index: -1;
}
.testimonial__shape-wrap img:nth-child(1) {
  left: 0;
  top: 10%;
  max-width: 217px;
}
@media (max-width: 1800px) {
  .testimonial__shape-wrap img:nth-child(1) {
    top: 5%;
    max-width: 200px;
  }
}
@media (max-width: 1500px) {
  .testimonial__shape-wrap img:nth-child(1) {
    top: 5%;
    max-width: 130px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__shape-wrap img:nth-child(1) {
    max-width: 80px;
  }
}
.testimonial__shape-wrap img:nth-child(2) {
  right: 4%;
  bottom: 0;
}
@media (max-width: 1800px) {
  .testimonial__shape-wrap img:nth-child(2) {
    right: 2%;
    width: 100px;
  }
}
@media (max-width: 1500px) {
  .testimonial__shape-wrap img:nth-child(2) {
    left: 0%;
    width: 65px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial__shape-wrap img:nth-child(2) {
    display: none;
  }
}

.review__box {
  position: absolute;
  left: 35px;
  top: 40px;
  z-index: 1;
  text-align: center;
  padding: 16px 30px 20px 38px;
}
@media (max-width: 1500px) {
  .review__box {
    left: 0;
  }
}
.review__box-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.review__box-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.review__box-content .title {
  margin-bottom: 0;
  line-height: 0.8;
  font-size: 30px;
  color: var(--tg-color-white-default);
}
.review__box-content span {
  display: block;
  line-height: 1;
  color: var(--tg-color-white-default);
}
.review__box-two {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

/*=============================
Why We Are
===============================*/
.why__we-are-area {
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .why__we-are-area,
  .testimonial__area {
    padding: 80px 0 60px !important;
  }
}
.why__we-are-img {
  position: relative;
  margin-left: 80px;
}
@media (max-width: 1500px) {
  .why__we-are-img {
    margin-left: 40px;
  }
}
@media (max-width: 1199.98px) {
  .why__we-are-img {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .why__we-are-img {
    margin-bottom: 50px;
  }
}
.why__we-are-img .shape {
  position: absolute;
  color: var(--tg-theme-primary);
}
.why__we-are-img .shape-three {
  right: 10%;
  bottom: 20px;
}
@media (max-width: 1199.98px) {
  .why__we-are-img .shape-three {
    right: 0;
    bottom: 0;
  }
}
.why__we-are-content > p {
  margin-bottom: 35px;
  text-align: justify;
}
@media (max-width: 991.98px) {
  .why__we-are-content > p {
    width: 100%;
  }
}
/* @media (max-width: 1199.98px) {
  .why__we-are-item {
    padding: 55px 35px 50px;
  }
} */
.why__list-box .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* margin: 0 -15px; */
  gap: 15px 0;
}
@media (max-width: 1199.98px) {
  .why__list-box .list-wrap {
    margin: 0 -10px;
    gap: 30px 0;
  }
}
.why__list-box .list-wrap li {
  width: 50%;
  padding: 0 15px;
}
@media (max-width: 1199.98px) {
  .why__list-box .list-wrap li {
    padding: 0 10px;
  }
}
@media (max-width: 767.98px) {
  .why__list-box .list-wrap li {
    width: 100%;
  }
}
.why__list-box-item-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why__list-box-item-top .icon {
  position: relative;
  padding-left: 4px;
  min-height: 23px;
  line-height: 1;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  color: var(--tg-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.why__list-box-item-top .icon::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  background: rgba(78, 181, 156, .09);
  z-index: -1;
  left: 0;
  top: 0;
}
.why__list-box-item-top .title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.why__list-box-item:hover .why__list-box-item-top .icon {
  color: var(--tg-body-color);
}
.why__list-box-item:hover .why__list-box-item-top .title {
  color: var(--tg-theme-primary);
}
/*=============================
Cta
===============================*/
.cta__area {
  position: relative;
  z-index: 1;
}
.cta__content {
  position: relative;
  padding: 100px 0;
  z-index: 9;
}
@media (max-width: 991px) {
  .cta__content {
    text-align: center;
    padding: 80px 0 50px;
  }
}
@media (max-width: 767.98px) {
  .cta__content {
    padding: 60px 0 50px;
  }
}
.cta__content .title {
  margin-bottom: 10px;
  color: var(--tg-color-white-default);
  font-size: 48px;
  line-height: 1.1;
  text-transform: uppercase;
  width: 90%;
}
@media (max-width: 1500px) {
  .cta__content .title {
    font-size: 45px;
  }
}
@media (max-width: 1199.98px) {
  .cta__content .title {
    font-size: 38px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .cta__content .title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta__content .title {
    font-size: 38px;
  }
}
.cta__content .btn {
  
  background-color: var(--tg-theme-secondary) !important;
  color: var(--tg-color-white-default);
}
.cta__content .btn:hover {
  color: var(--tg-theme-primary);
  /* background-color: var(--tg-theme-secondary) !important; */
}
.cta__content .btn:before {
  background: var(--tg-color-white-default);
}

/*=============================
Contact
===============================*/
.contact__area,
.contact__area2 {
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  .contact__area {
    padding: 60px 0;
  }
}
.contact__info-wrap .title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.contact__info-wrap > .list-wrap > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #615f5f;
  margin-bottom: 5px;
}
.contact__info-wrap > .list-wrap > li:last-child {
  margin-bottom: 0;
}
.contact__info-wrap > .list-wrap > li .icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 0;
  font-size: 18px;
}
.contact__info-wrap > .list-wrap > li .icon img{
  width: 15px;
}
.contact__info-wrap > .list-wrap > li a {
  color: #615f5f;
}
.contact__info-wrap > .list-wrap > li a:hover {
  color: var(--tg-theme-primary);
}
.contact__form-wrap {
  /* background: var(--tg-border-5); */
  background-color: #fff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 20px 25px 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
/* @media (max-width: 1199px) {
  .contact__form-wrap {
    margin-top: 50px;
  }
} */
.contact__form .title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
/* @media (max-width: 767.98px) {
  .contact__form .title {
    font-size: 32px;
  }
} */
.contact__form .form-grp {
  margin-bottom: 15px;
}
.contact__form .form-grp textarea, .contact__form .form-grp input, .contact__form .form-grp select {
  width: 100%;
  font-size: 15px;
  border: 1px solid #E1E4E7;
  background: var(--tg-color-white-default);
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 400;
  color: var(--tg-heading-color);
  display: block;
  height: 50px;
}
.contact__form .form-grp textarea {
  min-height: 80px;
  max-height: 80px;
}
.contact-map {
  width: 100%;
  height: 390px;
  /* margin-top: 60px; */
}
@media (max-width: 767.98px) {
  .contact-map {
    height: 350px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 432px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

/*=============================
Footer
===============================*/
.footer__bottom {
  background: var(--tg-heading-color);
  padding: 15px 0;
}

@media (max-width: 991.98px) {
  .copyright-text {
    text-align: center !important;
    margin-top: 15px;
  }
}
.copyright-text p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/*=============================
Keyframe Animation
===============================*/
@-webkit-keyframes hoverShine {
  100% {
    left: 125%;
  }
}
@keyframes hoverShine {
  100% {
    left: 125%;
  }
}
.alltuchtopdown {
  -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}
@-webkit-keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}
.rightToLeft {
  -webkit-animation-name: rightToLeft;
  animation-name: rightToLeft;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rightToLeft {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
.ribbonRotate {
  -webkit-animation-name: ribbonRotate;
  animation-name: ribbonRotate;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes ribbonRotate {
  0%, 100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  25%, 75% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
}
.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInLeft2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft2 {
  -webkit-animation-name: fadeInLeft2;
  animation-name: fadeInLeft2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  100% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  100% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}
@keyframes animation__shape {
  0% {
    stroke-dashoffset: 12;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes animation__shape-two {
  0% {
    stroke-dashoffset: 18;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes animation__shape-three {
  0% {
    stroke-dashoffset: 24;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes animation__shape-four {
  0% {
    stroke-dashoffset: 14;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes animation__shape-five {
  0% {
    stroke-dashoffset: 16;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/*# sourceMappingURL=main.css.map */

.contact-container {
  position: fixed;
  right: 0;
  bottom: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
}

.call-us, .whatsapp-us {
  position: relative;
  background-color: var(--tg-theme-primary);
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 60px;
  margin-bottom: 10px;
  text-align: center;
  padding: 8px 10px;
  white-space: nowrap;
  overflow: visible;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.call-us i{
  font-size: 35px;
  color: #fff;
  display: flex;
  height: auto;
}

.whatsapp-us img {
  width: 35px;
  height: 35px;
}

.chat-with-us {
  position: absolute;
  right: 60px;
  top: 60px;
  transform: translateY(-50%);
  background: var(--tg-theme-primary);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  width: 200px;
}

.chat-with-us p:hover a{
  color: var(--tg-theme-secondary);
}

.call-us:hover .chat-with-us,
.whatsapp-us:hover .chat-with-us {
  opacity: 1;
  pointer-events: auto;
}
.chat-with-us p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  /* display: flex; */
  line-height: 1.4;
}

.chat-with-us a {
  color: #fff;
  /* text-decoration: underline; */
  font-size: 13px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 260px;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgb(0 0 0 / .6)
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}

@media(min-width:1200px) {
  .popup-content {
    width: 35%;
  }
}

@media(max-width:547px) {
  .popup-content {
    width: 95%;
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #333;
  z-index: 99;
  float: right;
  font-size: 35px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 0;
  right: 12px;
}
.close:hover{
  color: #000;
}

.cover_image{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .tgmenu__nav .logo img{
    max-height: 55px !important;
  }
  .tgmenu__action{
    gap: 15px !important;
  }
  /* .contact__info-wrap > .list-wrap > li{
    margin-bottom: 10px !important
  } */
}

@media (max-width: 575px) {
  .col{
    flex: unset !important;
  }
}

.contact__box{
  border: 2px solid var(--tg-theme-primary);
  padding: 16px;
  border-radius: 10px;
}

.contact__box{
  margin-bottom: 25px;
}

/* .tgmenu__action{
  text-align: center;
} */

.tgmenu__action h5 i{
  position: relative;
  top: 4px;
}

.dropdown-toggle img{
  width: 20px;
}

.btn.theme{
  padding: 15px !important
}
.btn.whatsapp{
  background-color: var(--tg-theme-primary) !important;
  padding: 15px !important
}
.tgmenu__mobile-contact{
  gap: 10px;
}
.dropdown-item{
  font-size: 14px;
}
.video-wrapper img{
  border-radius: 10px;
}
.phone-error.error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.contact__form input.is-invalid {
  border-color: #dc3545 !important;
}
#phone {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.iti--separate-dial-code .iti__selected-dial-code{
  color: #55585b;
}
.iti{
  width: 100%;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  cursor: pointer;
}

.video-wrapper img,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  text-shadow: 0 0 10px black;
}
