@charset "UTF-8";
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* transform */
:root {
  /**
  @font family declaration
  */
  --ot-title-font: "Poppins", sans-serif;
  --ot-body-font: "Poppins", sans-serif;
  --ot-montserrat-style: "Montserrat", sans-serif;
  --ot-roboto-style: "Roboto", sans-serif;
  /**
  @ripple declaration
  */
  --ot-ripple-ani-duration: 2s;
  /**
  @color declaration
  */
  --ot-theme-color: #3759A3;
  --ot-theme-color2: #F3A413;
  --ot-title-color: #002244;
  --ot-body-color: #424242;
  --ot-border-color: #D8DDE1;
  --ot-smoke-color: #f6f6f6;
  --ot-smoke-color2: #F1F8FE;
  --ot-smoke-color3: #f2f9ff;
  --ot-white-color: #ffffff;
  --ot-black-color: #151515;
  --ot-gray-color: #f0f0f0;
  --ot-error-color: #dc3545;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0 15px;
}
.text-white{
    color:#fff !important;
}

.after-before-white::after, .after-before-white::before{
    background: #fff !important;
}
@media (min-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1600px) {
  .container {
    max-width: 1240px;
    padding-left: 0;
    padding-right: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--ot-body-color);
  font-family: var(--ot-body-font);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 33px;
  font-family: var(--ot-body-font);
  color: var(--ot-body-color);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

*::-moz-selection {
  background: var(--ot-black-color);
  color: var(--ot-white-color);
  text-shadow: none;
}

*::-moz-selection {
  background: var(--ot-black-color);
  color: var(--ot-white-color);
  text-shadow: none;
}

*::selection {
  background: var(--ot-black-color);
  color: var(--ot-white-color);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--ot-black-color);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--ot-black-color);
  font-size: 14px;
  opacity: 1;
}

.fz-18 {
  font-size: 18px !important;
}

.fz-20 {
  font-size: 20px !important;
}

.theme-text {
  color: var(--ot-theme-color) !important;
}

.black-text {
  color: var(--ot-black-color);
}

.d-flex {
  display: flex;
}
.d-flex.align-items-center {
  display: flex;
  align-items: center;
}
.d-flex.align-items-end {
  display: flex;
  align-items: end;
}
.d-flex.justify-content-center {
  display: flex;
  justify-content: center;
}
.d-flex.justify-content-end {
  display: flex;
  justify-content: end;
}
.d-flex.justify-content-between {
  display: flex;
  justify-content: space-between;
}
.d-flex.align-content-between {
  align-content: space-between;
}
.d-flex.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.d-flex.flex-revers {
  display: flex;
  flex-direction: row-reverse;
}
.d-flex.text-center {
  text-align: center;
  margin: auto;
}

.text-center {
  text-align: center;
}

.theme-text2 {
  color: var(--ot-theme-color2);
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex;
  }
  .d-lg-flex.align-items-center {
    display: flex;
    align-items: center;
  }
  .d-lg-flex.justify-content-center {
    display: flex;
    justify-content: center;
  }
  .d-lg-flex.justify-content-end {
    display: flex;
    justify-content: end;
  }
  .d-lg-flex.flex-revers {
    display: flex;
    flex-direction: row-reverse;
  }
}

.fw-6 {
  font-weight: 600;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .me-xxl-5 {
    margin-right: 50px;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-35 {
  margin-bottom: 35px;
}

.w-100 {
  width: 100% !important;
  max-width: 100% !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.d-xl-flex {
  display: flex;
}
.d-xl-flex.align-items-center {
  display: flex;
  align-items: center;
}
.d-xl-flex.justify-content-center {
  display: flex;
  justify-content: center;
}
.d-xl-flex.justify-content-end {
  display: flex;
  justify-content: end;
}
@media (min-width: 0) and (max-width: 1199px) {
  .d-xl-flex {
    flex-direction: column;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .d-xl-flex.lg-revers {
    display: flex;
    flex-direction: column-reverse;
  }
}

.radius-10 {
  border-radius: 10px;
}
.radius-10 img {
  border-radius: 10px;
}

.space {
  padding-top: 50px;
  padding-bottom: 50px;
}

.space-top {
  padding-top: 50px;
}

.space-bottom {
  padding-bottom: 50px;
}

.mb-0 {
  margin-bottom: 0;
}

.theme-text {
  color: var(--ot-theme-color) !important;
}

/*---------------------------------
    1.1 Common Classes
---------------------------------*/
.clear {
  clear: both;
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

.body-overlay {
  background-color: var(--ot-black-color);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay:hover {
  cursor: url(../img/icon/close.png), pointer;
}

.body-overlay.opend {
  opacity: 0.7;
  visibility: visible;
}

.ot-bold-text {
  position: relative;
  font-weight: 600;
  color: var(--ot-title-color);
}

.ot-img-hover {
  position: relative;
  overflow: hidden;
}
.ot-img-hover::before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  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);
}
.ot-img-hover:hover::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.ot-bg-style {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-mask {
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

/*----------------------------------------*/
/*  2.8 Offcanvas
/*----------------------------------------*/
.ot-offcanvas {
  position: fixed;
  background: var(--ot-white-color);
  width: 480px;
  right: 0;
  top: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.3s 0.3s ease-out;
  -moz-transition: 0.3s 0.3s ease-out;
  -ms-transition: 0.3s 0.3s ease-out;
  -o-transition: 0.3s 0.3s ease-out;
  transition: 0.3s 0.3s ease-out;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  z-index: 999;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ot-offcanvas {
    width: 400px;
  }
}
@media (max-width: 575px) {
  .ot-offcanvas {
    width: 100%;
  }
}
.ot-offcanvas-header {
  padding: 20px 40px;
  background-color: var(--ot-theme-color);
}
.ot-offcanvas-wrapper {
  padding: 0 40px;
}
.ot-offcanvas-wrapper .header-info {
  display: inline-flex !important;
}
.ot-offcanvas.opend {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.ot-offcanvas-close-toggle {
  font-size: 16px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: var(--ot-theme-color);
  border: 1px solid var(--ot-theme-color);
  background-color: var(--ot-white-color);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ot-offcanvas-close-toggle:hover {
  color: var(--ot-white-color);
  background: var(--ot-theme-color);
  border: 1px solid var(--ot-theme-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .ot-offcanvas-header {
    margin-bottom: 40px;
  }
}
.ot-offcanvas-title {
  font-weight: 600;
  font-size: 18px;
  display: block;
  text-transform: capitalize;
  color: var(--ot-black-color);
  border-bottom: 1px solid #ebecf5;
  padding-bottom: 10px;
}
.ot-offcanvas-info-content a:not(:last-child) {
  margin-bottom: 10px;
  display: inline-block;
}
.ot-offcanvas-info-icon span {
  font-size: 18px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  color: var(--ot-white-color);
  background: var(--ot-black-color);
  border-radius: 50%;
  border-radius: 100%;
  border: 0;
  box-shadow: 0 8px 34px 0 rgba(36, 44, 73, 0.15);
}
.ot-offcanvas-info-text span {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--ot-theme-color);
}
.ot-offcanvas-info-text span:last-child {
  font-size: 16px;
  color: var(--ot-black-color);
  text-transform: lowercase;
}
.ot-offcanvas-info-text.of-location span:last-child {
  text-transform: capitalize;
}
.ot-offcanvas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}
.ot-offcanvas-gallery a img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}
.ot-offcanvas-social a {
  font-size: 16px;
  text-align: center;
  display: inline-block;
  color: var(--ot-title-color);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ot-offcanvas-social a:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #d9d9d9;
}
.ot-offcanvas-social a:hover {
  color: var(--ot-theme-color);
}
.ot-offcanvas-social a:hover span {
  color: var(--ot-theme-color);
}

/*----------------------------------------*/
/*  2.12 Section Title
/*----------------------------------------*/
.sec-title {
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--ot-theme-color);
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .sec-title {
    font-size: 24px;
  }
}
.sec-title.black-text {
  color: var(--ot-title-color);
}

.bolder-text {
  font-weight: 600;
  color: #232323;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.header-layout1 {
  position: relative;
  box-shadow: 0 4px 16px 0 rgba(184, 184, 184, 0.25);
  background: #fff;
  z-index: 5;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .header-layout1 .header-menu {
    margin-right: 12rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-layout1 .header-menu {
    margin-right: 0rem;
  }
  section.header-area.header-layout1 .container {
    padding: 0 15px;
}
.header-right-bars{
  display: none !important;
}
}

.header-right-bars {
  display: none;
}
@media (max-width: 1399px) {
  .header-right-bars {
    display: block;
  }
}
.header-right-bars svg {
  width: 25px;
}

@media (min-width: 0) and (max-width: 1200px) {
  .header-menu {
    display: none;
  }
}

.header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  position: relative;
  top: 50px;
}
@media (min-width: 0) and (max-width: 1199px) {
  .header-logo {
    top: 5px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-right {
    gap: 15px;
  }
}

.header-info-box {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  right: 15px;
}
@media (max-width: 1399px) {
  .header-info-box {
    position: static;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-info-box .header-info {
    display: none;
  }
}

.header-info {
  font-weight: 500;
  font-size: 20px;
  color: #0f4782;
  font-family: var(--ot-montserrat-style);
}

.header-info {
  box-shadow: 0 4px 8px 0 rgba(175, 175, 175, 0.25);
  background: #d0e9ff;
  border-radius: 5px;
  padding: 10px 15px;
  padding-right: 60px;
  display: flex;
  gap: 5px;
}
.header-info .h-number {
  display: block;
  font-size: 14px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-info {
    padding-right: 15px;
  }
}

.header-lang {
  position: relative;
  cursor: pointer;
  background: #f1f1f1;
  border-radius: 2px;
  padding: 3px 4px;
  border: 2px solid var(--ot-theme-color);
}
.header-lang-list {
  position: absolute;
  top: 140%;
  right: 0;
  z-index: 11;
  padding: 8px;
  min-width: 100px;
  background: #F1F1F1;
  box-shadow: 0 0 36px 0 rgba(0, 0, 0, 0.35);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  border-radius: 0;
}
.header-lang-list li {
  font-size: 12px;
  font-weight: 500;
  color: var(--ot-title-color);
  text-align: left;
  list-style: none;
  padding: 0 8px;
  border-radius: 0;
  align-items: center;
  justify-content: space-between;
}
.header-lang-list li img {
  margin-right: 0;
}
.header-lang-list li .lang-checkmark {
  position: absolute;
  color: var(--ot-white-color);
  font-size: 14px;
  visibility: hidden;
  transition: 0.2s ease;
  right: 20px;
}
.header-lang-list li a {
  width: 100%;
  display: inline-block;
  text-transform: uppercase;
}
.header-lang-list li.active {
  background: var(--ot-theme-color);
  color: var(--ot-white-color);
}
.header-lang-list li.active .lang-checkmark {
  visibility: visible;
}
.header-lang-list.lang-list-open {
  visibility: visible;
  opacity: 1;
  top: 118%;
}
.header-lang-selected-lang {
  position: relative;
  font-weight: 500;
  font-size: 10px;
  color: #3b3b3b;
  border-radius: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-lang-selected-lang img.lang-flag {
  width: 20px;
  height: auto;
}
.header-lang-selected-lang .lang-checkmark-toggle {
  color: var(--ot-white-color);
  font-size: 14px;
  margin-left: 5px;
}
.header-lang-selected-lang .fa-angle-down {
  font-size: 12px;
  color: var(--ot-white-color);
}
.header-lang-selected-lang::after {
  position: absolute;
  width: 4.5px;
  height: 2.5px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  clip-path: polygon(54% 100%, 0 0, 100% 1%);
  background: #3b3b3b;
}

.header-transparent {
  position: absolute;
  width: 100%;
  z-index: 20;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 99;
  visibility: visible;
  background: var(--ot-title-color);
  box-shadow: 0px 1px 3px 0px rgba(18, 20, 32, 0.14);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.ot-main-menu > nav > ul > li {
  position: relative;
  display: inline-block;
  padding: 26px 0;
}
.ot-main-menu > nav > ul > li:not(:last-child) {
  padding-right: 9px;
  margin-right: 9px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ot-main-menu > nav > ul > li:not(:last-child) {
    padding-right: 5px;
    margin-right: 5px;
  }
}
.ot-main-menu > nav > ul > li.has-dropdown {
  position: relative;
  padding-right: 15px;
}
.ot-main-menu > nav > ul > li.has-dropdown::after {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 50%;
  right: -3px;
  content: "";
  background-image: url(../img/icon/dropdown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}
.ot-main-menu > nav > ul > li > a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 4px;
  display: inline-block;
  text-transform: capitalize;
  color: #333333;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ot-main-menu > nav > ul > li > a::after {
  position: absolute;
  border-radius: 1px;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 1px;
  background: var(--ot-theme-color);
  transition: 0.3s;
}
.ot-main-menu > nav > ul > li > a:hover::after {
  width: 100%;
}
.ot-main-menu > nav > ul > li .submenu {
  position: absolute;
  width: 280px;
  z-index: 999;
  padding: 25px 0px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  text-align: left;
  margin-left: 0;
  transform-origin: top;
  transition-duration: 0.1s;
  backdrop-filter: blur(8px);
  background: var(--ot-white-color);
  box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
  -webkit-transform: perspective(300px) rotateX(-18deg);
  -moz-transform: perspective(300px) rotateX(-18deg);
  -ms-transform: perspective(300px) rotateX(-18deg);
  -o-transform: perspective(300px) rotateX(-18deg);
  transform: perspective(300px) rotateX(-18deg);
}
.ot-main-menu > nav > ul > li .submenu li {
  list-style: none;
  display: block;
  padding: 0 30px;
  position: relative;
}
.ot-main-menu > nav > ul > li .submenu li:not(:last-child) {
  margin-bottom: 18px;
}
.ot-main-menu > nav > ul > li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.ot-main-menu > nav > ul > li .submenu li a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 0 0;
  text-transform: capitalize;
  color: var(--ot-title-color);
}
.ot-main-menu > nav > ul > li .submenu li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  height: 2px;
  width: 0px;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
  background-color: var(--ot-title-color);
  transform: translateY(-50%);
}
.ot-main-menu > nav > ul > li .submenu li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.ot-main-menu > nav > ul > li .submenu li:hover > a {
  padding-left: 25px;
  color: var(--ot-title-color);
}
.ot-main-menu > nav > ul > li .submenu li:hover > a::before {
  width: 20px;
  visibility: visible;
  opacity: 1;
}
.ot-main-menu > nav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}
.ot-main-menu > nav > ul > li:hover.has-dropdown::after {
  filter: brightness(1) contrast(1);
}

.ot-menu-icon {
  font-size: 16px;
  margin-right: 5px;
}
.ot-menu-close i {
  line-height: 45px;
}

/*----------------------------------------*/
/*  4.2 Mobilemenu css
/*----------------------------------------*/
.ot-offcanvas-menu {
  margin-bottom: 40px;
}
.ot-offcanvas-menu ul {
  list-style: none;
}
.ot-offcanvas-menu ul li {
  position: relative;
}
.ot-offcanvas-menu ul li > a {
  padding: 8px 0;
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ot-black-color);
}
.ot-offcanvas-menu ul li > a i {
  display: none;
}
.ot-offcanvas-menu ul li:not(:last-child) > a {
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.ot-offcanvas-menu ul li.active > a {
  color: var(--ot-theme-color);
}
.ot-offcanvas-menu ul li.active > .ot-menu-close {
  color: var(--ot-white-color);
  background: var(--ot-black-color);
  border-color: var(--ot-black-color);
}
.ot-offcanvas-menu ul li.active > .ot-menu-close i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ot-offcanvas-menu ul li .ot-submenu {
  display: none;
  padding-left: 20px;
}
.ot-offcanvas-menu ul li .ot-mega-menu {
  display: none;
}

.ot-menu-close {
  position: absolute;
  right: 0;
  top: 6px;
  height: 30px;
  width: 30px;
  font-size: 12px;
  line-height: 29px;
  text-align: center;
  border: 1px solid rgba(1, 15, 28, 0.12);
}
.ot-menu-close i {
  transition: all 0.3s;
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.ot-footer-wrapp {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 53px;
  margin: 0;
}
@media (max-width: 1199px) {
  .ot-footer-wrapp {
    gap: 35px;
  }
}
@media (max-width: 991px) {
  .ot-footer-wrapp {
    flex-direction: column;
    align-items: center;
    text-align: start;
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .ot-footer-wrapp {
    align-items: start;
  }
}
.ot-footer-wrapp .footer-infobox {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 53px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .ot-footer-wrapp .footer-infobox {
    display: flex;
    justify-content: space-around;
    align-items: end;
    gap: 60px;
  }
}
@media (max-width: 575px) {
  .ot-footer-wrapp .footer-infobox {
    display: block;
  }
}
.ot-footer-wrapp .footer-map-box {
  position: relative;
  width: 331px;
}
@media (max-width: 991px) {
  .ot-footer-wrapp .footer-map-box {
    max-width: 600px;
    width: 100%;
  }
}
.ot-footer-wrapp .footer-map-box iframe {
  width: 331px;
  height: 248px;
  border: 0;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .ot-footer-wrapp .footer-map-box iframe {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ot-footer-wrapp .footer-map-box iframe {
    height: 240px;
  }
}
@media (max-width: 575px) {
  .ot-footer-wrapp .footer-map-box iframe {
    height: 210px;
  }
}
@media (max-width: 430px) {
  .ot-footer-wrapp .footer-map-box iframe {
    height: 190px;
  }
}
.ot-footer-wrapp .footer-map-box .map-card {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ot-white-color);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 209px;
  z-index: 10;
}
@media (max-width: 991px) {
  .ot-footer-wrapp .footer-map-box .map-card {
    left: 15px;
  }
}
@media (max-width: 768px) {
  .ot-footer-wrapp .footer-map-box .map-card {
    padding: 10px;
  }
}
.ot-footer-wrapp .footer-map-box .map-card h3 {
  font-size: 14px;
  margin: 0 0 4px 0;
  font-weight: 500;
  color: #333;
}
@media (max-width: 575px) {
  .ot-footer-wrapp .footer-map-box .map-card h3 {
    font-size: 12px;
  }
}
.ot-footer-wrapp .footer-map-box .map-card p {
  font-size: 8px;
  color: #555;
  line-height: 1;
  margin-bottom: 0;
}
.ot-footer-wrapp .footer-map-box .map-card a {
  font-size: 8px;
  color: var(--ot-theme-color);
}
.ot-footer-wrapp .footer-logo {
  width: 100%;
  margin-bottom: 10px;
}
.ot-footer-wrapp .footer-logo img {
  max-width: 100%;
}
@media (max-width: 991px) {
  .ot-footer-wrapp .footer-logo img {
    max-width: 210px;
  }
}
.ot-footer-wrapp .ot-sec-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #5c5c5c;
}
@media (max-width: 768px) {
  .ot-footer-wrapp .ot-sec-text {
    font-size: 15px;
  }
}
.ot-footer-wrapp .ot-sec-phone {
  font-weight: 500;
  font-size: 24px;
  color: #5c5c5c;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .ot-footer-wrapp .ot-sec-phone {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .ot-footer-wrapp .ot-sec-phone {
    font-size: 20px;
  }
}
.ot-footer-wrapp .ot-sec-title-hours {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: #5c5c5c;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .ot-footer-wrapp .ot-sec-title-hours {
    font-size: 17px;
  }
}
.ot-footer-wrapp .ot-sec-hours {
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: #5c5c5c;
  margin-bottom: 0;
}
.ot-footer-wrapp .ot-sec-hours span {
  display: block;
  margin-bottom: 0;
}
.ot-footer-copyright {
  background: #275ba8;
  color: var(--ot-white-color);
  text-align: center;
  padding: 20px;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
}

.copyright-paragraph {
  font-size: 12px;
  text-align: center;
}

.smoke-bg {
  background-color: var(--ot-smoke-color);
}

span.map-start {
  position: absolute;
  top: 14px;
  right: 16px;
}

/*----------------------------------------*/
/*  7.6 Hero css
/*----------------------------------------*/
.hero-bg-style {
  background: #f2f9ff;
  z-index: 1;
  border-bottom: 1px solid #c1c1c1;
}

.hero-shape {
  position: absolute;
  top: 67px;
  z-index: -1;
}
@media (max-width: 575px) {
  .hero-shape {
    top: 0;
  }
}
.hero-shape img {
  max-height: 389px;
}
@media (max-width: 575px) {
  .hero-shape img {
    width: 50%;
  }
}

.hero-content-box {
  min-height: 588px;
  padding-top: 130px;
  padding-bottom: 130px;
}
@media (max-width: 991px) {
  .hero-content-box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .hero-content-box {
    min-height: 545px;
  }
}

@media (max-width: 991px) {
  .hero-title-area {
    text-align: center;
  }
}

.hero-title {
  font-weight: 600;
  font-size: 35px;
  text-transform: capitalize;
  color: var(--ot-theme-color);
  margin-bottom: 30px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .hero-title {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
  }
}

.hero-text {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #424242;
  margin-bottom: 55px;
}
@media (max-width: 575px) {
  .hero-text {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  border-radius: 100px;
  padding: 16px 19px;
  color: var(--ot-white-color);
  box-shadow: inset 0 0 20px 0 #3759a3;
  background: linear-gradient(180deg, #134985 0%, #6b8bcf 100%);
  transition: 0.3s;
  transform: translateY(0);
}
@media (max-width: 575px) {
  .hero-btn {
    font-size: 13px;
    padding: 11px 14px;
  }
}
.hero-btn:hover {
  color: var(--ot-white-color);
  transform: translateY(-1.5px);
}
.hero-btn:focus {
  color: var(--ot-white-color);
}

.hero-black-title {
  color: #2f2f2f;
}

.hero-quality-box {
  display: flex;
  align-items: start;
}

.hero-note p {
  font-size: 30px;
  font-weight: 500;
  padding: 14px 51px;
  padding-left: 8px;
  border-radius: 5px 0 0 5px;
  text-transform: capitalize;
  color: var(--ot-white-color);
  display: inline-block;
  margin-bottom: 50px;
  background: linear-gradient(270deg, rgba(55, 89, 163, 0) 0%, #3759a3 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-note p {
    font-size: 24px;
    padding: 14px 9px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-note p {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .hero-note p {
    font-size: 15px;
    padding: 7px 20px;
    margin-bottom: 40px;
    padding-left: 8px;
  }
}

.hero-sup-text {
  font-size: 40px;
}
@media (max-width: 575px) {
  .hero-sup-text {
    font-size: 22px;
  }
}

.hero-offer-box {
  display: inline-block;
  padding: 18px 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 6px 0 rgba(201, 201, 201, 0.25);
  /*background: #3759a3;*/
  margin-left: 35px;
  border: 2px solid #3759a3;
}
@media (max-width: 575px) {
  .hero-offer-box {
    margin-left: 16px;
  }
}
.hero-offer-text {
  font-weight: 400;
  font-size: 16px;
  /*color: var(--ot-white-color);*/
  margin-bottom: 0;
  line-height: 1;
  font-family: var(--ot-roboto-style);
}
@media (max-width: 575px) {
  .hero-offer-text {
    font-size: 12px;
  }
}
.hero-offer-title {
  font-weight: 500;
  font-size: 25px;
  line-height: 1;
  padding: 10px 0px;
  /*color: var(--ot-white-color);*/
  margin-bottom: -8px;
  font-family: var(--ot-roboto-style);
}

.hero-offer-font {
  font-size: 18px;
}


@media (max-width: 575px) {
  .hero-offer-title {
    font-size: 23px;
  }
}
.hero-offer-by {
  position: relative;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  /*color: var(--ot-white-color);*/
  font-family: var(--ot-roboto-style);
  margin-bottom: -8px;
}
@media (max-width: 575px) {
  .hero-offer-by {
    font-size: 9px;
  }
}
.hero-offer-by::before, .hero-offer-by::after {
  position: absolute;
  width: 33%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  background: #3759a3;
  border-radius: 1px;
}
.hero-offer-by::after {
  left: auto;
  right: 0;
}
.hero-offer-value {
  font-weight: 500;
  font-size: 35px;
  line-height: 1;
  /*color: var(--ot-white-color);*/
  font-family: var(--ot-roboto-style);
}
@media (max-width: 575px) {
  .hero-offer-value {
    font-size: 32px;
  }
}

.hero-home-style {
  padding-top: 144px;
  padding-bottom: 194px;
}
@media (max-width: 991px) {
  .hero-home-style {
    padding-top: 35px;
    padding-bottom: 300px;
  }
}
@media (max-width: 575px) {
  .hero-home-style {
    padding-bottom: 200px;
  }
}
.hero-home-style .hero-content-box {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-home-style .hero-quality-box {
  margin-top: -7.5rem;
}
.hero-home-style .hero-text {
  margin-bottom: 10px;
}
.hero-home-style .hero-title {
  color: var(--ot-title-color);
}
.hero-home-style .hero-title.theme-text {
  color: var(--ot-theme-color);
}


.hero-images-wrapp {
  margin-top: -100px;
}
@media (max-width: 991px) {
  .hero-images-wrapp {
    margin-top: 0;
    margin-bottom: 143px;
    justify-content: center;
  }
}

.hero-image {
  position: relative;
  width: 199px;
  height: 296px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .hero-image {
    width: 126px;
    height: 187px;
  }
}
.hero-image::before {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 119px 0 0 119px;
  width: 199px;
  height: 234px;
  content: "";
  background: #8cb9e8;
  z-index: -1;
}
@media (max-width: 575px) {
  .hero-image::before {
    width: 126px;
    height: 148px;
    border-radius: 75px 0 0 75px;
  }
}
.hero-image img {
  border-radius: 100px 36px 0 119px;
}
@media (max-width: 575px) {
  .hero-image img {
    border-radius: 60px 22px 0 75px;
  }
}
.hero-image.after-style {
  border-radius: 203px 203px 135px 135px;
  width: 251px;
  height: 273px;
  margin-top: 10rem;
}
@media (max-width: 575px) {
  .hero-image.after-style {
    width: 159px;
    height: auto;
  }
}
.hero-image.after-style::before {
  width: 253px;
  height: 284px;
  border-radius: 119px 0 100px 119px;
}
@media (max-width: 575px) {
  .hero-image.after-style::before {
    border-radius: 86px 0 86px 86px;
    width: 160px;
    height: 155px;
    bottom: 10px;
  }
}
.hero-image.after-style > img {
  border-radius: 203px 203px 135px 135px;
  margin-top: -100px;
}
@media (max-width: 575px) {
  .hero-image.after-style > img {
    width: 159px;
    height: 237px;
    border-radius: 85px 85px 86px 86px;
  }
}
.hero-image.after-style .hreo-arrow-box {
  top: auto;
  left: auto;
  bottom: 82px;
  right: 100%;
}
@media (max-width: 575px) {
  .hero-image.after-style .hreo-arrow-box {
    bottom: 53px;
  }
}

.hreo-arrow-box {
  gap: 6px;
  position: absolute;
  top: 0;
  left: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hreo-arrow-box {
    top: 22px;
    left: 86%;
  }
}
@media (max-width: 575px) {
  .hreo-arrow-box {
    top: 10px;
    left: 89%;
  }
}

.hero-arrow-text {
  font-weight: 500;
  font-size: 13px;
  color: #0f4782;
  padding: 5px 23px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  background: #E8EFF5;
}

.hero-video-style {
  position: relative;
  min-height: 706px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-video-style {
    min-height: 600px;
  }
}
@media (max-width: 575px) {
  .hero-video-style {
    min-height: 550px;
  }
}
.hero-video-style .hero-title,
.hero-video-style .hero-text {
  color: var(--ot-white-color);
}
.hero-video-style .hero-quality-box {
  margin-top: 40px;
}
.hero-video-style .hero-note p {
  color: var(--ot-white-color);
  padding: 14px 100px;
  padding-left: 8px;
  border: 1px solid var(--ot-white-color);
  background: none;
  border-radius: 5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-video-style .hero-note p {
    padding: 14px 60px;
    padding-left: 8px;
  }
}
@media (max-width: 575px) {
  .hero-video-style .hero-note p {
    padding: 14px 45px;
    padding-left: 8px;
  }
}
.hero-video-style .hero-btn {
  color: var(--ot-white-color);
  box-shadow: none;
  background: none;
  border: 1px solid var(--ot-white-color);
  box-shadow: none;
}
.hero-home-style .hero-offer-box {
  background: none;
  height: 160px;
  border: 1px solid var(--ot-white-color);
}

.inner-wrapper .hero-offer-box{
    height: 160px;
}

.hero-video-style .hero-home-style {
  position: relative;
  gap: 95px;
  padding-top: 220px;
  padding-bottom: 235px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .hero-video-style .hero-home-style {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .hero-video-style .hero-home-style {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .hero-video-style .hero-home-style {
    padding-top: 35px;
    padding-bottom: 300px;
  }
}
@media (max-width: 575px) {
  .hero-video-style .hero-home-style {
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-video-style .hero-home-style {
    padding-bottom: 170px;
  }
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-video-btn {
  margin-top: 95px;
}
@media (max-width: 575px) {
  .hero-video-btn {
    margin-top: 70px;
  }
}

.video-btn {
  position: relative;
  width: 95px;
  height: 95px;
  line-height: 127px;
  text-align: center;
  border-radius: 100%;
  background: var(--ot-white-color);
  display: inline-block;
}
.video-btn img {
  line-height: 95px;
  text-align: center;
}
.video-btn::before, .video-btn::after {
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  width: 80%;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 253, 0.45);
  animation: borderanimate2 2s linear infinite;
  z-index: -1;
}
.video-btn::after {
  height: 75%;
  width: 75%;
  background-color: rgba(211, 211, 211, 0.4);
  animation: borderanimate2 3s linear infinite;
}

.sound-toggle {
  display: none;
}

.sound-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(55, 89, 163, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  z-index: 99;
}
.sound-icon::before {
  content: "🔊";
}

.sound-toggle:not(:checked) + .sound-icon::before {
  content: "🔇";
}

@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
/*----------------------------------------*/
/*  7.1 About css
/*----------------------------------------*/
.about-space {
  padding-top: 95px;
  padding-bottom: 50px;
}

.about-wrapp1 {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (min-width: 0) and (max-width: 1199px) {
  .about-wrapp1 {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 1599px) {
  .about-wrapp1.implant-style {
    gap: 50px;
  }
}

.about-imgbox {
  flex: 0 0 auto;
}
@media (min-width: 0) and (max-width: 1199px) {
  .about-imgbox {
    width: 100%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-imgbox.style1 {
    max-width: 63%;
  }
}

.about-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-content-box .sec-text {
  margin-bottom: 16px;
}

.about-landing-style.about-space {
  padding-top: 110px;
  padding-bottom: 110px;
}
@media (max-width: 1199px) {
  .about-landing-style.about-space {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .about-landing-style.about-space {
    padding-top: 50px;
  }
}
.about-landing-style .sec-title {
  color: var(--ot-title-color);
  line-height: 1.6;
  margin-bottom: 25px;
}
.about-landing-style .about-wrapp1 {
  gap: 90px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-landing-style .about-wrapp1 {
    gap: 60px;
  }
}
@media (max-width: 1199px) {
  .about-landing-style .about-wrapp1 {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .about-landing-style .about-wrapp1 {
    gap: 20px;
  }
}
.about-landing-style .about-imgbox {
  width: 55%;
}
@media (max-width: 1599px) {
  .about-landing-style .about-imgbox {
    width: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-landing-style .about-imgbox {
    text-align: center;
    margin: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-landing-style .about-imgbox {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .about-landing-style .about-imgbox {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.about-landing-style .about-img {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
@media (max-width: 1199px) {
  .about-landing-style .about-img {
    max-width: 100%;
  }
}
.about-landing-style .about-img img {
  object-fit: cover;
  border-radius: 0;
}
.about-landing-style .about-img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background: #c2d3ec;
  transform: rotate(-6deg);
  z-index: -1;
}
@media (max-width: 575px) {
  .about-landing-style .about-img::before {
    width: 100%;
    height: 100%;
  }
}

.about-shape1-1 {
  position: absolute;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .about-shape1-1 {
    top: -15px;
    right: -100px;
    transform: scale(0.6);
  }
}

.feature-list {
  list-style: none;
}
.feature-list ul {
  list-style: none;
}
.feature-list.letter-style {
  list-style-type: lower-alpha;
  margin: 0;
  padding-left: 3.25rem;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .feature-list.letter-style {
    padding-left: 24px;
  }
}
.feature-list.letter-style > .feature-list-item {
  font-weight: 400;
  padding-left: 0;
  line-height: 1.4;
}
.feature-list.letter-style > .feature-list-item:not(:last-child) {
  margin-bottom: 28px;
}
.feature-list-box > .sec-text {
  margin-bottom: 12px;
}
.feature-list.dot-style .feature-list-item::before {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 10px;
  left: 5px;
  content: "";
  background: #424242;
  border-radius: 100px;
}
.feature-list.dot-style .feature-list-item:not(:last-child) {
  margin-bottom: 6px;
}
.feature-list.subtract-style .feature-list-item::before {
  position: absolute;
  width: 8px;
  height: 1.5px;
  top: 12px;
  left: 5px;
  content: "";
  background: #424242;
  border-radius: 100px;
}
.feature-list.subtract-style .feature-list-item:not(:last-child) {
  margin-bottom: 6px;
}
.feature-list.numeric-style .feature-list-item {
  font-weight: 400;
  list-style: decimal;
  margin-left: 22px;
  padding-left: 3px;
}

.feature-list-item {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 24px;
}
.feature-list-item:not(:last-child) {
  margin-bottom: 20px;
}

.feature-list-icon {
  position: absolute;
  top: 3px;
  left: 0;
}

.feature-procedure-box {
  margin-top: 36px;
}
@media (max-width: 1599px) {
  .feature-procedure-box .sec-text {
    max-width: 898px;
  }
}
.feature-procedure-box:last-child .sec-text {
  margin-bottom: 0;
}
@media (max-width: 1599px) {
  .feature-procedure-box:last-child .sec-text {
    max-width: 850px;
  }
}

.smoke-bg3 {
  background: var(--ot-smoke-color3);
}

.about-in-dentures-subtitle {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 22px;
  color: #2f2f2f;
}

.teeth-about-titlebox {
  margin-top: 60px;
}
.teeth-about-titlebox .sec-title {
  margin-bottom: 10px;
  line-height: 1.4;
}
.teeth-about-titlebox .sec-text {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-note-area .note-wrapp {
  text-align: start;
  margin-top: 30px;
  position: relative;
}
.about-note-area .note-wrapp .schedule {
  color: var(--ot-theme-color);
}
.about-note-area .note-wrapp .note-icon {
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
  color: #262626;
  margin-bottom: 15px;
}
.about-note-area .note-wrapp .note-icon.justify-content-center {
  display: flex;
  justify-content: center;
}
.about-note-area .note-wrapp .sec-text {
  font-weight: 400;
  font-size: 18px;
  color: #151515;
}
.about-note-area .note-wrapp .about-shape {
  position: absolute;
  right: 20px;
  top: 0;
}
.about-note-area .note-wrapp .about-shape img {
  width: 120px;
}
.about-note-area .note-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.about-in-dentures-content {
  margin-bottom: 25px;
}

/*----------------------------------------*/
/*  7.1 brand css
/*----------------------------------------*/
.brand-space {
  margin-top: -74px;
}
@media (max-width: 767px) {
  .brand-space {
    margin-top: -110px;
  }
}
@media (max-width: 575px) {
  .brand-space {
    margin-top: -170px;
  }
}

.brand-wrapp {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background: var(--ot-white-color);
  position: relative;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0 4px 32px 0 rgba(144, 144, 144, 0.25);
}
@media (min-width: 0) and (max-width: 991px) {
  .brand-wrapp {
    flex-direction: column;
  }
}

.brand-funfact-box {
  width: 50%;
  padding: 28px;
  padding-right: 100px;
  padding-left: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 0) and (max-width: 1599px) {
  .brand-funfact-box {
    padding-right: 80px;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .brand-funfact-box {
    width: 85%;
    padding-right: 40px;
    padding-left: 20px;
  }
}
@media (min-width: 0) and (max-width: 991px) {
  .brand-funfact-box {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .brand-funfact-box {
    padding-top: 11px;
    padding-bottom: 3px;
  }
}
.brand-funfact-box::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background: #f5f5f5;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
@media (min-width: 0) and (max-width: 991px) {
  .brand-funfact-box::before {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}

.brand-funfact-title {
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  color: var(--ot-theme-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .brand-funfact-title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .brand-funfact-title {
    font-size: 20px;
  }
}

.brand-funfact-text {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #272727;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .brand-funfact-text {
    font-size: 10px;
  }
}

.brand-content {
  max-width: 560px;
  padding-right: 37px;
  width: 100%;
}
@media (min-width: 0) and (max-width: 991px) {
  .brand-content {
    max-width: 100%;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .brand-content {
    padding: 9px 20px;
  }
}

.brand-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .brand-content {
    gap: 30px;
  }
}

/*----------------------------------------*/
/*  7.3 Faq css
/*----------------------------------------*/
.faq-area {
  margin-top: 60px;
}

.faq-title {
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  text-transform: capitalize;
  color: #3759a3;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #efefef;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  min-height: 55px;
  transition: 0.3s;
  line-height: 50px;
}
.faq-item h4 {
  font-weight: 500;
  font-size: 16px;
  color: #383838;
  margin: 0;
  line-height: inherit;
}
.faq-item:hover {
  transform: translateY(-2px);
}
.faq-item.active {
  min-height: auto;
}
.faq-item.active .faq-question {
  background: #3759a3;
}
.faq-item.active h4 {
  color: #e6e6e6;
}
.faq-item.active .faq-icon {
  transform: rotate(90deg);
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0;
  background: #3759a3;
}
@media (max-width: 768px) {
  .faq-item.active .faq-answer {
    padding: 20px 0;
  }
}
.faq-item.active .faq-answer p {
  color: #e6e6e6;
}
.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

.faq-question {
  background: #e6e6e6;
  color: white;
  padding: 15px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.5s ease;
  user-select: none;
  line-height: normal;
}
.faq-question:hover {
  background: #d6d6d6;
}
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
}

.faq-icon {
  position: relative;
  width: 35px;
  height: 35px;
  line-height: 45px;
  text-align: center;
  background: var(--ot-smoke-color);
  border-radius: 5px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: background 0.5s ease;
}
.faq-answer .faq-answer-content {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .faq-answer .faq-answer-content {
    padding: 0 20px;
  }
}
.faq-answer p {
  line-height: 1.8;
  font-size: 14px;
  color: #fff;
}

/*----------------------------------------*/
/*  7.14 teeth css
/*----------------------------------------*/
.teeth-feature-wrapp1 {
  gap: 50px;
  justify-content: space-between;
}

.teeth-feature-list {
  margin-bottom: 10px;
}
.teeth-feature-list ul {
  list-style: none;
}
.teeth-feature-list ul li {
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.teeth-feature-list ul li:not(:last-child) {
  margin-bottom: 11px;
}

.teeth-feature-icon {
  position: absolute;
  top: 4px;
  left: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .teeth-feature-content {
    max-width: 595px;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .teeth-feature-content {
    max-width: 100%;
  }
}
.teeth-feature-content .sec-text:not(:last-child) {
  margin-bottom: 0;
}

.teeth-feature-imgbox {
  flex: 0 0 auto;
}

.teeth-feature-img img {
  width: 100%;
}

.choose-bg-style {
  background-color: #F2F9FF;
  padding: 80px 0;
  margin: 40px 0;
}
@media (max-width: 1199px) {
  .choose-bg-style {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .choose-bg-style {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .choose-bg-style {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .choose-bg-style {
    padding: 35px 0;
  }
}
.choose-bg-style .teeth-feature-note {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  color: #424242;
  line-height: 1.6;
  max-width: 600px;
}
@media (max-width: 991px) {
  .choose-bg-style .teeth-feature-note {
    margin-top: 18px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .choose-bg-style .teeth-feature-note {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
  }
}
@media (max-width: 575px) {
  .choose-bg-style .teeth-feature-note {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.8;
  }
}
.choose-bg-style .teeth-note-content {
  background: #FFF7E7;
  padding: 20px;
  border-left: 5px solid #eeb02a;
  border-right: 5px solid #eeb02a;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .choose-bg-style .teeth-note-content {
    padding: 18px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .choose-bg-style .teeth-note-content {
    padding: 16px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .choose-bg-style .teeth-note-content {
    padding: 14px 12px;
    border-left-width: 3px;
    border-right-width: 3px;
    border-radius: 6px;
  }
}
.choose-bg-style .teeth-note-content p {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #232323;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .choose-bg-style .teeth-note-content p {
    font-size: 17px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .choose-bg-style .teeth-note-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 575px) {
  .choose-bg-style .teeth-note-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

.why-choose-us .margin-top-10 {
  margin-top: 10px;
}
.why-choose-us .choose-us-note h4 {
  font-size: 28px;
  text-transform: capitalize;
  color: #3759a3;
}
.why-choose-us .choose-us-note p {
  font-size: 16px;
  margin-top: 15px;
}

.teeth-choose-wrapp1 {
  gap: 35px;
}

/*----------------------------------------*/
/*  7.1 Table css
/*----------------------------------------*/
.table-container {
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 12px;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #d9d9d9;
  border-radius: 12px;
}
.table-container table thead th {
  background-color: #4a5f9d;
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  border-right: 1px solid #5a6fad;
}
.table-container table thead th:first-child {
  border-top-left-radius: 12px;
}
.table-container table thead th:last-child {
  border-right: none;
  border-top-right-radius: 12px;
}
.table-container table tbody td {
  padding: 16px 20px;
  border-right: 1px solid #e0e0e0;
  font-size: 15px;
  color: #333;
}
.table-container table tbody td:first-child {
  font-weight: 600;
  color: #222;
}
.table-container table tbody td:last-child {
  border-right: none;
}
.table-container table tbody tr:last-child td {
  border-bottom: none;
}
.table-container table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.table-container table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}
.table-container table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

@media (max-width: 768px) {
  .table-container table thead th {
    padding: 12px 15px;
    font-size: 16px;
  }
  .table-container table tbody td {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.cost-comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  background: #f8fafc;
}
.cost-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid var(--ot-white-color);
}
.cost-comparison-table thead {
  background: var(--ot-theme-color);
  color: #f9fafb;
}
.cost-comparison-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(148, 163, 184, 0.4);
}
.cost-comparison-table thead th:last-child {
  border-right: none;
}
.cost-comparison-table tbody {
  background: #ffffff;
  border: 1px solid #d3d3d3;
}
.cost-comparison-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}
.cost-comparison-table tbody tr:last-child {
  border-bottom: none;
}
.cost-comparison-table tbody tr td {
  font-weight: 400;
  padding: 14px 16px;
  vertical-align: middle;
  color: #2f2f2f;
  border-right: 1px solid #e2e8f0;
}
.cost-comparison-table tbody tr td:last-child {
  border-right: none;
}
.cost-comparison-table tbody tr:nth-child(2n+2) {
  background: #f0f0f0;
}
.cost-comparison-table .col-option {
  width: 22%;
}
.cost-comparison-table .col-replacements {
  width: 26%;
}
.cost-comparison-table .col-maintenance {
  width: 22%;
}
.cost-comparison-table .col-cost {
  width: 30%;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cost-comparison thead th,
  .cost-comparison tbody td {
    padding: 12px 15px;
    font-size: 14px;
  }
  .cost-comparison thead th {
    font-size: 16px;
  }
}

.table-note-area .table-note-content {
  background: #FFF7E7;
  padding: 20px;
  border-left: 5px solid #eeb02a;
  border-right: 5px solid #eeb02a;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .table-note-area .table-note-content {
    padding: 18px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .table-note-area .table-note-content {
    padding: 16px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .table-note-area .table-note-content {
    padding: 14px 12px;
    border-left-width: 3px;
    border-right-width: 3px;
    border-radius: 6px;
  }
}
.table-note-area .table-note-content p {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #232323;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .table-note-area .table-note-content p {
    font-size: 17px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .table-note-area .table-note-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 575px) {
  .table-note-area .table-note-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/*----------------------------------------*/
/*  7.1 Snap css
/*----------------------------------------*/
@media (max-width: 1199px) {
  .snap-wrapp {
    gap: 50px;
  }
}

.snap-in-dentures-content {
  flex: 1;
}
.snap-in-dentures-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--ot-theme-color);
  margin-bottom: 24px;
  line-height: 1.2;
}
.snap-in-dentures-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--ot-title-color);
  margin-bottom: 20px;
  line-height: 1.5;
}
.snap-in-dentures-intro {
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.snap-in-dentures-list .teeth-feature-list ul {
  display: grid;
  grid-template-columns: auto auto;
  padding-left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .snap-in-dentures-list .teeth-feature-list ul {
    grid-template-columns: auto;
  }
}
.snap-in-dentures-footer {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 24px;
}
.snap-in-dentures-image img {
  width: 100%;
}

/*----------------------------------------*/
/*  7.1 Transforming Smiles css
/*----------------------------------------*/
.transforming-smiles-titles {
  max-width: 655px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: auto;
  margin-bottom: 40px;
}
.transforming-smiles-titles .sec-title {
  line-height: 1.5;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .transforming-smiles-titles {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .transforming-smiles-titles {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .transforming-smiles-titles {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .transforming-smiles-titles {
    margin-bottom: 20px;
  }
}
.transforming-smiles-card {
  width: 397px;
  border-radius: 0 0 5px 5px;
}
.transforming-smiles-bottom {
  display: flex;
  padding: 0;
  justify-content: space-between;
  background: var(--ot-white-color);
  border-radius: 0 0 5px 5px;
}
.transforming-smiles-img {
  line-height: 1;
}
.transforming-smiles-img img {
  border-radius: 10px 10px 0 0;
}
.transforming-smiles-text {
  font-size: 18px;
  font-weight: 500;
  color: #2f2f2f;
  padding: 10px 70px;
}
.transforming-smiles-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.smoke-bg2 {
  background: var(--ot-smoke-color2);
}

.slider-container {
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: 0.5s ease-in-out;
}

.transforming-smiles-card {
  min-width: calc(33.333% - 20px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.transforming-smiles-img img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.transforming-smiles-bottom {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.transforming-smiles-text {
  font-size: 18px;
  padding: 10px 20px;
  font-weight: 500;
  color: #222;
}

/* Pagination */
.pagination-dots {
  margin-top: 53px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination-dots button {
  width: 34px;
  height: 12px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 1px;
  background: #d9d9d9;
}
.pagination-dots button.active {
  background: var(--ot-theme-color);
}

/* Responsive */
@media (max-width: 991px) {
  .transforming-smiles-card {
    min-width: calc(50% - 20px);
  }
}
* {
  box-sizing: border-box;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 24px auto;
  overflow: hidden;
  border-radius: 12px;
  background: #0b1220;
}

.slider-track {
  display: flex;
  gap: 0;
  will-change: transform;
  transition: transform 400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/*----------------------------------------*/
/*  7.1 Priceing css
/*----------------------------------------*/
.pricing-wrapp {
  gap: 21px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .pricing-wrapp {
    margin-bottom: 20px;
  }
}
.pricing-card {
  position: relative;
  width: 401px;
  padding: 40px 34px;
  padding-bottom: 60px;
  border: 1px solid #d0d0d0;
  border-top: 13px solid var(--ot-theme-color);
  border-radius: 10px;
  box-shadow: 0 4px 16px 0 rgba(198, 231, 255, 0.25);
}
@media (max-width: 991px) {
  .pricing-card {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .pricing-card:not(:last-child) {
    margin-bottom: 20px;
  }
}
.pricing-card-shape {
  position: absolute;
  right: 15px;
  bottom: 22px;
}
.pricing-title-area {
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .pricing-title-area {
    margin-bottom: 15px;
  }
}
.pricing-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--ot-theme-color);
  margin-bottom: 25px;
  text-align: center;
}
.pricing-value-box {
  padding: 11px 34px;
  background: #f1f8fe;
  display: inline-block;
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
}
.pricing-value {
  font-weight: 600;
  font-size: 18px;
  color: var(--ot-theme-color);
  text-transform: capitalize;
  margin-bottom: 0;
}
.pricing-discount {
  position: relative;
  font-weight: 400;
  color: #e80b0b;
}
.pricing-discount::after {
  position: absolute;
  width: 81%;
  height: 1px;
  top: 12px;
  left: 0;
  content: "";
  background: #e80b0b;
}
.pricing-text-box {
  text-align: center;
  margin: auto;
}
.pricing-text-box .sec-text {
  font-weight: 400;
  font-size: 20px;
  color: #464646;
  text-align: start;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .pricing-text-box .sec-text {
    max-width: 1174px;
  }
}
@media (max-width: 991px) {
  .pricing-text-box .sec-text {
    margin-bottom: 20px;
  }
}
.pricing-offer-box {
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  background: #5c79b5;
  border: 3px solid var(--ot-theme-color2);
  margin: auto;
  margin-bottom: 45px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .pricing-offer-box {
    max-width: 967px;
  }
}
@media (max-width: 991px) {
  .pricing-offer-box {
    margin-bottom: 30px;
  }
}
.pricing-offer-text {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--ot-white-color);
  margin-bottom: 0;
  line-height: 1.5;
}
.pricing-offer-text span {
  font-weight: 700;
  color: var(--ot-theme-color2);
}
.pricing-offer-text span.regular-text {
  font-weight: 400;
  font-size: 14px;
  color: var(--ot-white-color);
}
.pricing-hero-style {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 575px) {
  .pricing-hero-style {
    gap: 15px;
  }
}
.pricing-hero-style .hero-offer-box {
  margin-left: 0;
}
.pricing-hero-style .sec-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  text-transform: capitalize;
  color: #2f2f2f;
  max-width: 952px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .pricing-hero-style .sec-text {
    font-size: 12px;
  }
}

/*----------------------------------------*/
/*  7.1 Testimonial css
/*----------------------------------------*/
.testimonial-title-area {
  margin-bottom: 44px;
}
@media (max-width: 575px) {
  .testimonial-title-area {
    margin-bottom: 35px;
  }
}
.testimonial-card {
  width: 601px;
  padding: 25px 30px;
  padding-bottom: 20px;
  border-radius: 10px;
  background: #fcfcfc;
  box-shadow: 0 4px 36px 0 rgba(114, 114, 114, 0.25);
}
.testimonial-qoutebox {
  margin-bottom: 25px;
}
.testimonial-content {
  margin-bottom: 25px;
}
.testimonial-content .sec-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #3d3d3d;
}
@media (max-width: 575px) {
  .testimonial-content .sec-text {
    font-weight: 400;
    font-size: 11px;
  }
}
.testimonial-userbox {
  gap: 20px;
}
.testimonial-user-avater img {
  border: 1px solid #D4D4D4;
  border-radius: 100%;
  padding: 7px;
}
.testimonial-user-name {
  font-weight: 500;
  font-size: 22px;
  color: #333;
}
.testimonial-user-designation {
  font-weight: 400;
  font-size: 15px;
  color: #7b7b7b;
  margin-bottom: 0;
}
.testimonial-shape-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.testimonial-shape-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.testimonial-arrow-style {
  margin-top: 60px;
  gap: 13px;
}
@media (max-width: 575px) {
  .testimonial-arrow-style {
    margin-top: 39px;
  }
}

/*----------------------------------------*/
/*  7.14 team css
/*----------------------------------------*/
.team-space {
  padding-top: 180px;
  padding-bottom: 70px;
}
@media (max-width: 1399px) {
  .team-space {
    padding-top: 80px;
  }
}

.team-card {
  display: flex;
  gap: 45px;
  margin-bottom: 50px;
}

.team-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.tema-imgbox {
  flex: 0 0 auto;
}

.sec-title {
  line-height: 1.3;
}

@media (min-width: 0) and (max-width: 991px) {
  .team-card {
    flex-direction: column;
  }
  .d-flex.flex-revers {
    flex-direction: column;
  }
}
/*----------------------------------------*/
/*  7.1 affordable css
/*----------------------------------------*/
.feature-space {
  padding-top: 60px;
  padding-bottom: 60px;
}

.affordable-space {
  padding-top: 170px;
}
@media (max-width: 1599px) {
  .affordable-space {
    padding-top: 100px;
  }
}
@media (max-width: 1399px) {
  .affordable-space {
    padding-top: 80px;
  }
}

.affordable-wrapper .sec-text {
  margin-bottom: 20px;
}
.affordable-wrapper .affordable-title {
  font-weight: 600;
  font-size: 20px;
  color: #3759a3;
}
.affordable-wrapper .affordable-content {
  border-radius: 10px;
  padding: 20px 20px 5px 20px;
  background: #f0f0f0;
  margin-bottom: 20px;
}
.affordable-wrapper .schedule {
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #073bac;
}
.affordable-wrapper .feature-wrapp {
  margin-bottom: 60px;
}

.note-wrapp.affordable-note {
  padding: 0 50px;
  margin-top: 0;
}

/*----------------------------------------*/
/*  7.1 appointment css
/*----------------------------------------*/
.appointment-space {
  padding-top: 120px;
  padding-bottom: 70px;
}
@media (max-width: 1399px) {
  .appointment-space {
    padding-top: 80px;
  }
}

.appointment-form-wrapp .check-info {
  display: block;
  font-size: 13px;
  margin-top: 15px;
  line-height: 1.5;
}
.appointment-form-wrapp .check-info input {
  margin-right: 6px;
}

.form-sec-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.consultation-form {
  padding: 50px 40px 30px 40px;
  background: #e9f2fa;
  border-radius: 20px;
}

.appointment-input {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .appointment-input {
    flex-direction: column;
  }
}
.appointment-input input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-label {
  font-weight: 700;
  margin: 10px 0 5px;
}

.message-box {
  width: 100%;
  height: 120px;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 12px;
  margin-top: 15px;
  font-size: 15px;
}

.built-info {
  text-align: center;
  color: #d90707;
  font-weight: 500;
  margin-top: 15px;
  font-size: 18px;
}

.appointment-options {
  margin-bottom: 15px;
}
.appointment-options .option-item {
  margin-right: 5px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}
.appointment-options .option-item input {
  margin-right: 5px;
}

.send-btn {
  margin-top: 20px;
  padding: 12px 30px;
  background: #2c4b87;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

/*----------------------------------------*/
/*  7.1 Smile Gallery css
/*----------------------------------------*/
.smile-gallery-item {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}
.smile-gallery-item .slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  margin: 0;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
}
.smile-gallery-item .slider:focus, .smile-gallery-item .slider:active {
  border: none;
  outline: none;
}
.smile-gallery-item .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid #fff;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}
.smile-gallery-item .slider::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}

.comparison {
  width: 100%;
  height: 285px;
  overflow: hidden;
  position: relative;
}
.comparison figure {
  position: absolute;
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.comparison .divisor {
  background-size: cover;
  position: absolute;
  width: 50%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 100%;
}
.comparison .divisor::before, .comparison .divisor::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 25px);
  background: white;
  z-index: 3;
}
.comparison .divisor::before {
  top: 0;
  box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}
.comparison .divisor::after {
  bottom: 0;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}
.comparison .handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.comparison .handle::before, .comparison .handle::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
.comparison .handle::before {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}
.comparison .handle::after {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

/* Row setup */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px; /* gutter compensation */
  margin-right: -10px;
}
.row.justify-content-center {
  display: flex;
  justify-content: center;
}

[class*=col-] {
  padding-left: 10px; /* gutter */
  padding-right: 10px;
  box-sizing: border-box;
}

/* Default: col-12 (full width) */
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
/* Large devices (≥992px) */
@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
  }
}
/*----------------------------------------*/
/*  7.1 implant css
/*----------------------------------------*/
.implant-4-box {
  gap: 40px;
}
@media (max-width: 991px) {
  .implant-4-box {
    display: flex;
    flex-direction: column-reverse;
  }
}
.implant-4-box:not(:first-child) {
  gap: 50px;
  justify-content: space-between;
}

.implant-list-box .feature-list-item {
  font-weight: 400;
}

.implant-textbox {
  margin-bottom: 20px;
}
@media (max-width: 1599px) {
  .implant-textbox {
    max-width: 702px;
  }
}

.implant-thumb {
  flex: 0 0 auto;
}
@media (max-width: 991px) {
  .implant-thumb {
    text-align: center;
  }
}

.implant-table .cost-comparison-table {
  border: 0;
}
.implant-table .cost-comparison-table tbody {
  border: 0;
}
.implant-table .cost-comparison-table tbody tr {
  border-bottom: 1px solid rgba(217, 217, 217, 0.85);
}
.implant-table .cost-comparison-table tbody tr td {
  padding: 14px 33px;
  border-right: 1px solid rgba(217, 217, 217, 0.85);
}
@media (max-width: 575px) {
  .implant-table .cost-comparison-table tbody tr td {
    padding: 14px;
  }
}
.implant-table .cost-comparison-table thead th {
  padding: 14px 33px;
}
@media (max-width: 575px) {
  .implant-table .cost-comparison-table thead th {
    padding: 14px;
  }
}

/*----------------------------------------*/
/*  7.1 Note css
/*----------------------------------------*/
.note-space {
  margin-top: 60px;
  margin-bottom: 40px;
}

.note-wrapp {
  border-radius: 10px;
  padding: 24px 110px;
  background-color: #e8f3ff;
  text-align: center;
}
@media (max-width: 1199px) {
  .note-wrapp {
    padding: 20px 28px;
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .note-wrapp {
    padding: 18px 24px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .note-wrapp {
    padding: 16px 20px;
    margin-top: 35px;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .note-wrapp {
    padding: 14px 16px;
    margin-top: 30px;
    border-radius: 6px;
  }
}
.note-wrapp .sec-text {
  font-weight: 400;
  font-size: 15px;
}
@media (max-width: 767px) {
  .note-wrapp .sec-text {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .note-wrapp .sec-text {
    font-size: 13px;
  }
}
.note-wrapp.implant-style {
  padding: 24px 100px;
}
@media (max-width: 1199px) {
  .note-wrapp.implant-style {
    padding: 24px 30px;
  }
}
@media (max-width: 767px) {
  .note-wrapp.implant-style {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .note-wrapp.implant-style {
    padding: 14px 16px;
  }
}

.note-title {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  color: #151515;
  margin-bottom: 10px;
}

.note-link {
  font-size: 15px;
  font-weight: 600;
  color: #151515;
  text-decoration: underline;
  font-style: italic;
}
@media (max-width: 767px) {
  .note-link {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .note-link {
    font-size: 13px;
  }
}

/*----------------------------------------*/
/*  7.1 Note css
/*----------------------------------------*/
@media (max-width: 1599px) {
  .metal-content-box {
    max-width: 1180px;
  }
}
.metal-content-box:not(:last-child) {
  margin-bottom: 35px;
}
.metal-idea-title {
  font-weight: 600;
  margin-bottom: 15px;
}
.metal-list-box .feature-list-item {
  font-size: 16px;
  font-weight: 400;
}
.metal-table-box .cost-comparison-table .col-option {
  width: 2.5%;
}
.metal-table-box2 .cost-comparison-table {
  border: 0;
}
.metal-table-box2 .cost-comparison-table .col-option {
  width: 40%;
}
.metal-table-box2 .cost-comparison-table .col-replacements {
  width: 38%;
}
.metal-table-box2 .cost-comparison-table tbody {
  border: 0;
}
.metal-note-style {
  padding: 24px 50px;
}
.metal-note-style .sec-text {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
}
.metal-note-style .note-link {
  font-size: 20px;
  margin-right: 10px;
}

/*----------------------------------------*/
/*  7.3 choose css
/*----------------------------------------*/
.choose-number {
  font-size: 26px;
  font-weight: 500;
  width: 43px;
  height: 43px;
  line-height: 43px;
  display: inline-block;
  color: var(--ot-white-color);
  text-align: center;
  background: #6b8bcf;
  margin-right: 15px;
  border-radius: 100%;
}

.choose-space {
  margin-top: 20px;
  margin-bottom: 40px;
}

.choose-wrapper {
  background: #f0f0f0;
  border-top: 6px solid #6c8acc;
  border-radius: 10px;
  padding: 40px 30px 20px;
}

.choose-header {
  margin-bottom: 20px;
}

.choose-subtitle {
  font-weight: 400;
  font-size: 20px;
  color: #424242;
}

.choose-highlight {
  font-weight: 700;
}

.choose-feature-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .choose-feature-box {
    width: 100%;
    flex-direction: column;
  }
}

.choose-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #ffffff;
  min-width: 245px;
}
@media (max-width: 575px) {
  .choose-feature-item {
    min-width: 100%;
  }
}

.choose-feature-text {
  font-size: 15px;
  font-weight: 600;
  color: #1f2d3d;
}

.choose-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #6d6d6d;
}

.choose-title-box .feature-list-item:not(:last-child) {
  margin-bottom: 5px;
}

.zygomatic-listbox .choose-subtitle {
  margin-bottom: 5px;
}
.zygomatic-listbox .choose-list {
  list-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  padding-left: 0;
  column-gap: 40px;
  row-gap: 5px;
}
@media (max-width: 1199px) {
  .zygomatic-listbox .choose-list {
    grid-template-columns: auto;
  }
}

.led-approach-space {
  padding-top: 30px;
  padding-bottom: 20px;
}
.led-approach-wrapp {
  display: flex;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1199px) {
  .led-approach-wrapp {
    flex-direction: column;
    gap: 20px;
  }
}

/*----------------------------------------*/
/*  7.1 material css
/*----------------------------------------*/
.material-space {
  margin-top: 40px;
  margin-bottom: 50px;
}

.material-card {
  padding: 27px 29px;
  border-left: 6px solid #3759a3;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.teeth-material-wrapper .sec-title {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ot-border-color);
}

.teeth-meterial-wrapp {
  margin-top: 50px;
}

.material-header {
  margin-bottom: 25px;
}

.material-title {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 20px;
  color: #2f2f2f;
}
.material-title .title-number {
  font-weight: 500;
  font-size: 32px;
  color: #3759a3;
}
.material-title span {
  font-weight: 400;
  font-size: 12px;
  color: #646464;
}

.material-description {
  font-weight: 400;
  font-size: 16px;
  color: #424242;
}
.material-description span {
  font-weight: 600;
}

.material-content {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .material-content {
    flex-direction: column;
    row-gap: 20px;
  }
}

.material-left {
  flex: 1;
}

.material-right {
  flex: 1;
  border: 1px solid #e80b0b;
  border-radius: 10px;
  padding: 19px 11px;
}

.advantages-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  width: 80%;
}

.advantages-title {
  font-weight: 500;
  font-size: 18px;
  color: #038b13;
}

.advantages-item {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.consideration-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  width: 90%;
}

.consideration-title {
  font-weight: 500;
  font-size: 18px;
  color: #3759a3;
}

.teeth-note-content2 {
  background: #FFF7E7;
  border-left: 5px solid #eeb02a;
  border-right: 5px solid #eeb02a;
  border-radius: 10px;
  padding: 13px 20px;
}
@media (max-width: 991px) {
  .teeth-note-content2 {
    padding: 12px 18px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .teeth-note-content2 {
    padding: 12px 16px;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .teeth-note-content2 {
    padding: 10px 12px;
    border-left-width: 3px;
    border-right-width: 3px;
    border-radius: 6px;
  }
  .header-layout1 {
    display: inline-block;
    width: 100%;
}

section.about-area.about-landing-style.about-space {
    width: 100%;
    overflow: hidden;
}

.transforming-smiles-area {
    width: 100%;
    overflow: hidden;
}

.pricing-area {
    width: 100%;
    overflow: hidden;
}

section.ot-footer-area.smoke-bg {
    width: 100%;
    overflow: hidden;
}

.testimonial-area {
    width: 100%;
    overflow: hidden;
}

.hero-quality-box {
    flex-direction: column;
}
.hero-quality-box {
    flex-direction: column;
}

.hero-home-style .hero-offer-box {
    margin-top: 20px;
}

.hero-video-style .hero-quality-box {
    margin-top: 30px;
}
section.brand-area.brand-space {
    margin-top: -59px;
}
}

.meterial-table-style table tbody td {
  font-weight: 500 !important;
  width: 2%;
}

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