:root {
  --theme-color: #10a9dd;
  --theme-color2: #F7921E;
  --theme-bg-light: #F8F9FE; 
  --color-dark: #01054C;
  --color-gray: #F6F6F6;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --hero-overlay: rgb(5, 3, 17);
  --slider-arrow-bg: rgba(140, 82, 255, .2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #01103B;
  --footer-bg2: #00134C;
  --footer-text-color: #F5FAFF;
  --icon-font: "Font Awesome 5 Free";
  --theme-gradient: linear-gradient(to right, #10a9dd 0%, #10a9dd 100%);
  --gotur-font: "Plus Jakarta Sans", sans-serif;
  --gotur-heading-font: "Plus Jakarta Sans", sans-serif;
  --gotur-font2: "Just Another Hand", serif;
  --gotur-text: #595959;
  --gotur-text-rgb: 89, 89, 89;
  --gotur-base: #10a9dd;
  --gotur-base-rgb: 99, 171, 69;
  --gotur-primary: #10a9dd;
  --gotur-primary-rgb: 16, 169, 221, 0.2;
  --gotur-black: #1D231F;
  --gotur-black-rgb: 29, 35, 31;
  --gotur-border-color: #E6E5E5;
  --gotur-border-color-rgb: 230, 229, 229;
  --gotur-white: #fff;
  --gotur-white-rgb: 255, 255, 255;
  --gotur-black2: #1A1948;
  --gotur-black2-rgb: 26, 25, 72;
  --gotur-black3: #000000;
  --gotur-black3-rgb: 0, 0, 0;
  --gotur-border-color:#E5E5E5;
  --gotur-border-color-rgb: 229, 229, 229;
  --gotur-gray: #F3F8F6;
  --gotur-gray-rgb: 243, 248, 246;
  --gotur-letter-space: -1.2px;
  --gotur-letter-space-lg: -1.6px;
  --gotur-letter-space-xl: -3.6px;
  --section-space: 120px;
  --section-space2: 118px;
}

::-webkit-scrollbar-track{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar
{
  width: 6px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
  background-color: var(--theme-color);
}

.site-logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff !important;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  span{
    font-size: 18px;
  }
}
.site-logo img{
  border-radius: 10px;
  width: 60px;
  background-color: #Fff;
}
.site_name {
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 16px;
  font-family: var(--gotur-heading-font);
  text-align: left;
  line-height: 1;
  color: var(--theme-color);
  max-width: 200px;
}
.site_name span {
  font-size: 18px;
  color: #000;
}


/*====================
3. General css
======================*/

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--gotur-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  color:  var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:  var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--gotur-heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
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;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

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

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}



/*====================
4. Preloader
======================*/

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ripple div {
  position: absolute;
  border: 4px solid var(--theme-color);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}




/*===================
5. Theme default css
======================*/

.ovrflow-hidden {
  overflow: hidden;
}

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

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

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

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: var(--theme-bg-light);
}



/*====================
6. Margin & padding
======================*/

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

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

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

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

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.py-80 {
  padding: 80px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-100 {
  padding: 100px 0;
}

.py-110 {
  padding: 110px 0;
}
.py-15 {
  padding-block: 15px;
}

.py-120 {
  padding: 120px 0;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-80 {
  margin: 80px 0;
}

.my-90 {
  margin: 90px 0;
}

.my-100 {
  margin: 100px 0;
}

.my-110 {
  margin: 110px 0;
}

.my-120 {
  margin: 120px 0;
}



/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  display: block;
  font-family: var(--gotur-heading-font2);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 8px;
  position: relative;
}

.site-title-tagline i{
  line-height: 0;
  font-size: 21px;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 50px;
  color:  var(--color-dark);
  margin-bottom: 0;
}

.site-title span{
  color: var(--theme-color);
  font-weight: 500;
}

.site-heading p {
  margin-top: 15px;
}

.site-shadow-text{
  position: absolute;
  right: 0px;
  top: 0px;
  line-height: 0;
  font-size: 100px;
  font-family: var(--gotur-heading-font2);
  font-weight: bold;
  color: var(--color-gray);
  text-transform: uppercase;
  z-index: -1;
}

.heading-divider {
  display: inline-block;
  position: relative;
  border-bottom: 4px solid var(--theme-color);
  width: 90px;
  height: 4px;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 6px;
  width: 15px;
  border-radius: 0px;
  background-color: var(--color-white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@media all and (max-width: 991px) {
  .site-shadow-text{
    line-height: 1;
    top: -70px !important;
  }
}

@media all and (max-width: 767px) {
  .site-shadow-text{
    font-size: 65px !important;
    top: -40px !important;
  }
}




/*====================
8. Theme button
======================*/


.theme-btn {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--gotur-base);
  color: var(--gotur-white, #fff);
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  line-height: normal;
  padding: 17.5px 20px 17.5px 20px;
  border-radius: 100px;
  transition: 500ms;
  text-transform: capitalize;
  z-index: 1;
}
.theme-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.theme-btn::before, .theme-btn::after {
  content: "";
  background-color: #0379a2;
  height: 50%;
  width: 0;
  position: absolute;
  z-index: -1;
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.theme-btn i {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  line-height: 1;
  position: relative;
  padding-left: 4px;
}
.theme-btn::before {
  top: 0;
  left: 0;
  right: auto;
}
.theme-btn::after {
  bottom: 0;
  right: 0;
  left: auto;
}
.theme-btn:hover {
  color: var(--gotur-white, #fff);
}
.theme-btn:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}
.theme-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.theme-btn:hover  i {
  animation: iconTranslateX 0.4s forwards;
}
.theme-btn--primary {
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-primary, #F7921E);
}
.theme-btn--primary::before, .theme-btn--primary::after {
  background-color: var(--gotur-base);
}
.theme-btn--primary:hover {
  color: var(--gotur-white, #fff);
}
.theme-btn--primary .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-primary, #F7921E);
}
.theme-btn--white {
  color: var(--gotur-black, #1D231F);
  background-color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
}
.theme-btn--white .icon {
  background-color: var(--gotur-base);
  color: var(--gotur-white, #fff);
}
.theme-btn--white::before, .theme-btn--white::after {
  background-color: var(--gotur-primary, #F7921E);
}
.theme-btn--white:hover {
  color: var(--gotur-white, #fff);
}
.theme-btn--white:hover .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-primary, #F7921E);
}
.theme-btn--white:hover .icon i {
  animation: iconTranslateX 0.4s forwards;
}


/*====================
9. Container
======================*/

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}



/*====================
10. Scroll top css
======================*/

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

#scroll-top i{
  transform: rotate(-35deg);
  transition: var(--transition2);
}

#scroll-top:hover i{
  transform: rotate(0);
}

#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}


/*====================
13. Navbar css
======================*/

.navbar {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 4;
  position: relative;
}

.navbar::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 200px);
  height: 100%;
  background: var(--color-white);
}

.navbar.fixed-top {
  position: fixed;
  background: var(--color-white);
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}


@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 170px;
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (max-width: 1199px) {
  .navbar::before{
    width: 93%;
  }

  .nav-right {
    margin-left: 25px !important;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .nav-right-btn {
    display: none;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 25px;
    padding: 25px 0 25px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-dark);
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    padding: 10px;
    margin-top: 0;
    left: -15px;
    border-radius: 15px;
    border: none;
    background: var(--color-white);
    width: 220px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition2);
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 6px 15px;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    transition: var(--transition2);
    z-index: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: var(--theme-color);
    color: var(--color-white);
    padding-left: 32px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "//";
    position: absolute;
    left: 15px;
    top: 6px;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 0;
    height: 2px;
    border-radius: 50px;
    transition: var(--transition2);
  }

  .navbar .nav-item .nav-link.active::before,
  .navbar .nav-item:hover .nav-link::before{
    background: var(--theme-gradient);
    width: 40%;
  }

  .navbar.fixed-top .nav-item .nav-link.active::before,
  .navbar.fixed-top .nav-item:hover .nav-link::before{
    background: var(--color-white);
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .navbar #main_nav {
    justify-content: end;
  }

  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: 45px;
  }

  .nav-right-link {
    position: relative;
    font-size: 20px;
    color: var(--color-dark);
    transition: var(--transition);
  }

  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }

  .nav-right .search-btn .nav-right-link {
    border: none;
    background: transparent;
    color: var(--color-dark);
    font-size: 28px;
    padding-right: 0;
  }

  .nav-right .sidebar-btn .nav-right-link{
    background: var(--theme-color);
    width: 65px;
    height: 61px;
    color: var(--color-white) !important;
    font-size: 25px;
    border: none;
  }

  .nav-right .sidebar-btn .nav-right-link:hover{
    background: var(--theme-color2);
  }

  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }
}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    position: absolute;
    width: 100%;
    height: auto;
    background: var(--color-white);
  }

  .navbar::before{
    display: none;
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    margin-bottom: 10px;
    background-color: var(--theme-bg-light);
    border-radius: 15px;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .navbar .dropdown-toggle::after {
    float: right;
    margin-top: 2.5px;
  }

  .navbar .nav-item .nav-link {
    color:  var(--color-dark);
    font-weight: 700;
    margin-right: 0px;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .mobile-menu-right {
    margin: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
  }

  .mobile-menu-right .nav-right-link:hover{
    color: var(--theme-color);
  }

  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color: var(--color-dark);
    font-weight: 500;
  }

  .navbar .dropdown-menu {
    border-radius: 15px;
    border: none;
  }

  .nav-right {
    display: none;
  }
}


/*============================
14. Multi level dropdown menu
==============================*/

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 8px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-menu .dropdown-item{
    color: var(--color-dark)
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 3px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}



/* ======================
15. Search popup
====================== */

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, .8);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  border: none;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50px;
  text-align: center;
  background: var(--theme-color);
  text-align: center;
  width: 50px;
  height: 50px;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  width: 100%;
  height: 60px;
  outline: none;
  border-radius: 50px;
  border: none;
  padding: 0 70px 0 35px;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  font-size: 20px;
  color: var(--color-white) !important;
  height: 50px;
  width: 50px;
  border: none;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background: var(--theme-color);
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
  color: var(--color-dark);
}



/*====================
16. Sidebar popup css 
======================*/

.sidebar-popup {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.sidebar-popup.open {
  visibility: visible;
  opacity: 1;
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  background: var(--color-white);
  visibility: hidden;
  opacity: 0;
  padding: 40px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 9999;
}

.sidebar-wrapper.open {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.sidebar-content{
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 75px);
}

.close-sidebar-popup{
  position: absolute;
  top: 1px;
  right: 1px;
  width: 38px;
  height: 38px;
  line-height: 36px;
  border-radius: 50px;
  text-align: center;
  border: none;
  font-size: 20px;
  background: var(--theme-color);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.close-sidebar-popup:hover{
  background: var(--theme-color2);
}

.close-sidebar-popup i{
  transition: var(--transition2);
}

.close-sidebar-popup:hover i{
  transform: rotate(180deg);
}

.sidebar-logo img{
  width: 150px;
}

.sidebar-about{
  margin-top: 40px;
}

.sidebar-about h4{
  margin-bottom: 10px;
}

.sidebar-contact{
  margin-top: 20px;
}

.sidebar-contact h4{
  margin-bottom: 15px;
}

.sidebar-contact li{
  margin: 10px 0;
}

.sidebar-contact li i{
  margin-right: 5px;
  color: var(--theme-color);
}

.sidebar-contact li a:hover{
  color: var(--theme-color);
}

.sidebar-social{
  margin-top: 25px;
}

.sidebar-social h4{
  margin-bottom: 20px;
}

.sidebar-social a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  margin-right: 8px;
  background: var(--theme-color);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
}

.sidebar-social a:hover{
  background: var(--theme-color2);
}



/*====================
17. Main section css 
======================*/

.main {
  margin-top: -2.5rem;
}

@media all and (max-width: 991px) {
  .main {
    margin-top: 0rem;
  }
}



/*====================
18. Hero css 
======================*/

.hero-section {
  position: relative;
}

.hero-scroll-box{
  position: absolute;
  left: 55px;
  bottom: 50px;
  z-index: 2;
}

.hero-scroll{
  width: 30px;
  height: 60px;
  border: 3px solid var(--color-white);
  border-radius: 15px;
  position: relative;
}

.hero-scroll .scroller{
  width: 16px;
  border-radius: 8px;
  background-color: var(--color-white);
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 34px;
  animation: scroller 1500ms ease-out infinite;
}

@keyframes scroller{
  0%{
    bottom: 34px;
  }
  5%{
    top: 4px;
  }
  32%{    
    bottom: 4px;
  }
  66%{
    top: 34px;
    bottom: 4px;
  }
  100%{
    top: 4px;
    bottom: 34px;
  }
}

.hero-single {
  padding-top: 150px;
  padding-bottom: 160px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: var(--hero-overlay);
  opacity: 0.7;
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;
}

.hero-date{
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-date h1{
  color: var(--theme-color);
  font-size: 90px;
  font-weight: 700;
}

.hero-date .date-content span{
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-date .date-content p{
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-single .hero-content .hero-title {
  color: var(--color-white);
  font-size: 60px;
  font-weight: 700;
  margin: 20px 0;
  text-transform: uppercase;
}

.hero-single .hero-content .hero-title span{
  color: var(--theme-color);
  font-weight: 500;
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--theme-color);
  font-size: 25px;
  letter-spacing: 6px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.hero-single .hero-content p {
  color: var(--color-white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 35px;
  justify-content: start;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--color-white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.hero-slider.owl-theme .owl-dots {
  position: absolute;
  text-align: center;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.hero-slider.owl-theme .owl-dots .owl-dot span {
  background: var(--color-white);
  margin: 5px;
  border-radius: 10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  transition: var(--transition);
}

.hero-slider.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 70px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 45px;
  }

  .hero-scroll-box{
    left: 20px;
    bottom: 80px;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}



/*===================
19. Play btn
=====================*/

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}



/*======================
20. Event countdown css
========================*/

.event-countdown{
  position: relative;
}

.event-countdown .time-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.event-countdown .time{
  border-radius: 15px;
  padding: 14px 10px;
  text-align: center;
}

.event-countdown .time span{
  display: block;
}

.event-countdown .time span:first-child{
  color: var(--color-white);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
}

.event-countdown .time .unit{
  color: var(--color-white);
  font-weight: 500;
}

.event-countdown .divider{
  display: none;
}

/* event-countdown 1 */
.event-countdown.ec-1{
  background: var(--theme-gradient);
  width: fit-content;
  margin-left: auto;
  margin-top: -135px;
  position: relative;
  padding: 20px 70px 20px 20px;
  z-index: 1;
}

.event-countdown.ec-1 .event-countdown-text{
  position: absolute;
  right: 0;
  top: 0;
  background: var(--color-white);
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-countdown.ec-1 .event-countdown-text span{
  writing-mode: vertical-lr;
  color: var(--theme-color2);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

/* event-countdown 2 */
.event-countdown.ec-2{
  background: var(--theme-bg-light);
}

.event-countdown.ec-2 .time-wrap .time span:first-child{
  font-size: 75px;
  color: var(--theme-color2);
}

.event-countdown.ec-2 .time-wrap .time .unit{
  color: var(--theme-color);
  font-size: 25px;
}

.event-countdown.ec-2 .time-wrap .divider{
  display: block;
  color: var(--color-dark);
  font-size: 70px;
}


@media all and (max-width: 991px) {
  .event-countdown.ec-1{
    margin-top: 0px;
  }
}

@media all and (max-width: 767px) {
  .event-countdown .time span:first-child{
    font-size: 22px;
  }

  .event-countdown.ec-1{
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .event-countdown .time-wrap{
    gap: 10px;
  }
}



/* ===================
21. About css 
====================== */

.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  display: block;
  margin-right: 50px;
}

.about-img{
  position: relative;
}

.about-img img{
  border-radius: 50%;
  border: 10px solid var(--color-white);
  box-shadow: var(--box-shadow);
}
.about-img img.img-1{
  width: 526px;
  height: 526px;
  object-fit: cover;
}

.about-img .img-2{
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 280px;
  height: 280px;
  object-fit: cover;
  box-shadow: none;
}

.about-img .img-3{
  position: absolute;
  right: -30px;
  top: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: none;
}

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-experience{
  background: var(--theme-gradient);
  box-shadow: var(--box-shadow);
  position: absolute;
  left: -30px;
  bottom: 80px;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
}

.about-experience h5{
  color: var(--color-white);
  font-size: 20px;
}

.about-experience span{
  color: var(--color-white);
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}

.about-list-wrap {
  position: relative;
  display: block;
  margin-top: 25px;
  margin-bottom: 35px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.about-list li:last-child{
  border-bottom: none;
}

.about-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .icon i {
  font-size: 50px;
  color: var(--theme-color);
}

.about-list li .icon img{
  width: 50px;
}

.about-list li .about-item h4 span{
  color: var(--theme-color);
  margin-right: 10px;
}

.about-list li .about-item p {
  margin-top: 5px;
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 90px;
  }
}

@media all and (max-width: 767px) {
  .about-right {
    padding-left: 0;
  }

  .about-title {
    font-size: 30px;
  }

  .about-left {
    margin-right: 0;
  }

  .about-left-content {
    bottom: -70px;
  }

  .about-img{
    width: 90%;
  }

  .about-experience{
    left: -7px;
    padding: 20px 10px;
  }

  .about-img .img-3{
    width: 140px;
  }

  .about-img .img-2{
    width: 150px;
    right: -10px;
  }
}



/*====================
22. Feature css 
======================*/

.feature-area {
  position: relative;
}

.feature-item {
  padding: 25px 25px;
  text-align: center;
  position: relative;
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
}

.feature-item:hover{
  transform: translateY(-10px);
}

.feature-item .count{
  font-size: 120px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: .15;
  z-index: -1;
}

.feature-icon {
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-icon img {
  width: 80px;
  filter: invert(1) hue-rotate(40deg);
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}



/* ===================
23. Schedule css 
====================== */

.schedule-area{
  position: relative;
}

.schedule-nav{
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.schedule-nav .nav{
  background: var(--color-white);
  border-radius: 15px;
  width: fit-content;
  box-shadow: var(--box-shadow);
  margin: 0 auto;
  padding: 10px;
  gap: 10px;
}

.schedule-nav .nav-link{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 15px;
  color: var(--color-dark);
  border-radius: 10px;
}

.schedule-nav .nav-pills .nav-link.active{
  background: var(--theme-color);
}

.schedule-nav .nav-link .icon{
  font-size: 30px;
  color: var(--theme-color);
}

.schedule-nav .nav-pills .nav-link.active .icon{
  color: var(--color-white);
}

.schedule-nav .nav-link .content span{
  display: block;
  text-align: left;
  line-height: 1;
}

.schedule-nav .nav-link .content .day{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.schedule-nav .nav-link .content .date{
  font-weight: 500;
}

.schedule-item{
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/*.schedule-item::before{
  content: "";
  position: absolute;
  border-left: 3px dashed var(--theme-color2);
  left: 35px;
  top: 50%;
  height: 100%;
  z-index: -1;
}

.schedule-item.last::before{
  display: none;
}*/

.schedule-count{
  width: 70px;
  height: 70px;
  line-height: 68px;
  background: var(--theme-gradient);
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: var(--box-shadow);
}

.schedule-content-wrap{
  display: flex;
  gap: 20px;
  flex: 1;
  background: var(--color-white);
  padding: 15px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  border: 2px dotted var(--gotur-primary);
}

.schedule-img{
  overflow: hidden;
}

.schedule-img img{
  width: 230px;
  border-radius: 90px 0 90px 90px;
  object-fit: cover;
  height: 230px;
  border: 2px solid transparent;
}

.schedule-item:hover .schedule-img img{
  border-color: var(--gotur-primary);
  border-radius: 50%;
}

.schedule-content{
  flex: 1;
}

.schedule-meta{
  margin-bottom: 15px;
}

.schedule-meta ul{
  display: flex;
  gap: 20px;
}

.schedule-meta ul li{
  color: var(--theme-color);
  font-weight: 500;
}

.schedule-meta ul li i{
  color: var(--theme-color);
}

.schedule-info h4{
  font-size: 24px;
  margin-bottom: 10px;
}

.schedule-info h4 a{
  color: var(--color-dark);
}

.schedule-info h4 a:hover{
  color: var(--theme-color);
}

.schedule-bottom{
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-info-color);
}

.schedule-speaker{
  display: flex;
  gap: 20px;
}

.schedule-speaker .speaker-item{
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-speaker .speaker-img{
  position: relative;
}

.schedule-speaker .speaker-img img{
  width: 50px;
  border-radius: 50px;
}

.schedule-speaker .speaker-img-icon{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 22px;
  height: 22px;
  line-height: 20px;
  font-size: 14px;
  color: var(--color-white);
  background: var(--theme-color);
  border: 2px solid var(--color-white);
  border-radius: 50px;
  text-align: center;
}

/* schedule-area2 */
.schedule-area2 .schedule-nav .nav{
  border-radius: 50px;
}

.schedule-area2 .schedule-nav .nav-pills .nav-link{
  padding: 8px 30px;
}

.schedule-area2 .schedule-nav .nav-pills .nav-link.active{
  border-radius: 50px;
}

.schedule-area2 .schedule-item::before{
  display: none;
}

.schedule-area2 .schedule-count{
  color: var(--color-dark);
  background: transparent;
  width: unset;
  height: unset;
  line-height: unset;
  box-shadow: none;
  line-height: 1;
  font-weight: 800;
  color: var(--theme-color);
}

.schedule-area2 .schedule-count span{
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 5px;
  color: var(--color-dark);
}

.schedule-area2 .schedule-bottom{
  border-top: none;
  margin: 0;
  padding: 0;
}

.schedule-area2 .schedule-img img{
  width: 180px;
}

.schedule-area2 .schedule-content{
  border-right: 1px solid var(--border-info-color);
  padding-right: 20px;
}

/* schedule-area3 */
.schedule-area3 .schedule-nav .nav{
  background: transparent;
  box-shadow: none;
  padding: 0;
  gap: 20px;
}

.schedule-area3 .schedule-nav .nav-pills .nav-link{
  background: var(--color-white);
  box-shadow: var(--box-shadow);
}

.schedule-area3 .schedule-nav .nav-pills .nav-link.active{
  background: var(--theme-gradient);
}

.schedule-area3 .schedule-item::before{
  display: none;
}

.schedule-area3 .schedule-content-wrap{
  flex-direction: column;
  gap: 15px;
}

.schedule-area3 .schedule-img img{
  width: 100%;
}

.schedule-area3 .schedule-bottom{
  width: 100%;
  margin-top: 0px;
}

.schedule-item .time{
  color: var(--theme-color2);
  font-weight: 500;
}

.schedule-area3 .schedule-info .location{
  color: var(--theme-color);
  font-weight: 500;
}

.schedule-area3 .schedule-info h4{
  margin-top: 10px;
}


@media all and (max-width: 991px) {
  .schedule-item::before{
    display: none;
  }

  .schedule-count{
    display: none;
  }

  .schedule-content-wrap{
    flex-direction: column;
    align-items: unset;
  }

  .schedule-img img{
    width: 100%;
  }

  .schedule-meta ul{
    flex-direction: column;
    gap: 10px;
  }
  
  .schedule-speaker,
  .schedule-bottom{
    flex-direction: column;
  }

  .schedule-bottom .theme-btn{
    margin-top: 20px;
  }

  .schedule-area2 .schedule-img img{
    width: 100%;
  }

  .schedule-area2 .schedule-content{
    border-right: none;
    padding-right: 0px;
  }
}



/* ===================
24. Schedule single css 
====================== */

.schedule-single{
  position: relative;
}

.schedule-detail-img img{
  border-radius: 15px;
}

.schedule-sidebar .event-countdown{
  background: var(--theme-gradient);
  border-radius: 15px;
} 

.schedule-sidebar .event-countdown .time-wrap{
  gap: 0;
}

.schedule-sidebar .schedule-list li{
  color: var(--color-dark);
  font-weight: 500;
  margin: 5px 0;
}

.schedule-sidebar .schedule-list li i{
  color: var(--theme-color);
  width: 25px;
}

.schedule-sidebar .social{
  margin-top: 30px;
}

.schedule-sidebar .social a{
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color2);
  color: var(--theme-color2);
  text-align: center;
  border-radius: 50px;
  margin-right: 5px;
}

.schedule-sidebar .social a:hover{
  background: var(--theme-color2);
  color: var(--color-white);
}

.schedule-info-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.schedule-info-list .icon{
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
  border-radius: 50px;
  margin-right: 5px;
}

.schedule-info-list .theme-btn{
  margin-top: 20px;
}

.schedule-info-list .content span{
  color: var(--theme-color);
  font-weight: 500;
}

.schedule-detail-info .video-content,
.schedule-detail-info .video-content::before{
  border-radius: 15px;
}

.schedule-detail-info .location-map iframe{
  border-radius: 15px;
  width: 100%;
  height: 250px;
}




/* ===================
25. Pricing css 
====================== */

.pricing-item {
  position: relative;
  background: var(--color-white);
  padding: 10px 10px 30px 10px;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}

.pricing-shape img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.pricing-item:hover{
  transform: translateY(-10px);
} 

.pricing-header-wrap{
  margin-bottom: 30px;
}

.pricing-header{
  text-align: center;
  margin-top: 15px;
}

.pricing-header h5 {
  font-size: 25px;
  font-weight: 600;
  display: inline-block;
  color: var(--color-white);
  margin-bottom: 10px;
}

.pricing-amount{
  text-align: center;
  margin-top: 105px;
  margin-bottom: 25px;
}

.pricing-amount strong {
  font-size: 50px;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
}

.pricing-feature {
  position: relative;
  padding: 35px 20px 30px 20px;
  border-top: 2px dashed var(--theme-color);
}

.pricing-feature::before{
  content: "";
  position: absolute;
  left: -20px;
  top: -14px;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--theme-bg-light);
}

.pricing-feature::after{
  content: "";
  position: absolute;
  right: -20px;
  top: -14px;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--theme-bg-light);
}

.pricing-feature li {
  margin-bottom: 15px;
}

.pricing-feature li:last-child {
  margin-bottom: 0px;
}

.pricing-feature li i {
  color: var(--theme-color);
  margin-right: 10px;
}

.pricing-btn-wrap{
  text-align: center;
}

/* pricing-area2 */
.pricing-area2 .pricing-item{
  background: var(--color-white);
  box-shadow: var(--box-shadow);
}

.pricing-area2 .pricing-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: -80px;
  width: 100%;
  height: 170px;
  background: var(--theme-gradient);
  border-radius: 20px 20px 20px 80px;
  transform: rotate(-20deg);
  z-index: -1;
}

.pricing-area2 .pricing-item::after{
  content: "";
  position: absolute;
  right: -30px;
  top: 70px;
  width: 140px;
  height: 20px;
  background: var(--theme-gradient);
  border-radius: 20px;
  transform: rotate(-20deg);
}


@media all and (max-width: 991px) {
  .pricing-amount strong {
    font-size: 50px;
  }
}




/*====================
26. Video css 
======================*/

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(11, 9, 23, .5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 500px;
  z-index: 1;
}

.video-wrapper img {
  border-radius: 12px;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (max-width: 991px) {
  .video-content{
    padding-top: 80px;
  }
  .video-wrapper {
    height: 250px;
  }
}



/* ===================
27. Counter css 
====================== */

.counter-area {
  position: relative;
  background-image: url(../img/shape/02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.counter-info {
  padding-right: 20px;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  background: var(--color-white);
  padding: 30px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.counter-box .icon {
  width: 70px;
  height: 70px;
  line-height: 60px;
  font-size: 35px;
  border-radius: 50px;
  text-align: center;
  color: var(--color-white);
  background: var(--theme-gradient);
  position: relative;
}

.counter-box .icon::before{
  content: "";
  position: absolute;
  left: -7px;
  top: -7px;
  bottom: -7px;
  right: -7px;
  border: 2px dashed var(--theme-color);
  border-radius: 50%;
  transition: all .5s ease-in-out;
  z-index: -1;
}

.counter-box .icon img{
  width: 42px;
  filter: brightness(0) invert(1);
}

.counter-box .counter-info{
  display: flex;
  align-items: center;
  gap: 2px;
}

.counter-box .counter-unit{
  color: var(--color-dark);
  font-weight: 600;
  font-size: 25px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-dark);
  font-size: 50px;
  font-weight: 900;
}

.counter-box .title {
  color: var(--color-dark);
  margin-top: 5px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}


/*====================
30. Cta css 
======================*/

.cta-area{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.cta-area::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--theme-gradient);
  opacity: .85;
  z-index: -1;
}

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

.cta-content h6{
  font-size: 25px;
  color: var(--theme-color2);
  text-transform: uppercase;
  font-family: var(--gotur-heading-font2);
  letter-spacing: 3px;
}

.cta-content h1{
  font-family: var(--gotur-heading-font2);
  color: var(--color-white);
  font-size: 50px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.cta-content p{
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-content .theme-btn{
  background: var(--theme-color);
  color: var(--color-white);
}



/*====================
31. Choose css 
======================*/

.choose-area {
  position: relative;
}

.choose-content-wrap{
  margin-top: 30px;
}

.choose-item{
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.choose-item-icon{
  width: 60px;
  height: 60px;
  line-height: 55px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  box-shadow: var(--box-shadow);
}

.choose-item-icon img{
  width: 35px;
  filter: brightness(0) invert(1);
}

.choose-item-info h4{
  margin-bottom: 5px;
}

.choose-item-info{
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 20px;
  flex: 1;
}

.choose-item:last-child .choose-item-info{
  border-bottom: none;
}

.choose-img{
  position: relative;
  text-align: end;
  margin-right: 30px;
}

.choose-img img{
  border-radius: 20px;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.choose-img::before{
  content: "";
  position: absolute;
  left: 15px;
  top: 40px;
  background: var(--theme-color);
  border-radius: 20px;
  width: 70%;
  height: 88%;
  transform: rotate(-8deg);
  z-index: -1;
}

.choose-img .theme-btn{
  position: absolute;
  left: 0;
  bottom: 80px;
}

@media all and (max-width: 991px) {
  .choose-content{
    margin-top: 50px;
  }

  .choose-img{
    text-align: left;
    padding-left: 40px;
  }
}



/*====================
32. Venue css 
======================*/

.venue-area{
  position: relative;
}

.venue-item{
  position: relative;
}

.venue-img{
  width: 85%;
}

.venue-img img{
  border-radius: 15px;
}

.venue-content{
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 230px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.venue-content span{
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 14px;
}

.venue-content h6{
  margin-top: 10px;
  margin-bottom: 5px;
}

.venue-content p{
  color: var(--body-text-color);
}

.venue-play{
  margin-top: 15px;
}

.venue-play .popup-youtube{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.venue-play .popup-youtube i{
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--theme-gradient);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
}



/*====================
33. Venue single css 
======================*/

.venue-single{
  position: relative;
}

.venue-list li{
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.venue-list li span{
  font-weight: 500;
  color: var(--color-dark);
}

.venue-list li span:first-child{
  width: 140px;
  display: inline-block;
}

.venue-list li span:first-child span{
  font-weight: 400;
}

.venue-capacity .venue-list li span:nth-child(2){
  width: 50px;
}

.venue-info .venue-list li span:first-child{
  width: 80px;
}

.venue-info .venue-list li span:nth-child(2){
  width: 20px;
}

.venue-info .venue-list li span:last-child{
  flex: 1;
}

.venue-detail-img img{
  border-radius: 15px;
}

.venue-detail-info .video-content,
.venue-detail-info .video-content::before{
  border-radius: 20px;
}

.venue-single-list li{
  margin: 8px 0;
}

.venue-single-list li i{
  color: var(--theme-color);
  margin-right: 10px;
}




/*====================
35. Quote css 
======================*/

.quote-area{
  position: relative;
  background-image: url(../img/quote/01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.quote-content{
  background: var(--color-white);
  padding: 35px;
  border-radius: 20px;
  margin-top: -100px;
  box-shadow: var(--box-shadow);
}

.quote-img img{
  border-radius: 15px;
}

.quote-head{
  margin-bottom: 20px;
}

.quote-head h3{
  margin-bottom: 8px;
}

.quote-form .input-group{
  margin-bottom: 22px;
}

.quote-form .input-group:focus-within{
  outline: 2px solid var(--theme-color);
  border-radius: 50px;
}

.quote-form .input-group.textarea:focus-within{
  border-radius: 30px;
}

.quote-form .input-group .form-control{
  padding: 15px 25px 15px 0px;
  border-radius: 50px;
  border: none;
  box-shadow: none;
  background-color: var(--theme-bg-light);
}

.quote-form .input-group .form-control,
.quote-form .input-group .form-select,
.quote-form .input-group .form-control::placeholder{
  color: var(--color-dark);
}

.quote-form .input-group .input-group-text{
  background: var(--theme-bg-light);
  color: var(--theme-color);
  border-radius: 50px;
  padding-left: 20px;
  border: none;
}

.quote-form .input-group.textarea .input-group-text,
.quote-form .input-group.textarea .form-control{
  border-radius: 30px;
}

.quote-form .input-group.textarea .input-group-text{
  align-items: flex-start;
  padding-top: 20px;
}

/* quote-area2 */
.quote-area2{
  position: relative;
}

.quote-area2 .quote-form{
  background: var(--color-white);
  padding: 30px;
  border-radius: 0 15px 15px 0;
  box-shadow: var(--box-shadow);
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.quote-area2 .quote-form .input-group{
  margin-bottom: 0;
}




/*====================
36. Instagram css 
======================*/

.instagram-area{
  position: relative;
}

.instagram-img{
  overflow: hidden;
  border-radius: 15px;
}

.instagram-img img{
  border-radius: 15px;
}

.instagram-img:hover img{
  transform: scale(1.1) rotate(2deg);
}

.instagram-area .theme-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}




/*====================
37. Blog css 
======================*/

.blog-area{
  position: relative;
}

.blog-item{
  padding: 20px;
  border: 2px solid rgba(140, 82, 255, .2);
  border-radius: 15px;
  transition: var(--transition);
  position: relative;
}

.blog-item:hover{
  border-color: rgba(140, 82, 255, 1);
}

.blog-date{
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  color: var(--color-white);
  padding: 0px 10px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.blog-date::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 8px;
  transform: skewX(-10deg);
  z-index: -1;
}

.blog-item-img{
  border-radius: 15px;
  overflow: hidden;
}

.blog-item-img img {
  border-radius: 12px;
}

.blog-item:hover .blog-item-img img{
  transform: scale(1.1);
} 

.blog-item-info {
  padding: 15px 0 0 0;
}

.blog-item-meta ul {
  margin: 0;
  margin-bottom: 14px;
  padding: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-info-color);
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color: var(--color-dark);
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-item-meta a{
  color: var(--color-dark);
}

.blog-item-meta a:hover {
  color: var(--theme-color);
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info h4 a {
  color:  var(--color-dark);
}

.blog-item-info h4 a:hover {
  color: var(--theme-color);
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-item-info .theme-btn {
  margin-top: 10px;
}




/*========================
38. Blog single css
==========================*/

.blog-single{
  position: relative;
}

.blog-single .blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single .blog-single-content img {
  border-radius: 15px;
}

.blog-single .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-single .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-single .blog-meta-left ul li{
  color: var(--color-dark);
  font-weight: 500;
}

.blog-single .blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-single .blog-meta a {
  color: var(--color-dark);
  font-weight: 500;
}

.blog-single .blog-meta a:hover {
  color: var(--theme-color);
}

.blog-single .blog-details-title {
  font-size: 34px;
  color:  var(--color-dark);
}

.blog-single .blockqoute {
  background: var(--theme-bg-light);
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
  position: relative;
}

.blog-single .blockqoute .blockqoute-icon{
  position: absolute;
  right: 20px;
  bottom: 5px;
  color: var(--theme-color);
  font-size: 70px;
}

.blog-single .blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color:  var(--color-dark);
}

.blog-single .blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-single .blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-single .blog-details-tags h5 {
  color:  var(--color-dark);
}

.blog-single .blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-single .blog-details-tags ul a {
  background: var(--theme-bg-light);
  color:  var(--color-dark);
  padding: 5px 18px;
  border-radius: 50px;
  transition: var(--transition);
}

.blog-single .blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.blog-single .blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--theme-bg-light);
  margin: 50px 0;
  padding: 20px;
  border-radius: 15px;
}

.blog-single .blog-author-img {
  width: 320px;
}

.blog-single .blog-author-img img {
  border-radius: 15px;
}

.blog-single .author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}

.blog-single .author-info {
  padding: 0 20px;
}

.blog-single .author-social {
  margin-top: 10px;
}

.blog-single .author-social a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.blog-single .author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}

.blog-single .blog-comments h3 {
  color:  var(--color-dark);
}

.blog-single .blog-comments-wrapper {
  margin: 30px 0;
}

.blog-single .blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-single .blog-comments-single img {
  border-radius: 50%;
}

.blog-single .blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-single .blog-comments-content span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.blog-single .blog-comments-content a {
  font-weight: 500;
  margin-top: 5px;
  color: var(--theme-color);
}

.blog-single .blog-comments-content a:hover {
  color: var(--theme-color2);
}

.blog-single .blog-comments-content h5 {
  color: var(--color-dark);
}

.blog-single .blog-comments-reply {
  margin-left: 50px;
}

.blog-single .blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 15px;
  background: var(--theme-bg-light);
}

.blog-single .blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-single .blog-comments-form .input-group{
  margin-bottom: 22px;
}

.blog-single .blog-comments-form .input-group:focus-within{
  outline: 2px solid var(--theme-color);
  border-radius: 50px;
}

.blog-single .blog-comments-form .input-group.textarea:focus-within{
  border-radius: 30px;
}

.blog-single .blog-comments-form .input-group .form-control{
  padding: 15px 25px 15px 0px;
  border-radius: 50px;
  border: none;
  box-shadow: none;
  background: var(--color-white);
}

.blog-single .blog-comments-form .input-group .nice-select{
  line-height: 25px;
}

.blog-single .blog-comments-form .input-group .form-control,
.blog-single .blog-comments-form .input-group .form-select,
.blog-single .blog-comments-form .input-group .form-control::placeholder{
  color: var(--color-dark);
}

.blog-single .blog-comments-form .input-group .input-group-text{
  background: var(--color-white);
  color: var(--theme-color);
  border-radius: 50px;
  padding-left: 20px;
  border: none;
}

.blog-single .blog-comments-form .input-group.textarea .input-group-text,
.blog-single .blog-comments-form .input-group.textarea .form-control{
  border-radius: 30px;
}

.blog-single .blog-comments-form .input-group.textarea .input-group-text{
  align-items: flex-start;
  padding-top: 20px;
}


@media all and (max-width: 767px) {
  .blog-single .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-single .blog-meta-left ul {
    gap: 10px;
  }

  .blog-single .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-single .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .blog-single .author-info{
    margin-top: 25px;
  }

  .blog-single .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 15px;
  }

  .blog-single .blog-comments-single img{
    margin: 0 auto 20px auto;
  }

  .blog-single .blog-comments-reply {
    margin-left: 0px;
  }
}



/*=======================
39. Widget sidebar css
=========================*/

.widget {
  background: var(--theme-bg-light);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 25px;
  color:  var(--color-dark);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}

.widget .search-form .form-control {
  padding: 12px 15px 12px 20px;
  border-radius: 50px;
  box-shadow: none;
  color: var(--color-dark);
}

.widget .search-form .form-control::placeholder{
  color: var(--color-dark);
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: var(--theme-color);
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  color: var(--color-dark);
  border-bottom: 1px solid var(--border-info-color);
  transition: var(--transition);
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.widget .recent-post-img img {
  width: 75px;
  border-radius: 15px;
}

.widget .recent-post-bio{
  flex: 1;
}

.widget .recent-post-bio h6 {
  font-size: 18px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.widget .tag-list a {
  background: var(--color-white);
  color:  var(--color-dark);
  padding: 5px 18px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}



/*===================
40. Contact us css 
=====================*/

.contact-wrapper {
  position: relative;
}

.contact-img img{
  width: 100%;
  border-radius: 15px;
}

.contact-form{
  background: var(--theme-bg-light);
  padding: 20px 25px;
  border-radius: 15px;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.contact-form .input-group{
  margin-bottom: 22px;
}

.contact-form .input-group:focus-within{
  outline: 2px solid var(--theme-color);
  border-radius: 50px;
}

.contact-form .input-group.textarea:focus-within{
  border-radius: 30px;
}

.contact-form .input-group .form-control{
  padding: 15px 25px 15px 0px;
  border-radius: 50px;
  border: none;
  box-shadow: none;
  background: var(--color-white);
}

.contact-form .input-group .nice-select{
  line-height: 25px;
}

.contact-form .input-group .form-control,
.contact-form .input-group .form-select,
.contact-form .input-group .form-control::placeholder{
  color: var(--color-dark);
}

.contact-form .input-group .input-group-text{
  background: var(--color-white);
  color: var(--theme-color);
  border-radius: 50px;
  padding-left: 20px;
  border: none;
}

.contact-form .input-group.textarea .input-group-text,
.contact-form .input-group.textarea .form-control{
  border-radius: 30px;
}

.contact-form .input-group.textarea .input-group-text{
  align-items: flex-start;
  padding-top: 20px;
}

.contact-form .text-success{
  color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  background:var(--theme-bg-light);
  transition: var(--transition);
}

.contact-info:hover{
  transform: translateY(-8px)
}

.contact-info-icon i {
  font-size: 35px;
  color: var(--color-white);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color:  var(--color-dark);
}

.contact-info p{
  color:  var(--color-dark);
  font-weight: 500;
  font-size: 16px;
}


@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 50px;
    margin-bottom: 0;
  }
}



/* ========================
41. Gallery css 
=========================== */

.gallery-item {
  position: relative;
  width: 100%;
  text-align: center;
}

.gallery-img {
  position: relative;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.gallery-img::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--theme-color);
  transition: all 0.7s ease-in-out;
  transform: translateY(-110%);
}

.gallery-img:hover::before{
  transform:translateY(110%);
}

.gallery-img::after{
  content:"";
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  opacity: .8;
  transition: all 0.7s ease-in-out;
  transform: translateY(-110%);
}

.gallery-img:hover::after{
  transform: none;
}

.gallery-img img {
  width: 100%;
  border-radius: 15px;
}

.gallery-link {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  font-size: 34px;
  color: var(--theme-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--color-white);
  transition: all 200ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
}

.gallery-item:hover .gallery-link {
  transform: translate(-50%, -50%) scale(1);
  transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.7s;
}



/*====================
42. Faq css 
======================*/

.faq-area .accordion-item {
  border: none;
  margin-bottom: 30px;
  background: var(--color-white);
  border-radius: 12px !important;
  box-shadow: var(--box-shadow);
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.faq-area .accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-dark);
  box-shadow: none !important;
  padding: 7px 10px;
}

.faq-area .accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--theme-color);
}

.faq-area .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-area .accordion-body{
  color: var(--color-dark);
  font-weight: 500;
}

@media all and (max-width: 991px) {
  .faq-area .faq-right {
    margin-bottom: 50px;
  }

  .faq-area .accordion-button {
    font-size: 16px;
  }
}



/*====================
43. Breadcrumb css
======================*/

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--hero-overlay);
  opacity: 0.65;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-family: var(--gotur-heading-font2);
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--color-white);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color);
}




/*====================
44. Pagination css 
======================*/

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.pagination .page-link {
  border: none;
  background:  var(--theme-bg-light);
  color: var(--color-dark);
  font-weight: 500;
  margin: 0 10px;
  border-radius: 12px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: var(--transition);
  z-index: 1;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: var(--color-white);
}



/*====================
45. Auth css 
======================*/

.login-form {
  padding: 40px;
  background: var(--theme-bg-light);
  border-radius: 15px;
}

.login-form .login-footer {
  margin-top: 25px;
}

.login-form .login-footer p {
  color: var(--color-dark);
  text-align: center;
}

.login-form .login-footer a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .login-footer a:hover {
  color:  var(--theme-color2);
}

.login-form .input-group{
  margin-bottom: 22px;
}

.login-form label {
  color:  var(--color-dark);
  margin-bottom: 5px;
}

.login-form .input-group:focus-within{
  outline: 2px solid var(--theme-color);
  border-radius: 50px;
}

.login-form .input-group .form-control{
  padding: 15px 25px 15px 0px;
  border-radius: 50px;
  border: none;
  box-shadow: none;
  background: var(--color-white);
}

.login-form .input-group .nice-select{
  line-height: 25px;
}

.login-form .input-group .form-control,
.login-form .input-group .form-select,
.login-form .input-group .form-control::placeholder{
  color: var(--color-dark);
}

.login-form .input-group .input-group-text{
  background: var(--color-white);
  color: var(--theme-color);
  border-radius: 50px;
  padding-left: 20px;
  border: none;
}

.login-form .form-check{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.login-form .form-check-input{
  margin: 0;
  box-shadow: none;
  border-radius: 50px;
  border: none;
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
}

.login-form .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.login-form .form-check-label{
  margin-bottom: 0;
}

.login-form .form-check-label a {
  color: var(--theme-color);
  transition: var(--transition);
}

.login-form .form-check-label a:hover {
  color: var(--theme-color);
}

.login-form .forgot-password{
  color: var(--theme-color);
  transition: var(--transition);
}

.login-form .forgot-password:hover {
  color: var(--theme-color2);
}

.login-form .theme-btn {
  width: 100%;
}

.login-form .theme-btn::before{
  width: 420px;
  height: 420px;
  transition: var(--transition2);
}

.login-form .social-login {
  border-top: 1px solid var(--border-info-color);
  margin-top: 15px;
}

.login-form .social-login p {
  color: var(--color-dark);
  margin: 10px 0;
}

.login-form .social-login-list {
  text-align: center;
}

.login-form .social-login-list a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  margin: 5px;
}

.login-form .social-login-list a i {
  color: var(--color-white);
}

.login-form .social-login-list a:hover {
  background:  var(--theme-color2);
}

@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}




/*====================
46. Partner css 
======================*/

.partner-area{
  position: relative;
}

.partner-bg{
  position: relative;
  background: rgba(252, 34, 106, .03);
}

.partner-bg::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/04.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
}

.partner-wrapper{
  position: relative;
}




/*====================
47. Coming soon css 
======================*/

.coming-soon {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center !important;
  min-height: 100vh;
  width: 100%;
  z-index: 1;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.coming-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
}

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

.coming-info h1{
  color: var(--color-white);
  font-weight: 700;
  font-size: 50px;
}

.coming-info p{
  font-size: 18px;
  color: var(--color-white);
  margin-top: 10px;
}

.coming-countdown-wrap{
  margin-top: 30px;
  margin-bottom: 30px;
}

.coming-countdown .time-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.coming-countdown .time{
  background: var(--color-white);
  width: 125px;
  border-radius: 15px;
  padding: 14px 10px;
}

.coming-countdown .time span{
  display: block;
}

.coming-countdown .time span:first-child{
  color: var(--theme-color);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
}

.coming-countdown .time .unit{
  color: var(--color-dark);
  font-weight: 500;
}

.coming-countdown .divider{
  display: none;
}

.coming-newsletter-form{
  margin-top: 50px;
  margin-bottom: 25px;
}

.coming-newsletter-form .form-group{
  position: relative;
}

.coming-newsletter-form .form-control{
  padding: 17px 150px 17px 20px;
  border-radius: 50px;
  border: none;
  box-shadow: none;
  color: var(--color-dark);
}

.coming-newsletter-form .form-control::placeholder{
  color: var(--color-dark);
}

.coming-newsletter-form .theme-btn{
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 9px 15px;
}

.coming-social{
  margin-top: 40px;
  text-align: center;
}

.coming-social a{
  display: inline-block;
  background: var(--theme-color);
  color: var(--color-white);
  margin: 5px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50px;
  transition: .5s;
  box-shadow: var(--box-shadow2);
}

.coming-social a:hover{
  background: var(--theme-color2);
}

@media all and (max-width: 767px) {
  .coming-info h1{
    font-size: 40px;
  }
}



/*====================
48. Error css 
======================*/

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

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: var(--theme-color);
}

.error-wrapper h1 span {
  color:  var(--color-dark);
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}


@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}



/*====================
49. Terms/privacy css 
====================== */

.terms-content:not(:last-child) {
  margin-bottom: 54px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
  margin-bottom: 23px;
  position: relative;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}



/*====================
50. Footer css 
======================*/

.footer-area {
  background: var(--footer-bg);
  position: relative;
  z-index: 1;
}

.footer-shape img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  object-fit: cover;
  z-index: -1;
}
.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget-box.about-us{
  padding-right: 50px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}
.footer-logo{
  margin-bottom: 18px;
  .site_name{
    color: #fff;
  }
}

.footer-logo img {
  width: 100px;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 20px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 90px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-widget-box .social i{
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: var(--color-white);
  color: var(--theme-color);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  transition: var(--transition);
  word-break: break-all;

}

.footer-contact li i {
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  line-height: 32px;
  font-size: 16px;
  margin-right: 10px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  transition: var(--transition);
  color: var(--color-white);
}

.footer-request{
  margin-top: 20px;
}

.footer-request p{
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 4px;
}

.footer-request .theme-btn i{
  margin-left: 12px;
}

.subscribe-form .form-group{
  position: relative;
}

.subscribe-form .form-control {
  padding: 16px 140px 16px 25px;
  border-radius: 50px;
  color: var(--color-dark);
  box-shadow: none;
  border: none;
}

.subscribe-form .form-control:focus{
  outline: 2px solid var(--theme-color);
}

.subscribe-form .form-control::placeholder{
  color: var(--color-dark);
}

.subscribe-form .theme-btn {
  position: absolute;
  padding: 10px 18px;
  right: 4px;
  top: 3px;
}

.subscribe-form .theme-btn:hover {
  color: var(--color-white);
}

.subscribe-form .theme-btn::before{
  background: var(--theme-color2);
}

.footer-widget-box.about-us .footer-newsletter p{
  font-size: 18px;
  font-weight: 500;
}

.footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.footer-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.footer-menu li::after{
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--theme-color);
  right: -18px;
  top: 13px;
  border-radius: 50px;
}

.footer-menu li:last-child::after{
  display: none;
}

.footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright {
  padding: 10px 0;
  border-top: 1px solid #bababa;
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  line-height: 1;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}


@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

  .footer-menu li::after{
    right: -12px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}




/*====================
51. Home 2
======================*/


.home-2 .navbar::before{
  display: none;
}

.home-2 .main{
  margin-top: -9rem;
}

.home-2 .hero-single{
  padding-top: 220px;
  padding-bottom: 120px;
}

.home-2 .hero-single::before{
  opacity: .85;
}

.home-2 .navbar-brand img{
  width: 190px;
}

.home-2 .hero-img-wrap{
  position: relative;
}

.home-2 .hero-img{
  text-align: end;
  position: relative;
}

.home-2 .hero-img::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: var(--theme-gradient);
  width: 80%;
  height: 100%;
  transform: rotate(10deg);
  border-radius: 50px;
  z-index: -1;
}

.home-2 .hero-img img{
  border-radius: 15px 100px 15px 100px;
  width: 90%;
}

.home-2 .hero-img-wrap .event-countdown.ec-1{
  margin-top: -150px;
  border-radius: 100px 0 0 100px;
}

.home-2 .hero-shape{
  position: absolute;
  left: 0;
  top: 140px;
  width: 350px;
  opacity: .15;
  z-index: -1;
}


@media all and (min-width: 992px) {
  .home-2 .navbar .nav-item .nav-link{
    color: var(--color-white);
  }

  .home-2 .navbar.fixed-top .nav-item .nav-link{
    color: var(--color-dark);
  }

  .home-2 .nav-right .nav-right-link{
    color: var(--color-white);
  }

  .home-2 .navbar.fixed-top .nav-right .nav-right-link{
    color: var(--color-dark);
  }
}

@media all and (max-width: 991px) {
  .home-2 .navbar {
    background: transparent;
  }

  .home-2 .navbar.fixed-top {
    background: var(--color-white);
  }

  .home-2 .hero-single{
    padding-top: 320px;
    padding-bottom: 150px;
  }

  .home-2 .mobile-menu-right .nav-right-link{
    color: var(--color-white);
  }

  .home-2 .navbar-toggler-mobile-icon{
    color: var(--color-white);
  }

  .home-2 .navbar.fixed-top .mobile-menu-right .nav-right-link,
  .home-2 .navbar.fixed-top .navbar-toggler-mobile-icon{
    color: var(--color-dark);
  }

  .home-2 .hero-img{
    margin-top: 80px;
  }

  .home-2 .hero-img img{
    width: 95%;
  }

  .home-2 .event-countdown.ec-1 .time-wrap{
    gap: 2px;
  }

  .home-2 .event-countdown.ec-1 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}



/*====================
52. Home 3
======================*/


.home-3 .navbar::before{
  display: none;
}

.home-3  .main{
  margin-top: 0;
}

.home-3 .hero-single .hero-date{
  justify-content: center;
}




/*********Form Css***********/

.form_section{
  position: relative;
  background: #fff;
  border: 1px solid #d1d1d1;
  padding: 10px 20px;
  box-shadow: 0 4px 50px rgba(255, 255, 255, .3);
  border: none;
  z-index: 1;
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px 15px 30px 15px;
  border: none;

}
.form_section .btn-theme{
  font-size: 18px;
  padding: 7px 14px;
}
.form_section::before {
  left: -15px;
  height: 85%;
  width: 15px;
  bottom: 0;
  border-radius: 8px 0 0 0;
}
/*.form_section::before, .form_section::after {
    content: "";
    position: absolute;
    background-color: rgba(216, 221, 225, 0.4);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}*/
.form_section::after {
  left: -15px;
  width: 85%;
  height: 15px;
  bottom: -15px;
  border-radius: 0 0 8px 0;
}

.form-title{
  text-align: center;
  color: #222;
  font-weight: 700;
  padding:12px 0 15px;
  margin-bottom: 0;
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
  font-family: var(--gotur-heading-font);
  font-size: 25px;
  svg{
    width: 70px;
    height: auto;
    transform: rotate(22deg);
  }
}

.form_section .form-group label {
  text-transform: capitalize;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 15px;
  color: #000;
  display: none;
}
.form_section .form-heading{
  background-color: var(--theme-color);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.form_section .form-control{
  padding: 12px;
  border-radius: 40px !important;
  color: #000000;
  background-color: #f0f1f5;
  height: 50px;
  transition: 0.3s;
  border: 2px solid #d7bfbf;
  padding-left: 38px;
}
.form_section .form-control:focus{
  box-shadow: none;
  background-color: #fff;
  color: #222;
  border: 2px solid var(--theme-color);
}
.form-group{
  position: relative;
  margin-bottom: 8px;
}

.form_section .form-group i, .form_section .input-group i {
  position: absolute;  
  left: 8px;
  top: 50% !important;
  transform: translateY(-50%);
  padding: 4px;
  text-align: center;
  z-index: 1;
  line-height: 38px;
  background-color: transparent;
  color: var(--theme-color);
  border-radius: 50% !important;
  font-size: 15px;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_section.hghghhghg .form-group i, .form_section.hghghhghg .form_section .input-group i{
  transform: none;
}
.form_section.hghghhghg label{
  color: #fff;
}
.form_section .input-group{
  margin-bottom: 10px;
}
.form_section .input-group .form-control{
  border-radius: 8px !important;
}
.form-btn{
  width: 48%;
  margin: 0px 26%;
  border-radius: 30px;
}

.input-group>.form-control:focus, .input-group>.form-select:focus{
  z-index: 0;
  box-shadow: none;
}
.form_section .input-group-text{
  padding: 7px;
  background-color: var(--theme-color);
  border: none;
}
.form_section .input-group-text i{
  font-size: 20px;
  color: #fff;
}

/*float  buttons*/
.fixed__btns{
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  height: 50px;
  z-index: 99;
  padding: 0;
  gap: 0;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  border-radius: 18px 18px 0 0;
}
.float{
  position: relative;
  width: 35px;
  height: 100%;
  color: #FFF;
  border-radius: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  img{
    width: 27px;
    margin-right: 5px;
  }
  span{
    font-weight: 600;
  }
}
.float_whatsapp{
  background-color: #25D366;
}
.float-popup{
  background-color: var(--theme-color);
  color: #fff;
}
.float:hover{
  color: #000;
}
.float-call{
  background-color: var(--theme-color);
  font-size: 15px;
  font-weight: 100 !important;
}
.float-mail{
  background-color: var(--second-color);
  font-size: 15px;
  font-weight: 100 !important;
}

.my-float{
  margin-top:5px;
  color: #25d366;
}
.my-call{
  margin-top:5px;
}
.float_whatsapp{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 175px !important;
  height: 40px;
  border-radius: 10px;
  animation: float 1s ease-in-out infinite;
}
.fixed__btns{
  background-color: transparent;
  height: 0;
}
.float-call{
  left: 20px;
  position: fixed;
  bottom: 20px;
  width: 133px !important;
  height: 40px;
  border-radius: 10px;
  animation: float 1s ease-in-out infinite;
  border: 1px solid #fff;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Moves up */
  }
  100% {
    transform: translateY(0);
  }
}

.phone_res-float-btn {
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 0 !important;
  z-index: 111;
}
.phone_res-float-btn a{
  width: 50% !important;
  border-radius: 0;
  padding: 10px 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid #bababa;
  font-size: 17px;
  display: flex;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  color: #000;
}
.phone_res-float-btn .button__1{
  position: relative;
  left: 0 !important;
  border-top-left-radius: 20px;
}
.phone_res-float-btn .button__2{
  position: relative;
  border-top-right-radius: 20px;
  right: 0 !important;
}
.phone_res-float-btn img{
  width: 25px;
  height: 25px;
}
.terms-content h3 {
  font-weight: 600;
  font-size: 30px;
}

.terms-list li {
  list-style: auto !important;
  display: block !important;
}

.sidebar-item {
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}

.sidebar-item>h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  color: #000;
  border-bottom: 2px solid var(--theme-color);
}

.title-1 h4,
.title-1 h3 {
  font-weight: 600;
  font-size: 30px;
  position: relative;
  margin-bottom: 45px;
}

.title-1 h4:before,
.title-1 h3:before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  content: "";
  background-color: var(--theme-color);
}



.sidebar-category {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.sidebar-category li {
  list-style: none;
  margin-bottom: 1px;
  width: 100%;
}

.sidebar-category li .active {
  background: var(--theme-color);
  color: #FFF;
}

.sidebar-category li a {
  background: #ffffff none repeat scroll 0 0;
  color: #000;
  display: block;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  margin-bottom: 8px;
  position: relative;
  text-transform: capitalize;
  box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
  border-radius: 6px;
  i{
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-color);
    font-size: 17px;
  }
}
.sidebar-category li a:hover {
  background: var(--theme-color);
  color: #fff;
}
.spad {
  padding-top: 100px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.breadcrumb__text {
  text-align: center;
}

.breadcrumb__links {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-bottom: none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  text-align: center;
}

.breadcrumb__links a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}
.breadcrumb__links span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links a::after {
  position: absolute;
  right: -18px;
  top: 0px;
  font-family: var(--icon-font);
  content: "\f105";
  font-size: 20px;
  font-weight: 900;
}

.breadcrumb__links span:last-child {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-right: 26px;
  position: relative;
}

.breadcrumb__text h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
}



/*    phone toggle bar*/
.overlay_bg #myNav{
  border-right: 2px solid var(--theme-color);
}
#myNav{
  position: relative;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
}
.overlay_bg{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(0 0 0 / 70%);
  z-index: 10;
  transition: 0.5s linear;
}

.overlay-content {
  position: relative;
  left: 0;
  width: 100%;
}

#myNav .overlay-content a {
  padding: 15px;
  text-decoration: none;
  font-size: 17px;
  color: #000;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #fff;
}
#myNav .overlay-content .dropdown-menu {
  background-color: var(--theme-color);
}
#myNav .overlay-content .dropdown-menu a{
  border: none;
}
#myNav .overlay-content .dropdown-toggle::after {
  float: right;
  margin-top: 10px;
}

#myNav a:hover, .overlay a:focus {
  color: var(--theme-color);
}

#myNav .closebtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 35px;
  color: #fff;
  z-index: 1;
  background: red;
  padding-left: 3px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}
.toggle-icon{
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  z-index: 11;
  top: 38px;
  right: 15px;
  color: var(--theme-color);
  background: transparent;
  padding: 1px 10px;
  border-radius: 5px;
}
.overlay-content .phone-site-logo{
  font-size: 30px;
  font-weight: 500;
  background: var(--theme-color);
  padding: 25px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
}
.overlay-content .phone-site-logo img{
  width: 100px;
  background-color: #fff;
  border-radius: 6px;
}
#myNav .overlay-content .dropdown ul{
  padding-left: 12px;
}
#myNav .overlay-content .dropdown ul a{
  font-size: 14px;
  padding: 5px 10px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 600px) {
  .brand-logo a h3{
    font-size: 26px;
  }
}
@media screen and (max-height: 450px) {
  ##myNav a {font-size: 20px}
  #myNav .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}


.single-section {
  position: relative;
  padding: 30px 0;
  img{
    border-radius: 20px;
    margin-bottom: 12px;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }
  .form_section{
    border: 2px solid var(--theme-color);
    padding: 10px 15px;
  }
}

.single-section .image_section {
  position: relative;
}

.single-section .image_section .view-all {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(231, 56, 39, 0) 100%);
  margin-bottom: 0;
  padding: 10px;
  text-transform: capitalize;
  color: white;
  font-weight: 800;
  line-height: 1;
}

.single-section .image_section .slider-thumbnail {
  margin-top: 5px;
  overflow: hidden;
}

.single-section .image_section .slider-thumbnail .slick-slide>div {
  margin: 0 5px;
}

.single-section .image_section .slider-thumbnail .slick-list {
  margin-left: -5px;
  margin-right: -5px;
}

.single-section .facility_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
  margin-top: 20px;
}

.single-section .facility_sec .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px;
  position: relative;
}

.single-section .facility_sec .icon-box svg {
  width: 30px;
  height: auto;
  fill: var(--theme-color);
}

.single-section .facility_sec .icon-box .content {
  margin-left: 15px;
}

.single-section .facility_sec .icon-box .content h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
}

.single-section .facility_sec .icon-box .content h6 {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
  margin-bottom: 0;
}

.single-section .facility_sec .icon-box:after {
  content: "";
  width: 1px;
  height: 25px;
  background-color: var(--theme-color);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single-section .facility_sec .icon-box:last-child:after {
  display: none;
}

.single-section .description-section .menu-top {
  margin-top: 30px;
  padding: 12px 0;
  background-color: white;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .menu-top li a {
  color: var(--theme-color);
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.active a {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.mobile-menu {
  display: none;
}

.single-section .description-section .menu-top.sticky {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding: 16px 0;
  -webkit-animation: smoothScroll 1s forwards;
  animation: smoothScroll 1s forwards;
}

.single-section .description-section .menu-top.sticky li a {
  padding: 15px 30px;
}

.single-section .description-section .menu-top.menu-up {
  margin-top: 0;
  margin-bottom: 30px;
}

.single-section .description-section .description-details .content-title {
  text-transform: uppercase;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
}

.single-section .description-section .description-details .menu-part {
  margin-top: 20px;
  padding: 30px;
  background-color: white;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .description-details .menu-part.page-section .zoom-gallery>div:nth-child(-n+3) {
  margin-bottom: 0;
}

.single-section .description-section .description-details .menu-part .accordion-plan {
  position: relative;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card {
  border-radius: 0;
  border: 1px solid #f9f9f9;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body {
  color: #444444;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight {
  margin-top: 10px;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight li {
  display: block;
  text-transform: capitalize;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight li i {
  margin-right: 5px;
  font-size: 12px;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight li img {
  margin-right: 5px;
  width: 18px;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card+.card {
  margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .list-view {
  margin-top: 0;
}

.single-section .description-section .description-details .menu-part .list-view .list-img {
  width: 30%;
}

.single-section .description-section .description-details .menu-part .list-view .facility-icon {
  margin-top: 10px;
}

.single-section .description-section .description-details .menu-part .list-view .list-box {
  padding: 0;
}

.single-section .description-section .description-details .menu-part .list-view+.list-view {
  margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay {
  position: relative;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  font-size: 22px;
  display: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery>div:nth-child(-n+3) {
  margin-bottom: 30px;
}

.single-section .description-section .description-details .menu-part.facility h6 {
  text-transform: capitalize;
  font-weight: 700;
  color: #222222;
}

.single-section .description-section .description-details .menu-part.facility h6 img {
  margin-right: 5px;
  width: 20px;
}

.single-section .description-section .description-details .menu-part.facility ul {
  margin-left: 10px;
}

.single-section .description-section .description-details .menu-part.facility ul li {
  display: block;
  text-transform: capitalize;
  line-height: 1.9;
}

.single-section .description-section .description-details .menu-part.facility ul li i {
  font-size: 8px;
  margin-right: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part.map iframe {
  width: 100%;
  height: 420px;
  margin-bottom: -5px;
}

.single-section .description-section .description-details .menu-part.review .review-box .rating span {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-left: 10px;
  font-weight: 700;
}

.single-section .description-section .description-details .menu-part.review .review-box h6 {
  font-size: 14px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

.single-section .description-section .description-details .menu-part.review .review-box p {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part.review .review-box+.review-box {
  border-top: 1px solid #f9f9f9;
  padding-top: 12px;
  margin-top: 15px;
}

.single-section .description-section .description-details .menu-part.policy p {
  color: #212121;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.6;
}

.single-section .description-section .description-details .menu-part.policy p:last-child {
  margin-bottom: 0;
}

.single-section .description-section .description-details .menu-part+.menu-part {
  margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .rooms-box {
  width: 100%;
}

.single-section .description-section .description-details .menu-part .rooms-box tbody tr {
  display: block;
}

.single-section .description-section .description-details .menu-part .rooms-box tbody tr+tr {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #f9f9f9;
}

.single-section .description-section .description-details .menu-part .rooms-box td:first-child {
  width: 25%;
}

.single-section .description-section .description-details .menu-part .rooms-box td:nth-child(2) {
  width: 55%;
}

.single-section .description-section .description-details .menu-part .rooms-box td:nth-child(3) {
  width: 20%;
  text-align: right;
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details h6 {
  font-size: 14px;
  margin-bottom: 3px;
  color: rgba(0, 0, 0, 0.74);
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details h5 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details .btn {
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 0;
  margin-top: 7px;
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details span {
  display: block;
  color: rgba(0, 0, 0, 0.72);
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail h6 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail .row {
  width: 100%;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail .facility-detail li {
  display: block;
  color: var(--theme-color);
  text-transform: capitalize;
  line-height: 28px;
  letter-spacing: 0.06em;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail .facility-detail li img {
  margin-right: 8px;
  width: 20px;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail .facility-detail li i {
  font-size: 12px;
  margin-right: 5px;
  color: rgba(0, 0, 0, 0.5);
}

.single-section .description-section .description-details .menu-part .rooms-box .room-title {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-section .description-section .description-details.full-slider .menu-part {
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 70px;
}

.single-section .description-section .description-details.full-slider .menu-part .row {
  margin-bottom: 20px;
}

.single-section .description-section.tab-section .menu-top {
  padding: 0;
  background-color: transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs {
  margin-bottom: 15px;
  background-color: white;
  border-bottom: none;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item.active {
  border: none;
  border-bottom: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link.active {
  border: none;
  border-bottom: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.single-section .description-section.tab-section .menu-top.sticky {
  background-color: white;
  margin-bottom: 0;
}

.single-section .description-section.tab-section .menu-top.sticky .nav-tabs {
  margin-bottom: 0;
}

.single-section .description-section.tab-section .description-details .menu-part {
  margin-top: 0;
}

.single-section .single-sidebar {
  background-color: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar h4.title {
  text-transform: capitalize;
  font-weight: 700;
  margin-top: -4px;
}

.single-section .single-sidebar p {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .single-sidebar p i {
  font-size: 13px;
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.59);
}

padding: 0;
}

margin-bottom: 20px;
}

.single-section .single-sidebar .newsletter-sec {
  padding: 20px;
}

.single-section .single-sidebar .newsletter-sec .button {
  margin-top: 15px;
  text-align: right;
}

.single-section .single-sidebar .newsletter-sec .button .btn {
  padding: 6px 14px;
  font-size: 14px;
  text-transform: capitalize;
}

.single-section .single-sidebar .overlay-map {
  position: relative;
  margin-bottom: 10px;
}

.single-section .single-sidebar .overlay-map img {
  height: 100px;
  width: 100%;
}

.single-section .single-sidebar .overlay-map iframe,
.single-section .single-sidebar .overlay-map .map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.0001;
  z-index: 1;
}

.single-section .single-sidebar .overlay-map h6 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--theme-color);
  text-transform: capitalize;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  z-index: 0;
  font-weight: 600;
  margin-bottom: 0;
}

.single-section .single-sidebar .price-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-section .single-sidebar .price-part .left-part a {
  color: var(--theme-color);
  font-weight: 700;
  text-transform: capitalize;
}

.single-section .single-sidebar .price-part .left-part span {
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 24px;
}

.single-section .single-sidebar .price-part .left-part span i {
  font-size: 10px;
  margin-right: 5px;
  color: green;
}

.single-section .single-sidebar .price-part .left-part span.red {
  color: darkred;
}

.single-section .single-sidebar .price-part .right-part {
  margin-left: auto;
  text-align: right;
}

.single-section .single-sidebar .price-part .right-part span {
  color: rgba(0, 0, 0, 0.4);
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 700;
}

.single-section .single-sidebar .price-part .right-part p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--theme-color);
}

.single-section .single-sidebar .book-btn-section .btn-rounded {
  padding: 6px 14px;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 0;
}
.single-section .single-sidebar .book-btn-section .rooms-section .selector-box {
  text-align: left;
  padding: 10px;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .title_room {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box label {
  text-transform: capitalize;
  margin-right: 30px;
  margin-bottom: 0;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box .input-group {
  width: 140px;
  margin-left: auto;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box .input-group .btn {
  background-color: transparent;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box .input-group .form-control {
  padding: 0;
  text-align: center;
  border: none;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box+.qty-box {
  margin-top: 10px;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls+.room-cls {
  margin-top: 10px;
  border-top: 1px solid #f9f9f9;
  padding-top: 10px;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .bottom-part {
  border-top: 1px solid #f9f9f9;
  margin-top: 10px;
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .bottom-part .add-room {
  text-transform: capitalize;
  color: var(--theme-color);
  font-weight: 700;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .bottom-part .btn {
  margin-left: auto;
}

.single-section .single-sidebar .contact-title {
  color: var(--theme-color);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.single-section .single-sidebar .bottom_sec {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .bottom_sec h6 {
  text-transform: capitalize;
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 700;
}

.single-section .single-sidebar .bottom_sec h6:last-child {
  margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-section .single-sidebar .weather-sec li svg {
  width: 40px;
  margin: 0;
}

.single-section .single-sidebar .weather-sec li h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-section .single-sidebar .weather-sec li h6 {
  font-size: 12px;
  margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec li+li {
  margin-left: 20px;
}

.single-section .single-sidebar .social-box {
  margin-top: 18px;
}

.single-section .single-sidebar .social-box i {
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: white;
  padding: 9px;
  background-color: var(--theme-color);
  border-radius: 100%;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-right: 3px;
}

.single-section .single-sidebar+.single-sidebar {
  margin-top: 30px;
}

.single-section .single-sidebar .order-cart .cart-items {
  margin-top: 20px;
}

.single-section .single-sidebar .order-cart .cart-items .items {
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items h6 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--theme-color);
  font-weight: 500;
  margin-bottom: 0;
}

.single-section .single-sidebar .order-cart .cart-items .items+.items {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box {
  width: 120px;
  margin-top: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group {
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .btn {
  padding: 5px 10px;
  font-size: 10px;
  line-height: 1;
  background-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .form-control {
  padding: 2px;
  width: 50px;
  text-align: center;
  border-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .price {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6 {
  padding-left: 25px;
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid green;
  top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: green;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6 {
  padding-left: 25px;
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid red;
  top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: red;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total {
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total span {
  float: right;
}

.single-section .single-sidebar .order-cart .cart-bottom p {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0;
  max-width: 70%;
}

.single-section .single-sidebar .order-cart .cart-bottom .checkout {
  margin-top: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart {
  text-align: center;
  margin-top: 50px;
}

.single-section .single-sidebar .order-cart .empty-cart h5 {
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  margin-bottom: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart img {
  margin-bottom: 20px;
  opacity: 0.5;
}


.continue-btn {
  margin-top: 30px;
  text-align: center;
}

.success-section {
  overflow: hidden;
}

.success-section .animation {
  max-width: 100%;
}

.success-section .success-detail {
  text-align: center;
  margin-top: 15px;
}

.success-section .success-detail img {
  margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.success-section .success-detail p {
  font-size: 16px;
  max-width: 48%;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.7);
  line-height: 30px;
  padding-top: 10px;
  text-transform: capitalize;
}

.success-section .success-detail .btn {
  padding: 8px 20px;
  text-transform: capitalize;
  margin-top: 18px;
}
.fs-14{
  font-size: 14px;
}
.text-gray-6 {
  color: #4E5561 !important;
}

@media(max-width:768px){
  .site-title {
    font-size: 30px;
  }
  .site_name{
    font-size: 15px;
  }
  .about-img img.img-1{
    width: 410px;
    height: 410px;
    margin-inline: auto;
  }
  .about-img .img-3{
    width: 123px;
    height: 123px;
    top: 0;
  }
  .about-img .img-2{
    width: 150px;
    height: 150px;
  }
  .schedule-nav .nav-link{
    gap: 0;
    padding: 5px;
  }
  .schedule-nav .nav{
    justify-content: center;
  }
  .schedule-img img{
    height: 200px;
  }
  .choose-img{
    margin: 0;
  }
  .choose-img img{
    height: 300px;
    margin: 0
  }
  .footer-menu li{
    margin-inline: auto;
  }
  .footer-menu{
    text-align: center;
    float: none;
    margin-top: 4px;
  }
  .need_res_border {
    border-top: 1px solid var(--border-white-color);
    margin-top: 10px;
    padding-top: 0;
  }
}



@media(max-width:450px){
  .about-img img.img-1{
    width: 310px;
    height: 310px;
    margin-inline: auto;
  }
  .team-img{

    width: 155px;
    height: 155px;
  }
  .cont_caption h1{
    font-size: 33px;
  }
}

/***********************************************/
/********** New CSS  **********/
/***********************************************/

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.gotur-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.gotur-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.gotur-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gotur-base);
  border: 1px solid var(--gotur-base);
  transition: all 400ms ease;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  background-color: var(--gotur-base);
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--gotur-base);
  transition: all 400ms ease;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--gotur-base);
  border-color: transparent;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}
.main-header {
  position: relative;
  z-index: 99;
}
.main-header .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1830px;
}
.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--gotur-white, #fff);
  position: relative;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 15px 30px;
  }
}
@media (max-width: 575px) {
  .main-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.main-header__nav {
  margin-left: 90px;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .main-header__nav {
    margin-left: 50px;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
}
.main-header__info a {
  font-size: 16px;
  color: var(--gotur-white, #fff);
}
.main-header__info a + a {
  margin-left: 24px;
}
.main-header__info + .main-header__btn {
  margin-left: 36px;
}
.main-header__btn {
  border: 100px;
  padding: 13.5px 25px;
  font-size: 16px;
  color: var(--gotur-white, #fff);
  font-weight: 700;
  background-color: var(--gotur-primary, #F7921E);
}
.main-header__btn::after, .main-header__btn::before {
  background-color: var(--gotur-white, #fff);
}
.main-header__btn:hover {
  color: var(--gotur-primary, #F7921E);
}
.main-header__btn + .main-header__call {
  margin-left: 40px;
}
.main-header__call {
  position: relative;
}
.main-header__call__icon {
  max-width: 44px;
  width: 100%;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-base);
  position: absolute;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.main-header__call__icon::after {
  content: "";
  background-color: transparent;
  border-radius: 1000px;
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid var(--gotur-base);
  z-index: -1;
}
.main-header__call__content {
  padding-left: 60px;
}
.main-header__call__subtitle {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: var(--gotur-text, #595959);
  margin-bottom: 2px;
}
.main-header__call a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: var(--gotur-text, #595959);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__call a:hover {
  background-size: 100% 1px;
}
.main-header__call a:hover {
  color: var(--gotur-primary, #F7921E);
}
.main-header__btn-popup {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(var(--gotur-base-rgb, 99, 171, 69), 0.1);
  font-size: 18px;
  color: var(--gotur-base);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-header__btn-popup {
    display: none;
  }
}
.main-header__btn-popup::after {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--gotur-base);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.main-header__btn-popup:hover {
  color: var(--gotur-white, #fff);
}
.main-header__btn-popup:hover::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main-header--one {
  background-color: transparent;
  margin-bottom: -101px;
}
.main-header--one .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1770px;
}
.main-header--one .main-header__inner {
  background-color: transparent;
}
.main-header--one .main-menu__list > li.current > a,
.main-header--one .main-menu__list > li:hover > a {
  color: var(--gotur-base) !important;
}
.main-header--one .main-menu .main-menu__list > li {
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-header--one .main-menu .main-menu__list > li + li {
  margin-left: 42px;
}
.main-header--one .main-header__info a {
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.main-header--one .main-header__info a:hover {
  color: var(--gotur-base);
}
.main-header--one .main-header__info a,
.main-header--one .main-menu .main-menu__list > li > a {
  color: var(--gotur-black, #1D231F);
}
.main-header--one .main-header__right {
  gap: 60px;
}
@media (max-width: 1470px) {
  .main-header--one .main-header__right {
    gap: 40px;
  }
}
@media (max-width: 400px) {
  .main-header--one .main-header__right {
    gap: 10px;
  }
}
@media (max-width: 1316px) {
  .main-header--one .main-header__btn {
    display: none;
  }
}
@media(max-width:992px){
  .main-header__btn, .main-header--two .main-header__call{
    display: none;
  }
  .main-header--two .container-fluid{
    padding-inline: 8px !important;
  }
}
.main-header--one .main-header__btn::after, .main-header--one .main-header__btn::before {
  background-color: var(--gotur-base);
}
.main-header--one .main-header__btn:hover {
  color: var(--gotur-white, #fff);
}
.main-header--one .main-header__nav {
  margin-left: 0;
}
@media (min-width: 1200px) {
  .main-header--one .main-header__nav {
    margin-left: 60px;
  }
}
@media (max-width: 1350px) {
  .main-header--one .main-menu .main-menu__list > li + li {
    margin-left: 30px;
  }
}
.main-header--two {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid var(--gotur-base);
}
@media (max-width: 1370px) {
  .main-header--two {
    background-color: var(--gotur-base);
  }
  .main-header--two .main-header__logo::before {
    content: "";
    background: var(--gotur-white, #fff);
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 99%;
  }
}
.main-header--two .container-fluid {
  max-width: 1780px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
@media (max-width: 1660px) {
  .main-header--two .main-header__nav {
    margin-left: 100px;
  }
  .main-header--two .main-menu .main-menu__list > li + li {
    margin-left: 30px;
  }
}
.main-header--two .main-header__inner {
  background-color: var(--gotur-base);
  position: relative;
  z-index: 2;
  transition: margin-bottom 500ms ease, margin-bottom 500ms ease;
}
@media (max-width: 1270px) {
  .main-header--two .main-header__inner {
    margin-bottom: 0px;
  }
}
.main-header--two .main-header__logo {
  padding: 6.5px 25px 6.5px 10px;
  background-color: var(--gotur-white, #fff);
  border-radius: 0 1000px 1000px 0;
  position: relative;
  z-index: 1;
  img{
    width: 97px;
  }
}
.main-header--two .main-header__logo::after {
  content: "";
  background-color: var(--gotur-white, #fff);
  border-radius: 0 1000px 1000px 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10px;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 767px) {
  .main-header--two .main-header__logo {
    padding: 7px 32px 7px 0px;
  }
}
.main-header--two .main-header__call {
  padding: 22px 23px;
  background-color: var(--gotur-white, #fff);
  border-radius: 1000px 0 0 1000px;
  position: relative;
  z-index: 1;
}
.main-header--two .main-header__call::after {
  content: "";
  background-color: var(--gotur-white, #fff);
  border-radius: 1000px 0 0 1000px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -10px;
  opacity: 0.5;
  z-index: -1;
}
.main-header--two .main-header__inner {
  padding: 0px;
}
.main-header--two .mobile-nav__btn {
  margin-left: 26px;
  margin-right: 20px;
}
.main-header--two .mobile-nav__btn span {
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 767px) {
  .main-header--two .main-header__nav {
    margin-left: 0;
  }
}
.main-header--four {
  border-bottom: 1px solid rgba(var(--gotur-white-rgb, 255, 255, 255), 0.5);
  background-color: transparent;
  margin-bottom: -107px;
}
@media (min-width: 1550px) {
  .main-header--four .container-fluid {
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-header--four .main-header__inner {
  background-color: transparent;
}
.main-header--four .main-header__nav {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .main-header--four .main-header__nav {
    margin-right: 60px;
  }
}
.main-header--four .main-header__info a:hover {
  color: var(--gotur-primary, #F7921E);
}
.main-header--four .main-header__info a + a {
  margin-left: 25px;
}
@media (min-width: 576px) {
  .main-header--four .main-header__info a + a {
    margin-left: 40px;
  }
}
.main-header--four .main-header__info + .main-header__element__btn {
  margin-left: 60px;
}
.main-header--four .mobile-nav__btn {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .main-header--four .mobile-nav__btn {
    margin-left: 40px;
  }
}
.main-header--four .mobile-nav__btn span {
  background-color: var(--gotur-white, #fff);
}
.main-header--four .main-header__element__btn {
  background-color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.1);
  color: var(--gotur-white, #fff);
  font-size: 22px;
}
.main-header--four .main-menu .main-menu__list > li {
  padding-top: 42.5px;
  padding-bottom: 42.5px;
}
.main-header--four .main-menu .main-menu__list > li.current > a,
.main-header--four .main-menu .main-menu__list > li:hover > a {
  color: var(--gotur-primary, #F7921E);
}
@media (max-width: 1199px) {
  .main-header--four .main-header__inner {
    padding: 15px 0px;
  }
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--gotur-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--gotur-black-rgb, 29, 35, 31), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned.main-header--one {
  background-color: var(--gotur-gray, #F3F8F6);
}
.sticky-header--cloned.main-header--one .topbar-one {
  display: none;
}
.sticky-header--cloned.main-header--two {
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 1280px) {
  .sticky-header--cloned.main-header--two {
    background-color: var(--gotur-base);
  }
}
.sticky-header--cloned.main-header--two .topbar-one {
  display: none;
}
.sticky-header--cloned.main-header--two .main-header__inner {
  margin-bottom: 0;
}
.sticky-header--cloned.main-header--four {
  background-color: var(--gotur-black, #1D231F);
  border-bottom: 0px solid transparent;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--gotur-black, #1D231F);
  transition: all 500ms ease;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
.mobile-nav__btn:hover span {
  background-color: #0a6786;
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 33.5px;
  padding-bottom: 33.5px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 40px;
}
.main-menu .main-menu__list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--gotur-white, #fff);
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  transition: all 500ms ease;
  gap: 3px;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--gotur-black, #1D231F);
  text-shadow: 0 0 0.1px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 318px;
  width: 100%;
  max-width: 305px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 0 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  max-height: 324px;
  overflow: auto;
  border-bottom: 3px solid var(--gotur-base);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 16px;
  line-height: 26px;
  color: var(--gotur-black, #1D231F);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 7px 15px 7px;
  transition: 400ms;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 14px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--gotur-white, #fff);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li > a::before{
  position: relative;
  margin-right: 5px;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--gotur-base);
  color: var(--gotur-white, #fff);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--gotur-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--gotur-black, #1D231F);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--gotur-base);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.demo-one .row {
  --bs-gutter-y: 30px;
}
.demo-one__card {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--gotur-black3-rgb, 0, 0, 0), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-size: 15px;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
}
.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demo-one__title a:hover {
  background-size: 100% 1px;
}
.demo-one__title a:hover {
  color: var(--gotur-base);
}
.demo-one__image {
  position: relative;
  overflow: hidden;
}
.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}
.demo-one__btns {
  background-color: rgba(var(--gotur-black3-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  font-size: 14px;
  padding: 12px 29px;
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--gotur-black3-rgb, 0, 0, 0), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__btns {
  flex-direction: column;
}
.home-showcase .demo-one__btn {
  min-width: 135px;
  text-align: center;
  justify-content: center;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--gotur-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gotur-black3, #000000);
  opacity: 0.6;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--gotur-black, #1D231F);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}
.mobile-nav__content .main-header__logo--mobile {
  display: none;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 20px;
  line-height: 1;
  color: var(--gotur-white, #fff);
  cursor: pointer;
  transition: all 500ms ease;
}
.mobile-nav__close svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.mobile-nav__close:hover {
  color: var(--gotur-base);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.1);
  max-height: 300px;
  overflow: auto;
}
.mobile-nav__content .main-menu__list li > a i{
  display: none;
}
.mobile-nav__content .main-menu__list li > a button i{
  display: block;
}
.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list--two li:first-child {
  border-top: 1px solid RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list > li.current > a,
.mobile-nav__content .main-menu__list > li:hover > a {
  color: var(--gotur-base);
  text-shadow: 0 0 0.5px currentColor;
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--gotur-white, #fff);
  font-size: 16px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  text-transform: capitalize;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li ul li a {
  font-size: 14px;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--gotur-base);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--gotur-base);
  border: none;
  outline: none;
  color: var(--gotur-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}
.mobile-nav__content .main-menu__list li a button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-black, #1D231F);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--gotur-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--gotur-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mobile-nav__contact li {
  color: var(--gotur-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--gotur-base);
}
.mobile-nav__contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gotur-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--gotur-white, #fff);
}
.mobile-nav__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/****Slider**/
/*******Slider Two********/
.main-slider-two {
  position: relative;
  overflow: hidden;
}
.main-slider-two__carousel {
  position: relative;
  width: 100%;
}
.main-slider-two__carousel::after {
  position: absolute;
  content: "";
  width: 304px;
  height: 304px;
  border-radius: 50%;
  background-color: var(--gotur-white, #fff);
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .main-slider-two__carousel::after {
    display: none;
  }
}
.main-slider-two__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 2;
  flex-direction: column;
  transform: translateY(-50%);
}
.main-slider-two__carousel.owl-carousel .owl-nav button {
  transform: rotate(90deg);
  width: 36.6px;
  height: 36.6px;
  font-size: 12px;
}
.main-slider-two__carousel.owl-carousel .owl-nav::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  content: "";
  height: 234px;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.15);
  z-index: -1;
}
.main-slider-two__carousel.owl-carousel .owl-nav::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 1px;
  content: "";
  height: 110px;
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 767px) {
  .main-slider-two__carousel.owl-carousel .owl-nav {
    display: none;
  }
}
@media (min-width: 1600px) {
  .main-slider-two .container {
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-slider-two__item {
  background-color: var(--gotur-white, #fff);
  position: relative;
  z-index: 1;
  height: 650px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-slider-two__item {
    height: auto;
  }
}
.main-slider-two__item::before {
  content: "";
  width: 998px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/shapes/hero-1-4.png);
  background-repeat: no-repeat;
  background-position: left top;
}
.main-slider-two__bg {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1);
  transition: transform 10000ms ease;
}
.main-slider-two__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.4);
  content: "";
  z-index: 1;
}
.main-slider-two__content {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-slider-two__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.main-slider-two__sub-title {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 56%;
  margin-bottom: 10px;
  position: relative;
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  color: var(--gotur-primary, #F7921E);
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-120px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__sub-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .main-slider-two__sub-title {
    font-size: 20px;
  }
}
.main-slider-two__title {
  margin-bottom: 0px;
  display: inline-block;
  overflow: hidden;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 800;
  font-size: 70px;
  line-height: 138%;
  color: var(--gotur-black, #1D231F);
  opacity: 0;
  transform: translateX(200px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 991px) {
  .main-slider-two__title {
    font-size: 60px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 40px;
    line-height: 130%;
    max-width: 380px;
  }
}
@media (max-width: 575px) {
  .main-slider-two__title {
    font-size: 30px;
    line-height: 130%;
  }
}
.main-slider-two__title__overlay-group {
  display: block;
}
.main-slider-two__title__overlay {
  background-color: var(--gotur-base);
  width: 16.66%;
  height: calc(100% - 10px);
  display: block;
  position: absolute;
  transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2200ms;
  z-index: 1;
}
.main-slider-two__title__overlay:nth-child(2), .main-slider-two__title__overlay:nth-child(4), .main-slider-two__title__overlay:nth-child(6) {
  top: 5px;
}
.main-slider-two__title__overlay:nth-child(2) {
  left: 16.66%;
}
.main-slider-two__title__overlay:nth-child(4) {
  left: 49.98%;
}
.main-slider-two__title__overlay:nth-child(6) {
  left: 83.3%;
}
.main-slider-two__title__overlay:nth-child(1), .main-slider-two__title__overlay:nth-child(3), .main-slider-two__title__overlay:nth-child(5) {
  bottom: 5px;
}
.main-slider-two__title__overlay:nth-child(1) {
  left: 0;
}
.main-slider-two__title__overlay:nth-child(3) {
  left: 33.32%;
}
.main-slider-two__title__overlay:nth-child(5) {
  left: 66.64%;
}
.main-slider-two__text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 685px;
  width: 100%;
  opacity: 0;
  transform: translateX(200px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__text {
    font-size: 15px;
    line-height: 1.2;
    color: #000;
  }
}
.main-slider-two__element {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__element {
  }
}
.main-slider-two__element-one {
  position: absolute;
  top: 140px;
  left: 0;
  opacity: 0;
  transform: translateY(300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-two__element-one img {
  animation: leftToRight 4s ease-in-out infinite;
}
@media (max-width: 767px) {
  .main-slider-two__element-one {
    display: none;
  }
}
.main-slider-two__element-two {
  position: absolute;
  bottom: 0px;
  right: 0;
  opacity: 0;
  transform: translateX(300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
  img{
    filter: hue-rotate(82deg);
  }
}
@media (max-width: 767px) {
  .main-slider-two__element-two {
    right: -26px;
    height: auto;
    width: 100px;
  }
}
.main-slider-two__element-three {
  position: absolute;
  top: 140px;
  left: 25%;
  opacity: 0;
  transform: translateX(300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-two__element-three img {
  animation: topToBottom 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .main-slider-two__element-three {
    display: none;
  }
}
.main-slider-two__element-four {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-two__element-four img {
  animation: leftToRight 4s ease-in-out infinite;
  max-width: 400px;
  height: auto;
}
@media (max-width: 767px) {
  .main-slider-two__element-four {
    img{
      max-width: 94px;
    }
  }
}
.main-slider-two__form {
  position: absolute;
  bottom: 70px;
  z-index: 3;
  margin-left: 0;
  margin-right: auto;
  padding: 0 0 0;
  max-width: 1024px;
}
@media (max-width: 1199px) {
  .main-slider-two__form {
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__form {
    left: 0;
  }
}
@media (max-width: 767px) {
  .main-slider-two__form {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    bottom: auto;
  }
}
.main-slider-two .active .main-slider-two__bg {
  transform: scale(1.2);
}
.main-slider-two .active .main-slider-two__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1700ms;
}
.main-slider-two .active .main-slider-two__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-two .active .main-slider-two__title__overlay:nth-child(2), .main-slider-two .active .main-slider-two__title__overlay:nth-child(4), .main-slider-two .active .main-slider-two__title__overlay:nth-child(6) {
  top: 105%;
}
.main-slider-two .active .main-slider-two__title__overlay:nth-child(1), .main-slider-two .active .main-slider-two__title__overlay:nth-child(3), .main-slider-two .active .main-slider-two__title__overlay:nth-child(5) {
  bottom: 105%;
}
.main-slider-two .active .main-slider-two__text {
  transform: translateX(0);
  transition-delay: 1500ms;
  opacity: 1;
}
.main-slider-two .active .main-slider-two__element {
  opacity: 0.6;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__element-one {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__element-two,
.main-slider-two .active .main-slider-two__element-three {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__element-four {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.main-slider-two__form {
  position: absolute;
  bottom: 136px;
  z-index: 3;
  margin-left: 0;
  margin-right: auto;
  padding: 0 0 0;
  max-width: 1024px;
}
@media (max-width: 1199px) {
  .main-slider-two__form {
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__form {
    left: 0;
  }
}
@media (max-width: 767px) {
  .main-slider-two__form {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    bottom: auto;
  }
}
.banner-form__wrapper {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 33px;
  padding: 18px 26px;
  border-left: 8px solid var(--theme-color);
  border-bottom: 8px solid var(--theme-color);
}


@media (max-width: 767px) {
  .banner-form__wrapper {
    border-radius: 20px;
    padding: 12px 19px;
    border: 2px solid var(--gotur-base);
  }
}
.banner-form .container {
  max-width: 1024px;
}
.banner-form .row {
  --bs-gutter-x: 0;
}
.banner-form .row > * {
  padding-left: 0;
  padding-right: 0;
}

.banner-form .banner-form__control label {
  display: block;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 200%;
  color: var(--gotur-black, #1D231F);
  text-shadow: 0 0 0.1px currentColor;
}
.banner-form .banner-form__icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.banner-form .banner-form__icon span {
  font-size: 21.5px;
  color: var(--gotur-base, #10a9dd);
}
.banner-form .banner-form__control {
  padding-right: 26px;
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
}
.banner-form .banner-form__control label {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: -3px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.banner-form .banner-form__control .form-control
.banner-form .banner-form__control .filter-option-inner-inner {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
}
.banner-form .banner-form__control i {
  position: absolute;
  top: 49%;
  left: 0;
  color: var(--gotur-base, #10a9dd);
  font-size: 19px;
  transition: all 0.4s ease-in-out;
}
.banner-form .banner-form__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.banner-form .banner-form__control .bootstrap-select:not(.input-group-btn), .banner-form .banner-form__control .bootstrap-select[class*=col-] {
  margin-bottom: -4px;
}
.banner-form .banner-form__control .bootstrap-select > .dropdown-toggle,
.banner-form .banner-form__control input[type=text],
.banner-form .banner-form__control input[type=number],
.banner-form .banner-form__control input[type=date],
.banner-form .banner-form__control input[type=time],
.banner-form .banner-form__control input[type=email] {
  width: 100%;
  background-color: transparent;
  padding: 2px 0px 2px 0px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  border: 1px solid var(--theme-color) !important;
  z-index: 2;
  cursor: pointer;
  margin-top: 10px;
  height: 45px;
  border-radius: 8px !important;
  padding: 8px;
}
.banner-form .banner-form__control .bootstrap-select > .dropdown-toggle:active, .banner-form .banner-form__control .bootstrap-select > .dropdown-toggle:focus,
.banner-form .banner-form__control input[type=text]:active,
.banner-form .banner-form__control input[type=date]:active,
.banner-form .banner-form__control input[type=time]:active,
.banner-form .banner-form__control input[type=text]:focus,
.banner-form .banner-form__control input[type=date]:focus,
.banner-form .banner-form__control input[type=time]:focus,
.banner-form .banner-form__control input[type=number]:active,
.banner-form .banner-form__control input[type=number]:focus,
.banner-form .banner-form__control input[type=email]:active,
.banner-form .banner-form__control input[type=email]:focus {
  outline: none !important;
  border: 1px dashed var(--theme-color); !important;
  box-shadow: none !important;
}
.banner-form .banner-form__control .dropdown-toggle::after {
  display: inline-block;
  position: relative;
  top: -6px;
  margin-left: 0 !important;
  vertical-align: 0 !important;
  content: "\e920";
  font-family: "icomoon" !important;
  border-top: 0 !important;
  border-right: 0 !important;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
  border-bottom: 0 !important;
  border-left: 0 !important;
}
.banner-form .banner-form__control .banner-form__qty-minus,
.banner-form .banner-form__control .banner-form__qty-plus {
  position: absolute;
  right: 34px;
  color: var(--gotur-black, #1D231F);
  bottom: 12%;
  background-color: transparent;
  border: none;
  font-size: 14px;
  line-height: normal;
  border: 1px solid transparent !important;
  z-index: 1;
}
.banner-form .banner-form__control .banner-form__qty-minus i,
.banner-form .banner-form__control .banner-form__qty-plus i {
  font-weight: 600;
}
.banner-form .banner-form__control .banner-form__qty-minus {
  top: 12%;
  bottom: auto;
  transform: rotate(180deg);
}
.banner-form .banner-form__button {
  padding-left: 0;
}
.banner-form .banner-form__button .gotur-btn {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  padding-top: 19.5px;
  padding-bottom: 19.5px;
}
.banner-form .banner-form__control:hover i {
  color: var(--gotur-primary, #F7921E);
}
.banner-form .banner-form__control--date::after {
  content: "\e920";
  font-family: "icomoon" !important;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
  position: absolute;
  font-size: 14px;
  top: 36.5%;
  right: 43px;
  transform: translateY(-18%);
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: var(--gotur-base, #10a9dd) !important;
  color: var(--gotur-white, #fff) !important;
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  font-size: 14px !important;
}

.daterangepicker .drp-buttons .btn {
  font-size: 14px;
  padding: 6px 14px;
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-primary, #F7921E);
  border-color: transparent;
}

.daterangepicker .drp-buttons .btn.cancelBtn {
  background-color: var(--gotur-black, #1D231F);
  color: var(--gotur-white, #fff);
}

/*****Destination Card*****/
.destinations-card {
  position: relative;
}
.destinations-card__thumb {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 135px 0px 135px 135px;
  border: 4px solid transparent;
  transition: all 0.4s ease-in-out;
}
.destinations-card__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  height: 350px;
  transition: all 0.4s ease-in-out;
}
.destinations-card__group-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  bottom: 60px;
  left: 10%;
  transform: translate(18%, 100px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.destinations-card__group-card__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  padding: 5.5px 10.5px;
  border-radius: 24px;
  background-color: var(--gotur-primary, #F7921E);
  margin-bottom: 0;
}
.destinations-card__group-card__text:last-child {
  background-color: var(--gotur-base, #10a9dd);
}
.destinations-card__title {
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 70%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-primary, #F7921E);
  text-align: center;
}
.destinations-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.destinations-card__title a:hover {
  background-size: 100% 1px;
}
.destinations-card:hover .destinations-card__thumb {
  border-radius: 135px;
  border-color: var(--gotur-primary, #F7921E);
}
.destinations-card:hover .destinations-card__thumb img {
  transform: scale(1.1);
}
.destinations-card:hover .destinations-card__group-card {
  transform: translate(18%, 0px);
  opacity: 1;
}

/*****Destination Card Two*****/
.destinations-card-two {
  position: relative;
}
.destinations-card-two__thumb {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 122px;
  transition: all 0.4s ease-in-out;
}
.destinations-card-two__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.destinations-card-two__hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.destinations-card-two__hover img {
  object-fit: cover;
  width: 100%;
  transform: scale(1.02);
}
@media (max-width: 575px) {
  .destinations-card-two__hover {
    display: none;
  }
}
.destinations-card-two__title {
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 70%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-primary, #F7921E);
  text-align: center;
}
.destinations-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.destinations-card-two__title a:hover {
  background-size: 100% 1px;
}
.destinations-card-two:hover .destinations-card-two__thumb img {
  transform: scale(1.1);
}
.destinations-card-two:hover .destinations-card-two__hover {
  opacity: 1;
  visibility: visible;
}
.destinations-card-two:hover .destinations-card-two__hover img {
  transform: scale(1.02);
}

.popular-destination {
  position: relative;
}
.popular-destination .gutter-x-22 {
  --bs-gutter-x: 22px;
}
.popular-destination .gutter-y-22 {
  --bs-gutter-y: 22px;
}
.popular-destination__element {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
  img{
    filter: hue-rotate(105deg) hue-rotate(-7deg);
  }
}
.popular-destination__element::after {
  top: 0;
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #10a9dd);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .popular-destination__element {
    display: block;
  }
}

/*****Destinations Two*****/
.destinations-two {
  position: relative;
  z-index: 1;
}
.destinations-two__top {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .destinations-two__top {
    padding-bottom: 50px;
  }
}
.destinations-two__top .sec-title {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .destinations-two__top .sec-title {
    padding-bottom: 0;
  }
}
.destinations-two__bottom__nav {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
@media (min-width: 992px) {
  .destinations-two__bottom__nav {
    justify-content: end;
  }
}
.destinations-two__bottom__nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gotur-base, #10a9dd);
  border: 1px solid var(--gotur-base, #10a9dd);
  transition: all 400ms ease;
}
.destinations-two__bottom__nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.destinations-two__bottom__nav button:hover {
  background-color: var(--gotur-base, #10a9dd);
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.destinations-two__bottom__nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.destinations-two .container-fluid {
  max-width: 1570px;
  margin-left: auto;
  margin-right: 0;
}
.destinations-two--two {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
}
.destinations-two__element {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.destinations-two__element::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  left: -40%;
  opacity: 0.4;
  background: var(--gotur-primary, #F7921E);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .destinations-two__element {
    display: block;
  }
}


.destination-three__list__item__hover-one {
  transition: all 0.4s ease-in-out;
}
.destination-three__list__item__hover-one span {
  display: block;
}
.destination-three__list__item__hover-one span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 41px;
  background: var(--gotur-primary, #F7921E);
  border-radius: 50px 0px 12px;
  transform: rotate(180deg);
  z-index: -1;
}
.destination-three__list__item__hover-one span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 43px;
  background: var(--gotur-base);
  opacity: 0.3;
  border-radius: 50px 0px 12px;
  transform: rotate(180deg);
  z-index: -2;
}
.destination-three__list__item__hover-two {
  transition: all 0.4s ease-in-out;
}
.destination-three__list__item__hover-two span {
  display: block;
}
.destination-three__list__item__hover-two span:first-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 41px;
  background: var(--gotur-primary, #F7921E);
  border-radius: 50px 0px 12px;
  z-index: -1;
}
.destination-three__list__item__hover-two span:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 43px;
  background: var(--gotur-base);
  opacity: 0.3;
  border-radius: 50px 0px 12px;
  z-index: -2;
}
.destination-three__list__item.active-btn, .destination-three__list__item:hover {
  background-color: var(--gotur-base, #10a9dd);
  color: var(--gotur-base);
}
.sec-title {
  position: relative;
  padding-bottom: 50px;
}
.sec-title__tagline {
  color: var(--gotur-primary, #F7921E);
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 117%;
  padding: 5px 10px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .sec-title__tagline {
    font-size: 24px;
  }
}
.sec-title__title {
  margin: 0;
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  position: relative;
  padding-bottom: 1rem;
  font-size: 50px;
  text-shadow: 0 0 0.1px currentColor;
}
.sec-title__title::after {
  content: '';
  position: absolute;
  bottom: -16%;
  left: 0;
  height: 30%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2310a9dd' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 95%;
  width: 100%;
  background-image: linear-gradient(
    to right,
    currentcolor 40%,
    transparent 50%
  );
  background-repeat: no-repeat;
  animation: background-size-300 0.9s 1.5s ease-in both;
  background-size: 300%;
  background: var(--theme-color);
  max-width: 300px;
}
.text-center  .sec-title__title::after {
  left: 50%;
  transform: translateX(-50%);
}
@keyframes background-size-300 {
  from {
    background-size: 0%;
  }

  to {
    background-size: 300%;
  }
}
.sec-title__title span {
  font-family: var(--gotur-heading-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-base, #10a9dd);
  font-style: italic;
  font-weight: 600;
}

/************ About Five***********/
.about-five {
  position: relative;
  background-color: var(--gotur-gray, #F3F8F6);
  z-index: 1;
}
.about-five__thumb {
  position: relative;
}
@media (min-width: 1200px) {
  .about-five__thumb {
    margin-right: -30px;
  }
}
.about-five__thumb__item{
  width: 411px;
  height: 460px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .about-five__thumb__item {
    margin-right: 89px;
  }
}
.about-five__thumb__item img {
  border-radius: 100px 0px;
  object-fit: cover;
  width: 100%;
}
.about-five__thumb__item-small {
  position: relative;
  margin-top: -262px;
  text-align: end;
}
.about-five__thumb__item-small img {
  border: 10px solid var(--gotur-white, #fff);
  border-radius: 100px 0px;
  object-fit: cover;
  width: 290px;
  height: 316px;
}
.about-five__thumb__item-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -70%);
}
.about-five__thumb__item-video a {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-primary, #F7921E);
  font-size: 24px;
  border: 4px solid var(--gotur-base, #10a9dd);
  position: relative;
  z-index: 1;
}
.about-five__thumb__item-video a .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--gotur-base-rgb, 99, 171, 69), 0.55);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.about-five__thumb__item-video a .ripple::before, .about-five__thumb__item-video a .ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--gotur-base-rgb, 99, 171, 69), 0.45);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.about-five__thumb__item-video a .ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.about-five__thumb__item-video a .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.about-five__thumb__item-video a:hover {
  background-color: var(--gotur-base, #10a9dd);
}
.about-five__thumb__item-element {
  position: absolute;
  bottom: -5%;
  z-index: -1;
  left: 25%;
  transform: translateX(-30%);
  animation: topToBottom 3.5s ease-in-out infinite;
}
.about-five__thumb::after {
  content: "";
  width: 16px;
  height: 170px;
  border-radius: 100px;
  background-color: var(--gotur-base, #10a9dd);
  position: absolute;
  top: 0;
  right: 25px;
  animation: topToBottom 5s ease-in-out infinite;
  z-index: -1;
}
.about-five__right .sec-title {
  padding-bottom: 22px;
  margin-right: -10px;
}
@media (min-width: 1200px) {
  .about-five__right {
    margin-left: 50px;
  }
}
.about-five__top__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  padding-bottom: 0;
  margin-bottom: 30px;
}
.about-five__feature {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 45px;
  justify-content: start;
}
.about-five__feature__icon {
  font-size: 44px;
  color: var(--gotur-base, #10a9dd);
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.about-five__feature__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 5px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.about-five__feature__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 245px;
}
.about-five__feature__item:hover .about-five__feature__icon {
  color: var(--gotur-primary, #F7921E);
  transform: scaleX(-1);
}
.about-five__button {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
  width: 100%;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .about-five__button {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
@media (max-width: 575px) {
  .about-five__button {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-five__button .gotur-btn .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #10a9dd);
}
.about-five__button__author {
  display: flex;
  align-items: center;
}
.about-five__button__author__item {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gotur-white, #fff);
  border-radius: 50%;
  overflow: hidden;
}
.about-five__button__author__item img {
  object-fit: cover;
  width: 100%;
}
.about-five__button__author__item__funfact {
  display: flex;
  align-items: center;
}
.about-five__button__author__item__funfact .count {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-base, #10a9dd);
}
.about-five__button__author__item__funfact .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.about-five__button__author__item + .about-five__button__author__item {
  margin-left: -15px;
}
.about-five__button__author__item-two {
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-five__button__author__item-two a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px dashed var(--gotur-base, #10a9dd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gotur-base, #10a9dd);
}
.about-five__element-one {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.about-five__element-two {
  position: absolute;
  left: -55px;
  top: 40%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
  width: 300px;
}
.about-five__element-two::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-primary, #F7921E);
  opacity: 0.35;
  filter: blur(150px);
  right: 0;
}
@media (min-width: 1200px) {
  .about-five__element-two {
    display: block;
  }
}
@media (min-width: 1200px) {
  .about-five--two .about-five__right {
    margin-left: 0px;
  }
}
@media (min-width: 1200px) {
  .about-five--two .about-five__thumb {
    margin-right: 32px;
  }
}
.about-five--two .about-five__thumb__item {
  border-radius: 10px;
  padding-left: 30px;
  margin-right: 0;
  padding-right: 73px;
}
.about-five--two .about-five__thumb__item img {
  border-radius: 10px;
}
.about-five--two .about-five__thumb__item-small {
  position: absolute;
  right: 0;
  bottom: 87px;
  border-radius: 16px;
}
.about-five--two .about-five__thumb__item-small img {
  border-radius: 16px;
}
.about-five--two .gotur-btn .icon {
  color: var(--gotur-primary, #F7921E);
}
.about-five--two .about-five__thumb__item-video {
  transform: translate(-50%, -50%);
}
.about-five--two .about-five__thumb__item-video a {
  width: 54px;
  height: 54px;
  border: 0px solid transparent;
  font-size: 15px;
}
.about-five--two .about-five__thumb__text {
  top: 10%;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-base, #10a9dd);
  padding: 42px 14px 20px 15px;
  position: absolute;
  left: 0;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  clip-path: polygon(50% 5%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.about-five--two .about-five__element-three {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) {
  .about-five--two .about-five__element-three {
    display: block;
  }
}
.about-five--two .about-five__element-four {
  position: absolute;
  right: 0;
  top: 45%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-five--two .about-five__element-four::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #10a9dd);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .about-five--two .about-five__element-four {
    display: block;
  }
}
.about-five--two .about-five__feature {
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 23px;
}
.about-five--two .about-five__feature__item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-five--two .about-five__feature__item {
    gap: 10px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-five--two .about-five__feature__item:hover .about-five__feature__icon {
  background-color: var(--gotur-primary, #F7921E);
}
.about-five--two .about-five__feature__text {
  font-size: 16px;
  line-height: 178%;
  margin-bottom: 0;
  flex: 50%;
  position: relative;
}
.about-five--two .about-five__feature__text::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: -30px;
  top: 0;
  background-color: var(--gotur-base, #10a9dd);
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-five--two .about-five__feature__text::after {
    display: none;
  }
}
.about-five--two .about-five__feature__content {
  flex: 50%;
  display: flex;
  align-items: center;
  gap: 23px;
}
.about-five--two .about-five__feature__content .about-five__feature__icon {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-base, #10a9dd);
  font-size: 40px;
  color: var(--gotur-white, #fff);
}
.about-five--two .about-five__feature__content .about-five__feature__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
}

@keyframes topToBottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes topToBottomTwo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-card {
  position: relative;
  z-index: 1;
}
.team-card__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.team-card__thumb__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.team-card__thumb__item::before {
  content: "";
  width: 0%;
  height: 50%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  transition: all 0.4s ease-in-out;
}
.team-card__thumb__item::after {
  content: "";
  width: 0%;
  height: 50%;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  transition: all 0.4s ease-in-out;
}
.team-card__thumb img {
  object-fit: cover;
  width: 100%;
  height: 250px;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.team-card__social {
  background-color: var(--gotur-base, #10a9dd);
  padding: 17px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  right: 0px;
  transform: translateX(100px);
  top: 30px;
  z-index: 1;
  border-radius: 30px 0px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.team-card__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #10a9dd);
  font-size: 17px;
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.team-card__social a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: var(--gotur-primary, #F7921E);
  left: 50%;
  top: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.team-card__social a:hover {
  color: var(--gotur-white, #fff);
}
.team-card__social a:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.team-card__social p {
  padding-bottom: 7px;
  padding-top: 31px;
  position: relative;
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: var(--gotur-white, #fff);
  opacity: 0.9;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  position: relative;
}
.team-card__social p::before {
  content: "";
  width: 1px;
  height: 20px;
  transform: translateX(13px);
  background-color: var(--gotur-white, #fff);
  position: absolute;
  top: 0;
  left: 0;
}
.team-card__content {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 30px 0px;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -53px;
  width: 75%;
  margin-inline: auto;
}
.team-card__title {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 136%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  margin-top: -7px;
  margin-bottom: 2px;
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__title a:hover {
  color: var(--gotur-base, #10a9dd);
}
.team-card__dec {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  margin-bottom: 8px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
}
.team-card:hover .team-card__social {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}
.team-card:hover .team-card__thumb__item::after {
  left: 0;
  right: auto;
  width: 100%;
}
.team-card:hover .team-card__thumb__item::before {
  right: 0;
  width: 100%;
  left: auto;
}
.team-card:hover .team-card__thumb__item img {
  transform: scale(1.1);
}

/******** How To Work One*********/
.how-to-work {
  position: relative;
  z-index: 1;
  counter-reset: workPlanningSerialNumber;
}
.how-to-work__item {
  text-align: center;
}

.how-to-work__icon {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--gotur-gray, #F3F8F6);
  height: 100px;
  border: 2px dashed var(--gotur-base, #10a9dd);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  color: var(--gotur-base, #10a9dd);
  font-size: 45px;
  position: relative;
  transition: all 0.4s ease-in-out;
  img{
    width: 41px;
    height: auto;
    transition: 0.4s;
    filter: hue-rotate(105deg) hue-rotate(-7deg);
  }
}
.how-to-work__icon__count {
  position: relative;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -6px;
  top: 0px;
  background-color: var(--gotur-primary, #F7921E);
  height: 34px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
}
.how-to-work__icon__count::after {
  content: counter(workPlanningSerialNumber);
  counter-increment: workPlanningSerialNumber;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
}
.how-to-work__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  padding-bottom: 0;
  margin-bottom: 20px;
  text-align: center;
}
.how-to-work__text {
  margin-top: -6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 346px;
  margin-left: auto;
  margin-right: auto;
}
.how-to-work .container {
  position: relative;
}
.how-to-work__shape {
  position: absolute;
  top: 46%;
  z-index: -1;
  display: none;
  animation: leftToRight 4s ease-in-out infinite;
}
.how-to-work__shape img {
  object-fit: cover;
  width: 100%;
  filter: hue-rotate(105deg) hue-rotate(-7deg);
}
@media (min-width: 992px) {
  .how-to-work__shape {
    display: block;
  }
}
.how-to-work__element {
  position: absolute;
  left: 0;
  top: 41%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
  img{
    width: 210px;
    position: relative;
    z-index: 1;
  }
}
.how-to-work__item:hover .how-to-work__icon img{
  filter: brightness(100);
}

.how-to-work__element::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  background: var(--gotur-primary, #F7921E);
  filter: blur(150px);
  left: -20%;
  opacity: 0.5;
}
@media (min-width: 1200px) {
  .how-to-work__element {
    display: block;
  }
}
.how-to-work__item:hover .how-to-work__icon {
  background-color: var(--gotur-base, #10a9dd);
  border-style: solid;
  color: var(--gotur-white, #fff);
}
.how-to-work__item:hover .how-to-work__icon__count {
  background-color: var(--gotur-white, #fff);
}
.how-to-work__item:hover .how-to-work__icon__count::after {
  color: var(--gotur-base, #10a9dd);
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes phone-icon-animate {
  0%, 100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.about-testimonials {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  z-index: 1;
}
.about-testimonials__left {
  margin-right: -40px;
}
.about-testimonials__thumb {
  position: relative;
  z-index: 1;
}
.about-testimonials__thumb::after, .about-testimonials__thumb::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0;
  background: var(--gotur-primary, #F7921E);
  border-radius: 0px 100px 0px 0px;
  left: 0;
  opacity: 0.2;
}
.about-testimonials__thumb::after {
  left: 10px;
}
.about-testimonials__thumb__item {
  animation: leftToRight 4s ease-in-out infinite;
}
.about-testimonials__carousel {
  position: relative;
}
.about-testimonials__carousel .owl-nav {
  margin-top: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 1200px) {
  .about-testimonials__right {
    margin-left: 70px;
  }
}
.about-testimonials .sec-title {
  padding-bottom: 22px;
}
.about-testimonials__star {
  font-size: 20px;
  color: var(--gotur-primary, #F7921E);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 25px;
}
.about-testimonials__star i:last-child {
  color: var(--gotur-border-color, #E5E5E5);
}
.about-testimonials__text {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 30px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
}
.about-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-testimonials__author .about-testimonials__author__thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.about-testimonials__author .about-testimonials__author__thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-testimonials__content .about-testimonials__title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-testimonials__content span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  display: block;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
}
.about-testimonials .client-carousel {
  padding-bottom: 0;
  padding-top: 120px;
}
.about-testimonials__element-one {
  position: absolute;
  left: 0;
  top: 20%;
  animation: topToBottom 3s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-testimonials__element-one::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #10a9dd);
  filter: blur(150px);
  z-index: -1;
  right: -20%;
  opacity: 0.5;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
@media (min-width: 1200px) {
  .about-testimonials__element-one {
    display: block;
  }
}
.about-testimonials__element-two {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-testimonials__element-two::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-primary, #F7921E);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .about-testimonials__element-two {
    display: block;
  }
}
.about-testimonials--two {
  background-color: transparent;
}
@media (min-width: 1200px) {
  .about-testimonials--two .about-testimonials__left {
    margin-left: 0px;
    margin-right: -20px;
  }
}
@media (min-width: 1200px) {
  .about-testimonials--two .about-testimonials__right {
    margin-left: 52px;
  }
}
.about-testimonials--two .about-testimonials__left {
  position: relative;
  z-index: 1;
}
.about-testimonials--two .about-testimonials__thumb__item {
  text-align: center;
  margin-top: -30px;
  margin-left: -35px;
  margin-bottom: -30px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 450px) {
  .about-testimonials--two .about-testimonials__thumb__item img {
    object-fit: cover;
    width: 100%;
  }
}
.about-testimonials--two .about-testimonials__thumb::after, .about-testimonials--two .about-testimonials__thumb::before {
  display: none;
}
.about-testimonials--two .about-testimonials__thumb .about-testimonials__thumb__shape {
  position: absolute;
  bottom: 0;
  left: -35px;
  z-index: -1;
  img{
    filter: hue-rotate(105deg) hue-rotate(-7deg);
  }
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 450px) {
  .about-testimonials--two .about-testimonials__thumb .about-testimonials__thumb__shape img {
    object-fit: cover;
    width: 100%;
  }
}
.about-testimonials--two .about-testimonials__thumb__shape-one {
  position: absolute;
  top: 20%;
  right: 10%;
  animation: scale 3s ease-in-out infinite;
  img{
    filter: hue-rotate(105deg) hue-rotate(-7deg);
  }
}
.about-testimonials--two .about-testimonials__thumb__shape-three {
  position: absolute;
  top: 40%;
  left: 4%;
  animation: rotate 7s ease-in-out infinite;
  img{
    filter: hue-rotate(105deg) hue-rotate(-7deg);
    display: none;
  }
}
.about-testimonials--two .about-testimonials__thumb__shape-two {
  position: absolute;
  bottom: 8%;
  left: 20%;
  animation: scale 3s ease-in-out infinite;
  img{
    filter: hue-rotate(105deg) hue-rotate(-7deg);
  }
}
.about-testimonials--two .about-testimonials__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-testimonials--two .about-testimonials__bottom__quite {
  font-size: 45px;
  color: var(--gotur-base, #10a9dd);
  img{
    width: 45px;
    filter: hue-rotate(105deg) hue-rotate(-7deg);
  }
}
.about-testimonials--two .about-testimonials__element-three {
  position: absolute;
  right: 0;
  bottom: 20%;
  animation: topToBottom 3s ease-in-out infinite;
  z-index: -1;
  display: none;
  img{
    filter: hue-rotate(105deg) hue-rotate(-7deg);
  }
}
.about-testimonials--two .about-testimonials__element-three::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #10a9dd);
  filter: blur(150px);
  z-index: -1;
  right: -80%;
  opacity: 0.5;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
@media (min-width: 1200px) {
  .about-testimonials--two .about-testimonials__element-three {
    display: block;
  }
}
/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-accordion .accordion {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.faq-accordion .accordion + .accordion {
  margin-top: 20px;
}
.faq-accordion .accordion-title {
  padding: 27px 30px;
  transition: all 500ms ease;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .faq-accordion .accordion-title {
    padding-right: 20px;
  }
}
.faq-accordion .accordion-title h4 {
  margin-top: -7px;
  margin-bottom: -7px;
  position: relative;
  transition: all 500ms ease;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 200%;
  text-shadow: 0 0 0.1px currentColor;
}
.faq-accordion .accordion-title__icon {
  width: 20px;
  height: 20px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(0deg);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-title__icon::before {
  content: "\f101";
  font-family: var(--icon-font) !important;
  transition: all 500ms ease;
  color: var(--gotur-black, #1D231F);
  font-weight: 900;
  transition: all 0.3s ease-in-out;
}
.faq-accordion .active .accordion-title {
  padding: 24px 30px;
}
.faq-accordion .active .accordion-title h4 {
  color: var(--gotur-base, #10a9dd);
}
.faq-accordion .active .accordion-title__icon {
  transform: translateY(-50%) rotate(90deg);
}
.faq-accordion .active .accordion-title__icon::before {
  color: var(--gotur-base, #10a9dd);
}
.faq-accordion .accordion-content .inner {
  margin-top: -5px;
  padding: 0px 85px 30px 30px;
}
.faq-accordion .accordion-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: -5px;
  padding-bottom: 0;
}

.faq-page__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 167%;
  text-transform: capitalize;
  padding-bottom: 0;
  margin-bottom: 20px;
  color: var(--gotur-black, #1D231F);
}
.faq-page .faq-accordion + .faq-accordion {
  margin-top: 40px;
}
.faq-page__sidebar__item + .faq-page__sidebar__item {
  margin-top: 30px;
}
.faq-page__sidebar__list {
  margin-bottom: 0;
  padding: 15px 30px 15px;
  background-color: var(--gotur-gray, #F3F8F6);
}
.faq-page__sidebar__list li span {
  cursor: pointer;
  margin-bottom: 0;
  padding-bottom: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 250%;
  display: block;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  transition: all 0.4s ease-in-out;
}
.faq-page__sidebar__list li.active-btn span, .faq-page__sidebar__list li:hover span {
  color: var(--gotur-base, #10a9dd);
  padding-left: 15px;
}
.faq-page__sidebar__list li + li {
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.faq-page__sidebar__cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.faq-page__sidebar__cta img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.faq-page__sidebar__cta::before {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
  content: "";
  border: 1px solid var(--gotur-white, #fff);
  background-color: transparent;
  z-index: 1;
}
.faq-page__sidebar__cta__content {
  text-align: center;
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 25px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 2;
}
.faq-page__sidebar__cta__content .gotur-btn {
  border: 1px solid var(--gotur-white, #fff);
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 42px;
}
.faq-page__sidebar__cta__content .gotur-btn .icon {
  width: 24px;
  height: 24px;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-primary, #F7921E);
}
.faq-page__sidebar__cta__content .gotur-btn:hover {
  border-color: var(--gotur-primary, #F7921E);
}
.faq-page__sidebar__cta::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  content: "";
  width: 100%;
  z-index: 1;
  height: 298px;
  background-color: var(--gotur-base, #10a9dd);
  -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 242.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,242.000000) scale(0.100000,-0.100000)"> <path d="M0 1723 c0 -383 3 -694 6 -691 3 3 6 20 6 37 1 34 5 37 28 18 23 -18 22 -56 -1 -89 -17 -24 -19 -31 -8 -44 10 -13 10 -17 -2 -25 -8 -5 -9 -9 -2 -9 6 0 13 -10 15 -22 2 -18 9 -22 27 -20 25 2 71 -22 71 -37 0 -5 -8 -12 -18 -14 -14 -4 -13 -5 4 -6 14 -1 28 -16 44 -46 25 -49 44 -60 34 -19 -6 23 -4 25 15 19 15 -4 21 -2 21 8 0 10 7 13 21 10 26 -7 35 -29 20 -47 -17 -20 9 -28 30 -9 14 12 18 11 29 -3 11 -12 11 -20 3 -34 -20 -31 6 -96 34 -86 8 3 11 1 8 -5 -11 -16 14 -38 52 -45 32 -6 53 -32 53 -65 0 -15 -47 -10 -54 6 -3 9 -17 15 -33 14 l-28 -1 25 -7 c14 -4 26 -15 28 -24 4 -22 -25 -34 -48 -19 -9 5 -22 7 -28 3 -7 -4 8 -12 33 -19 25 -7 45 -16 45 -22 0 -5 6 -7 14 -4 21 8 56 -14 56 -35 0 -13 7 -18 27 -18 14 0 32 -8 38 -17 16 -22 25 -20 25 4 0 11 -4 20 -10 20 -5 0 -10 6 -10 14 0 30 20 26 57 -11 35 -35 58 -51 171 -120 21 -13 51 -23 67 -23 42 0 102 -23 128 -48 34 -32 61 -55 94 -79 l31 -22 17 39 c31 70 94 91 81 28 -5 -25 -3 -29 10 -24 9 3 27 6 40 6 15 0 24 6 24 16 0 13 12 15 77 11 47 -3 84 0 95 7 14 8 23 8 39 -2 18 -11 23 -11 33 4 14 19 36 11 36 -12 0 -10 6 -13 19 -9 12 3 21 0 25 -10 3 -8 15 -15 26 -15 11 0 23 -6 26 -14 6 -15 24 -9 74 27 21 15 23 19 10 27 -27 17 2 46 42 42 26 -2 43 4 72 27 21 17 42 31 47 31 14 0 16 -25 2 -57 -7 -18 -10 -39 -7 -47 4 -9 -8 -27 -30 -47 -23 -19 -36 -40 -36 -55 0 -30 21 -31 40 -3 29 42 68 72 84 66 15 -6 76 28 76 42 0 6 21 11 48 13 40 3 47 6 45 23 -2 18 7 22 69 32 48 7 76 17 85 29 7 10 22 18 34 19 12 1 26 9 31 18 12 23 28 21 28 -3 0 -13 7 -20 19 -20 10 0 21 -7 25 -15 9 -25 26 -17 26 13 0 36 -10 49 -43 57 -22 6 -27 13 -27 36 0 41 25 36 49 -8 6 -13 20 -23 30 -23 28 0 33 12 11 27 -16 11 -18 18 -9 40 7 19 6 28 -2 33 -7 5 11 22 45 45 54 36 58 37 70 19 13 -17 15 -17 44 14 16 18 35 32 41 32 6 0 11 5 11 11 0 7 -19 8 -57 3 l-58 -7 19 22 c11 11 24 21 31 21 6 0 17 11 23 25 12 27 31 32 49 14 8 -8 17 -8 31 0 29 16 42 14 42 -6 0 -13 3 -14 12 -5 7 7 13 22 13 34 0 28 52 60 83 51 17 -4 21 -10 17 -24 -4 -11 -2 -19 3 -19 6 0 12 23 14 50 2 42 0 50 -14 50 -10 0 -18 7 -18 15 0 18 43 37 64 29 8 -3 29 2 45 12 l31 18 0 788 0 788 -1500 0 -1500 0 0 -697z m2697 -30 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m-2300 -1040 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m2153 -105 c0 -17 -64 -68 -84 -68 -27 0 -18 17 26 49 46 34 58 38 58 19z m-2016 -74 c18 -7 21 -30 6 -39 -12 -8 -60 21 -60 35 0 11 30 13 54 4z m1816 -106 c0 -7 -4 -19 -9 -27 -11 -17 -25 3 -17 24 7 18 26 20 26 3z m-1390 -109 c0 -20 -4 -29 -12 -27 -15 5 -22 33 -14 54 9 24 26 6 26 -27z m1284 22 c7 -10 -22 -37 -30 -28 -9 8 3 37 15 37 5 0 12 -4 15 -9z m-206 -43 c-2 -15 -11 -24 -25 -26 -13 -2 -23 -7 -23 -11 0 -11 -59 -35 -67 -28 -3 4 0 20 7 36 12 29 41 48 58 37 4 -2 14 -1 22 5 24 14 32 11 28 -13z m-925 -99 c4 -15 1 -19 -11 -17 -21 4 -29 38 -9 38 8 0 17 -9 20 -21z"/> <path d="M2802 588 c-7 -7 -12 -16 -12 -20 0 -12 38 -10 63 4 21 11 21 11 2 19 -29 11 -40 10 -53 -3z"/> <path d="M2696 482 c-3 -6 -1 -14 5 -17 15 -10 25 3 12 16 -7 7 -13 7 -17 1z"/> <path d="M2530 460 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/> <path d="M2600 404 c0 -8 5 -12 10 -9 6 3 10 10 10 16 0 5 -4 9 -10 9 -5 0 -10 -7 -10 -16z"/> <path d="M485 321 c-24 -10 -60 -49 -53 -57 7 -6 87 47 88 59 0 9 -9 8 -35 -2z"/> <path d="M2485 300 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 -8 -4 -11 -10z"/> <path d="M900 183 c-8 -2 -24 -23 -35 -46 -27 -55 -29 -66 -11 -43 11 13 23 17 43 13 15 -3 36 -1 46 5 12 6 23 6 31 -1 9 -7 16 -7 24 1 18 18 15 25 -14 32 -18 5 -24 12 -20 22 3 8 2 12 -3 9 -5 -3 -12 -1 -16 5 -6 10 -18 11 -45 3z m40 -37 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10 -2 10 -4z"/> </g> </svg> ');
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 242.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,242.000000) scale(0.100000,-0.100000)"> <path d="M0 1723 c0 -383 3 -694 6 -691 3 3 6 20 6 37 1 34 5 37 28 18 23 -18 22 -56 -1 -89 -17 -24 -19 -31 -8 -44 10 -13 10 -17 -2 -25 -8 -5 -9 -9 -2 -9 6 0 13 -10 15 -22 2 -18 9 -22 27 -20 25 2 71 -22 71 -37 0 -5 -8 -12 -18 -14 -14 -4 -13 -5 4 -6 14 -1 28 -16 44 -46 25 -49 44 -60 34 -19 -6 23 -4 25 15 19 15 -4 21 -2 21 8 0 10 7 13 21 10 26 -7 35 -29 20 -47 -17 -20 9 -28 30 -9 14 12 18 11 29 -3 11 -12 11 -20 3 -34 -20 -31 6 -96 34 -86 8 3 11 1 8 -5 -11 -16 14 -38 52 -45 32 -6 53 -32 53 -65 0 -15 -47 -10 -54 6 -3 9 -17 15 -33 14 l-28 -1 25 -7 c14 -4 26 -15 28 -24 4 -22 -25 -34 -48 -19 -9 5 -22 7 -28 3 -7 -4 8 -12 33 -19 25 -7 45 -16 45 -22 0 -5 6 -7 14 -4 21 8 56 -14 56 -35 0 -13 7 -18 27 -18 14 0 32 -8 38 -17 16 -22 25 -20 25 4 0 11 -4 20 -10 20 -5 0 -10 6 -10 14 0 30 20 26 57 -11 35 -35 58 -51 171 -120 21 -13 51 -23 67 -23 42 0 102 -23 128 -48 34 -32 61 -55 94 -79 l31 -22 17 39 c31 70 94 91 81 28 -5 -25 -3 -29 10 -24 9 3 27 6 40 6 15 0 24 6 24 16 0 13 12 15 77 11 47 -3 84 0 95 7 14 8 23 8 39 -2 18 -11 23 -11 33 4 14 19 36 11 36 -12 0 -10 6 -13 19 -9 12 3 21 0 25 -10 3 -8 15 -15 26 -15 11 0 23 -6 26 -14 6 -15 24 -9 74 27 21 15 23 19 10 27 -27 17 2 46 42 42 26 -2 43 4 72 27 21 17 42 31 47 31 14 0 16 -25 2 -57 -7 -18 -10 -39 -7 -47 4 -9 -8 -27 -30 -47 -23 -19 -36 -40 -36 -55 0 -30 21 -31 40 -3 29 42 68 72 84 66 15 -6 76 28 76 42 0 6 21 11 48 13 40 3 47 6 45 23 -2 18 7 22 69 32 48 7 76 17 85 29 7 10 22 18 34 19 12 1 26 9 31 18 12 23 28 21 28 -3 0 -13 7 -20 19 -20 10 0 21 -7 25 -15 9 -25 26 -17 26 13 0 36 -10 49 -43 57 -22 6 -27 13 -27 36 0 41 25 36 49 -8 6 -13 20 -23 30 -23 28 0 33 12 11 27 -16 11 -18 18 -9 40 7 19 6 28 -2 33 -7 5 11 22 45 45 54 36 58 37 70 19 13 -17 15 -17 44 14 16 18 35 32 41 32 6 0 11 5 11 11 0 7 -19 8 -57 3 l-58 -7 19 22 c11 11 24 21 31 21 6 0 17 11 23 25 12 27 31 32 49 14 8 -8 17 -8 31 0 29 16 42 14 42 -6 0 -13 3 -14 12 -5 7 7 13 22 13 34 0 28 52 60 83 51 17 -4 21 -10 17 -24 -4 -11 -2 -19 3 -19 6 0 12 23 14 50 2 42 0 50 -14 50 -10 0 -18 7 -18 15 0 18 43 37 64 29 8 -3 29 2 45 12 l31 18 0 788 0 788 -1500 0 -1500 0 0 -697z m2697 -30 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m-2300 -1040 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m2153 -105 c0 -17 -64 -68 -84 -68 -27 0 -18 17 26 49 46 34 58 38 58 19z m-2016 -74 c18 -7 21 -30 6 -39 -12 -8 -60 21 -60 35 0 11 30 13 54 4z m1816 -106 c0 -7 -4 -19 -9 -27 -11 -17 -25 3 -17 24 7 18 26 20 26 3z m-1390 -109 c0 -20 -4 -29 -12 -27 -15 5 -22 33 -14 54 9 24 26 6 26 -27z m1284 22 c7 -10 -22 -37 -30 -28 -9 8 3 37 15 37 5 0 12 -4 15 -9z m-206 -43 c-2 -15 -11 -24 -25 -26 -13 -2 -23 -7 -23 -11 0 -11 -59 -35 -67 -28 -3 4 0 20 7 36 12 29 41 48 58 37 4 -2 14 -1 22 5 24 14 32 11 28 -13z m-925 -99 c4 -15 1 -19 -11 -17 -21 4 -29 38 -9 38 8 0 17 -9 20 -21z"/> <path d="M2802 588 c-7 -7 -12 -16 -12 -20 0 -12 38 -10 63 4 21 11 21 11 2 19 -29 11 -40 10 -53 -3z"/> <path d="M2696 482 c-3 -6 -1 -14 5 -17 15 -10 25 3 12 16 -7 7 -13 7 -17 1z"/> <path d="M2530 460 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/> <path d="M2600 404 c0 -8 5 -12 10 -9 6 3 10 10 10 16 0 5 -4 9 -10 9 -5 0 -10 -7 -10 -16z"/> <path d="M485 321 c-24 -10 -60 -49 -53 -57 7 -6 87 47 88 59 0 9 -9 8 -35 -2z"/> <path d="M2485 300 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 -8 -4 -11 -10z"/> <path d="M900 183 c-8 -2 -24 -23 -35 -46 -27 -55 -29 -66 -11 -43 11 13 23 17 43 13 15 -3 36 -1 46 5 12 6 23 6 31 -1 9 -7 16 -7 24 1 18 18 15 25 -14 32 -18 5 -24 12 -20 22 3 8 2 12 -3 9 -5 -3 -12 -1 -16 5 -6 10 -18 11 -45 3z m40 -37 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10 -2 10 -4z"/> </g> </svg> ');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.faq-page__sidebar__cta:hover img {
  transform: scale(1.1);
}
.faq-page__sidebar__sub-title {
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 93%;
  display: block;
}
.faq-page__sidebar__title {
  font-style: normal;
  font-weight: 800;
  color: var(--gotur-white, #fff);
  font-size: 30px;
  line-height: 133%;
  text-transform: capitalize;
  margin-bottom: 22px;
  padding-bottom: 0;
}
.faq-page .accordion {
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0);
}
@media(max-width:768px){
  .main-header--two .main-header__logo {
    img {
      width: 70px;
    }
    .sec-title__title {
      font-size: 37px;
    }
  }
}
.sec-title__tagline::after {
  content: "";
  width: 100%;
  background-color: rgba(16, 169, 221, 0.2);
  position: absolute;
  top: 0;
  border-radius: 8px;
  bottom: 8px;
  right: 0;
  left: 0;
}

/*# POP Up */

.main-popup {
  display: none; /* Hide popup by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.main-popup .form-control, .main-popup .form-select{
  height: 47px;
  border-radius: 40px !important;
  background-color: var(--theme-bg);
  border: 1px solid #d1d1d1;
  box-shadow: 0 2px 6px 0 #20212451;
  margin-block: 5px 10px;
}
.main-popup textarea.form-control{
  height: 100px;
  border-radius: 10px !important;
}
.main-popup .form-control:focus, .main-popup .form-select:focus{
  box-shadow: none;
  background-color: transparent;
}
.main-popup.active {
  display: flex; /* Show when active */
}
.main-popup .card_top{
  background-image: url(../images/pop_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  height: 100px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background-position: center;
  width: 100%;
}
.main-popup .card_top:before{
  content: '';
  background-color: #222;
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main-popup .card_top h2{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: max-content;
}
.main-popup form{
  padding: 20px ;
  border: 2px solid var(--theme-color);
  border-radius: 15px;
  width: 93%;
  margin-inline: auto;
  margin-block: 15px;
  padding-top: 0;

}
.outer-popup {
  width: 25%;
  min-width: 23rem;
  margin: 0px auto;
  background-color: white;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0px 0px 12px #8a8a8a;
  height: fit-content;
  position: relative;
  overflow: hidden;
}

.close-popup {
  width: 100%;
  text-align: right;
  margin: -6px;
}

.close-popup-span {
  padding-right: 0rem;
  cursor: pointer;
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 3;
}

.popup-heading {
  margin-top: 0.5rem;
  color: #323232;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 600;
}

.popup-heading > span {
  font-weight: 600;
  color: #03a84e;
  text-transform: uppercase;
}
.form_enquiry_caption_course{
  color: #fff;
}
.pop_upgroup label span{
  color: #fff;
}
.pop_upgroup label{
  font-weight: 600;
  color: #fff;
}
.form__btn{
  background-color: var(--theme-color);
}
.form__btn:hover{
  background-color: #fff;
}
.outer-popup .pop_upgroup label span{
  color: red;
}
.outer-popup .pop_upgroup label{
  font-weight: 600;
  color: #000;
}
.popup-btn {
  font-size: 0.9rem;
  color: white;
  display: none;
  background-color: rgb(27, 27, 95);
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  display: block;
  margin: 1rem auto;
  border-radius: 5px;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 500;
}

.popup-btn:hover {
  background-color: rgb(15, 15, 53);
}

.cross-after-text {
  justify-content: space-between;
  align-items: center;
  margin-left: 1rem;
  display: flex;
  cursor: pointer;
  position: fixed;
  bottom: 6rem;
}

.gift-div {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 7.5rem; */
  width: 12rem;
  animation: updown 1s ease-in infinite;
}
.gift-div img {
  position: relative;
  height: 100%;
  width: 100%;
}

.cross-after-text-p a {
  font-size: 1.1rem;
  text-align: center;
  padding: 0px 0.5rem;
  color: #363636;
}

.cross-after-text-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.9rem;
}

.bottom-strip {
  display: flex;
  width: 100%;
  /* background: #ff7e00; */
  position: fixed;
  bottom: -100%;
  z-index: 95;
  display: flex;
  justify-content: space-between;
  height: 40px;
  align-items: center;
}
.bottom-strip-first-container .whatsapp_icons_div {
  background-color: #03a84e;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  position: fixed;
  bottom: 5%;
  border-radius: 50%;
  left: 1%;
  z-index: 95;
}
.bottom-strip-first-container .whatsapp_icons_div svg {
  height: 22px;
  width: 22px;
}
.bottom-strip-text-container {
  position: fixed;
  left: 1%;
  bottom: 14%;
  z-index: 97;
}
.float_side_btn{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px 0 0 8px;
  background-color: var(--theme-color);
  color: #fff;
  transition: 0.3s;
  padding: 15px 5px;
  width: max-content;
  height: max-content;
  writing-mode: sideways-lr;
  z-index: 70;
  border-top: 2px solid #Fff;
  border-left: 2px solid #Fff;
  border-bottom: 2px solid #Fff;
}
.float_side_btn:hover{
  background-color: red;
  color: #fff;
}
.single-section h3{
  font-size: 28px;
  margin-block: 10px 15px;
}
.team-details-card {
  position: relative;
  margin-bottom: 60px;
}
.team-details-card__inner {
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 8px;
  padding: 30px;
}
.team-details-card__thumb {
  margin-right: -20px;
  height: 100%;
}
@media (max-width: 991px) {
  .team-details-card__thumb {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.team-details-card__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  height: 100%;
}

.team-details-card__content {
  margin-left: 20px;
}
.orderred .team-details-card__content{
  margin: 0;

}
@media (max-width: 991px) {
  .team-details-card__content {
    margin-left: 0px;
  }
}
.team-details-card__content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
@media (max-width: 575px) {
  .team-details-card__content__top {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
}
.team-details-card__content__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 3px;
  color: var(--gotur-black, #1D231F);
}
.team-details-card__content__dec {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  display: block;
}
.team-details-card__content__social {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
.team-details-card__content__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-gray, #F3F8F6);
  font-size: 15px;
  color: var(--gotur-base, #63AB45);
  position: relative;
  z-index: 1;
}
.team-details-card__content__social a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: var(--gotur-primary, #F7921E);
  left: 50%;
  top: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.team-details-card__content__social a:hover {
  color: var(--gotur-white, #fff);
}
.team-details-card__content__social a:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.team-details-card__content__signeture {
  margin-top: 50px;
}
.team-details-card__content__list {
  margin-top: 30px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-top: 25px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.team-details-card__content__list li {
  position: relative;
  z-index: 1;
}
.team-details-card__content__list li:hover .team-details-card__content__list__icon {
  color: var(--gotur-white, #fff);
}
.team-details-card__content__list li:hover .team-details-card__content__list__icon::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.team-details-card__content__list__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-gray, #F3F8F6);
  font-size: 17px;
  color: var(--gotur-base, #63AB45);
  position: absolute;
  transform: translateY(-10%);
  top: 0;
  z-index: 1;
}
.team-details-card__content__list__icon::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: var(--gotur-primary, #F7921E);
  left: 50%;
  top: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.team-details-card__content__list a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--gotur-black, #1D231F);
  margin-left: 46px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-details-card__content__list a:hover {
  background-size: 100% 1px;
}
.team-details-card__content__list a:hover {
  color: var(--gotur-base, #63AB45);
}

@media(max-width:768px){
  .outer-popup{
    min-width: 21rem;
  }
  .banner-form .banner-form__control{
    padding-right: 0;
  }
  .sec-title__title{
    font-size: 30px;
  }
  .about-five__thumb__item{
    width: 100%;
    margin-bottom: 10px;
  }
  .about-five__thumb__item-small{
    display: none;
  }
  .about-five__thumb__item-video a{
    display: none;
  }
  .about-five__feature{
    flex-direction: column;
    gap: 10px;
  }
  .faq-accordion  .accordion-title {
    padding: 13px;

  }

  .faq-accordion  .accordion-title h4{

    font-size: 16px;
    line-height: 1.3;
  }

  .faq-accordion .active .accordion-title {
    padding: 13px;
  }
  .faq-accordion .active .accordion-title h4{
    font-size: 16px;
    line-height: 1.3;
  }
  .faq-accordion .accordion-content .inner{
    padding: 0 25px 10px 10px;
  }    
  .faq-accordion .accordion-content p{
    line-height: 1.3;
  }
  .how-to-work__item{
    margin-bottom: 10px;
  }
  .single-section h3{
    font-size: 22px;
  }
  .bg-theme{
    background-color: #f4fcff;
  }
}
  .header_top{
    position: relative;
    z-index: 1;
    border-radius: 1000px 0 0 1000px;
    width: max-content;
    background-color: var(--theme-color);
    margin-inline: auto 0;
    border-bottom: 1px solid #fff;
    .main-header__call__icon{
      max-width: 30px;
      height: 30px;
      top: 7px;
      left: 15px;
      background: #fff;
    }
    .main-header__call__content{
      padding: 5px 10px;

      padding-left: 60px;
    }
    .main-header__call a{
      display: block;
      line-height: 1.2;
      color: #fff;
    }
    .main-header__call__subtitle{
      color: #fff;
    }
  }
  .header_top  .main-header__call::after {
    content: "";
    background-color: rgba(16, 169, 221, 0.2);
    border-radius: 1000px 0 0 1000px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -10px;
    opacity: 0.5;
    z-index: -1;
  }
  .header_top .main-header__call__icon::after{
    border: 1px solid #fff;
  }
  @media(max-width:768px){
    .main-header--two{
      border-top: 1px solid var(--theme-color);
    }
  }
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-top__item {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  padding: 40px 45px;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}
.contact-top__item__icon {
  font-size: 60px;
  color: var(--gotur-primary, #F7921E);
  line-height: 1;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .contact-top__item__icon {
    font-size: 80px;
  }
}
.contact-top__item__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  margin-bottom: 7px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  transition: all 0.4s ease-in-out;
}
@media (min-width: 1200px) {
  .contact-top__item__title {
    font-size: 24px;
  }
}
.contact-top__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-top__item__title a:hover {
  background-size: 100% 1px;
}
.contact-top__item__text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  margin-bottom: -5px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  transition: all 0.4s ease-in-out;
}
.contact-top__item::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  bottom: 12px;
  right: 16px;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  z-index: -1;
}
.contact-top__item::before {
  content: "";
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--gotur-base, #63AB45);
  z-index: -2;
}
.contact-top__item:hover .contact-top__item__icon,
.contact-top__item:hover .contact-top__item__title,
.contact-top__item:hover .contact-top__item__text {
  color: var(--gotur-white, #fff);
}
.contact-top__item:hover::before {
  width: 100%;
  left: auto;
  right: 0;
}

@media (min-width: 1200px) {
  .contact-page__map {
    margin-right: 30px;
  }
}
.contact-page__map iframe {
  width: 100%;
  height: 573px;
  border-radius: 16px;
}
.contact-page__title {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  margin-bottom: 0;
  padding-bottom: 12px;
  color: var(--gotur-black, #1D231F);
}
@media (min-width: 768px) {
  .contact-page__title {
    font-size: 50px;
  }
}
.contact-page__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  margin-bottom: 25px;
  padding-bottom: 0;
}
.contact-page{
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .form-one__group--grid {
    grid-template-columns: 1fr;
  }
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}
.form-one .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.form-one .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--gotur-white, #fff) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-text, #595959) !important;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 60px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.form-one .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--gotur-text, #595959);
}
.form-one .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.form-one .bootstrap-select .dropdown-menu {
  border: none;
}
.form-one .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-black, #1D231F);
  background-color: var(--gotur-white, #fff);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form-one .bootstrap-select .dropdown-menu > li:hover > a,
.form-one .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-base, #63AB45);
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=tel],
.form-one textarea {
  display: block;
  width: 100%;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-text, #595959);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  border: 1px solid #D4DCED;
  outline: none;
  border-radius: 8px;
  padding: 0 20px;
  height: 55px;
  transition: all 400ms ease;
}
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one input[type=tel]:focus,
.form-one textarea:focus {
  color: var(--gotur-black, #1D231F);
  border-color: var(--gotur-base, #63AB45);
}
.form-one textarea {
  height: 143px;
  padding: 20px 20px 0;
}
}

.contact-page .comments-form__form .form-one__group {
  grid-gap: 20px 30px;
}
.contact-page .comments-form__form .form-one__control label {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.contact-page .comments-form__form .form-one__control input, .contact-page .comments-form__form .form-one__control textarea {
  border-radius: 6px;
  padding-left: 20px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  background-color: var(--gotur-white, #fff);
}
.contact-page .comments-form__form .form-one__control textarea {
  height: 200px;
}
.contact-page .comments-form__form button i {
  margin-left: 10px;
  line-height: 1;
}
