/*!
Theme Name: Oyolloo
Theme URI: http://underscores.me/
Author: Mohammad Masum
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: oyolloo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Oyolloo is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

body {
  line-height: 1.6;
  font-size: 18px;
  font-family: "Karla", sans-serif;
  font-weight: 400;
  color: #575b69;
  background: #ffffff;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1d243a;
  font-family: "Karla", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.slick-slide:focus {
  outline: none;
  box-shadow: none;
}

.slick-slide img {
  display: inline-block !important;
}

button {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

input:focus,
textarea:focus {
  outline: 1px solid #bf9b30;
  box-shadow: none;
  border: 1px solid transparent;
}

input {
  color: #939393;
  width: 100%;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid #cccccc;
  padding: 0 20px;
  line-height: 58px;
  border-radius: 10px;
}

textarea {
  color: #939393;
  width: 100%;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid #cccccc;
  padding: 20px;
  border-radius: 10px;
  height: 155px;
}

input::placeholder,
textarea::placeholder {
  color: #939393;
  font-size: 18px;
}

input[type="submit"] {
  line-height: initial;
  padding: 18px 20px !important;
  justify-content: center;
}

.section-padding {
  padding: 100px 0;
}

.padding-top {
  padding-top: 100px;
}

.padding-bottom {
  padding-bottom: 100px;
}

/* Main Title Area css
============================================================================================ */
.section-title h2 {
  font-size: 48px;
  font-weight: 700;
}

.section-title h2 {
  font-size: 48px;
}

.section-title-row {
  margin-bottom: 40px;
}

.section-title .lined {
  position: relative;
  background: var(--gradient-g-1,
      linear-gradient(137deg, #ff0025 0.07%, #6d0000 103.84%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .lined:after {
  content: "";
  position: absolute;
  background: url(assets/img/line.png);
  height: 30px;
  width: calc(100% + 30px);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 100%;
  left: 0;
}

/* Start Primary btns css
============================================================================================ */
.primary-btn {
  font-size: 18px;
  font-weight: 600;
  background: #bf9b30;
  color: #fff;
  display: inline-flex;
  text-transform: capitalize;
  align-items: center;
  gap: 5px;
  padding: 16px 22px;
  border-radius: 100px;
  transition: 0.3s;
}

.primary-btn:hover {
  opacity: 0.8;
  color: #fff;
}

/* play btn css
============================================================================================ */
.play-btn {
  position: relative;
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #bf9b30;
  font-size: 30px;
  z-index: 2;
}

.play-btn:hover {
  color: #bf9b30;
}

.play-btn:after {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  content: "";
  border-radius: 50%;
  background: #ffffff;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: glowing 1.5s linear infinite;
  -moz-animation: glowing 1.5s linear infinite;
  -o-animation: glowing 1.5s linear infinite;
  animation: glowing 1.5s linear infinite;
  z-index: -1;
}

@-webkit-keyframes glowing {
  0% {
    height: 100%;
    width: 100%;
  }

  100% {
    height: 150%;
    width: 150%;
    opacity: 0;
  }
}

@-moz-keyframes glowing {
  0% {
    height: 100%;
    width: 100%;
  }

  100% {
    height: 150%;
    width: 150%;
    opacity: 0;
  }
}

@-o-keyframes glowing {
  0% {
    height: 100%;
    width: 100%;
  }

  100% {
    height: 150%;
    width: 150%;
    opacity: 0;
  }
}

@keyframes glowing {
  0% {
    height: 100%;
    width: 100%;
  }

  100% {
    height: 150%;
    width: 150%;
    opacity: 0;
  }
}

/* gradient-bg css
============================================================================================ */
.gradient-bg {
  background: -webkit-linear-gradient(90deg, #fe690b 0%, #ff8f1e 100%);
  background: -moz-linear-gradient(90deg, #fe690b 0%, #ff8f1e 100%);
  background: -o-linear-gradient(90deg, #fe690b 0%, #ff8f1e 100%);
  background: linear-gradient(90deg, #fe690b 0%, #ff8f1e 100%);
}

.text-gradient {
  background: linear-gradient(90deg, #f861d7 0%, #8e3eff 55.84%, #4ab5fe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Start Header area style
============================================================================================ */
.header-area.sticky {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 5px 10px rgb(41 41 41 / 9%);
}

.header-area.sticky .navbar .navbar-nav li a {
  color: #1d243a;
}

.header-area {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: transparent;
  transition: 0.3s;
  padding: 20px 0;
}

.header-area .navbar {
  background: transparent;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.header-area .navbar .navbar-nav li:not(:last-child) {
  margin-right: 30px;
}

.header-area .navbar .navbar-nav li {
  position: relative;
}

    .header-area .navbar .navbar-nav li a {
        padding: 0px;
        display: inline-block;
        position: relative;
        font-size: 26px;
        color: #fff;
        font-weight: 500;
    }

.header-area .navbar .navbar-nav li a:hover,
.header-area .navbar .navbar-nav li a.active {
  color: #bf9b30;
}

.header-btns .header-btn {
  color: #004664;
  display: inline-block;
  border: 1px solid #004664;
  border-radius: 35px;
  padding: 14px 30px;
  transition: 0.3s;
}

.header-btns .header-btn:hover {
  background: #004664;
  color: #fff;
}

.offcanvas-wraper {
  position: fixed;
  width: 300px;
  background: #1d243a;
  height: 100%;
  top: 0;
  padding-top: 100px;
  z-index: 99;
  left: -300px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: none;
}

.offcanvas-wraper.active {
  left: 0;
}

.mobile-header {
/*  position: fixed;*/
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: none;
  padding: 10px 0;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 5px 10px rgb(41 41 41 / 9%);
}

.offcanvas-wraper li a {
  color: #fff;
  font-size: 16px;
}

.offcanvas-wraper li {
  margin-bottom: 10px;
  position: relative;
}

.custom-logo {
  transition: 0.3s;
  max-width:266px;
}

/* Start Banner style
============================================================================================ */
.single-banner-slider {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0 130px;
  height: 100vh;
  display: flex !important;
  align-items: center;
  position: relative;
  z-index: 1;
}

.single-banner-slider .rectangle-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.single-banner-slider .rectangle-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.single-banner-slider .angle-shape {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: -1;
}

.banner-slider-content h2 {
  font-size: 64px !important;
  color: #fff !important;
  margin-bottom: 15px;
}

.banner-slider-content p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
}

.banner-slider-thumb {
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.banner-slider-content {
 /* padding-right: 40px;*/
}

.banner-slider {
  position: relative;
  z-index: 1;
}

.banner-slider .slick-arrow {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  z-index: 1;
  cursor: pointer;
}

.banner-slider .slick-arrow.next {
  left: auto;
  right: 100px;
}

.slider_thumb-wrap .rectangle-shape {
  position: absolute;
  left: 10px;
  bottom: 10px;
  height: 345px;
  width: 320px;
  background: #263768;
  content: "";
  border-radius: 20px;
}

.slider_thumb-wrap {
  position: relative;
  z-index: 1;
}

.banner-slider-thumb .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider_thumb-wrap .banner-shape1,
.slider_thumb-wrap .circle-line,
.slider_thumb-wrap .circle-dots,
.slider_thumb-wrap .wave-shape {
  position: absolute;
  z-index: -1;
}

.slider_thumb-wrap .banner-shape1 {
  right: -65px;
  top: -65px;
}

.slider_thumb-wrap .circle-line {
  left: 14%;
  top: -20px;
}

.slider_thumb-wrap .circle-dots {
  bottom: 6px;
  right: 20px;
}

.slider_thumb-wrap .wave-shape {
  left: -35px;
  top: 28%;
}

.banner-section .slick-dots {
  position: absolute;
  bottom: 50px;
  display: none !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.banner-section .slick-dots li {
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}

.banner-section .slick-dots li button {
  text-indent: -9999px;
  padding: 0;
  height: 10px;
  width: 11px;
  border-radius: 50%;
  background: #394e95;
}

.banner-section .slick-dots li.slick-active button {
  background: #bf9b30;
}

/* Start Custom tabs style
============================================================================================ */
.tab_drawer_heading {
  display: none;
}

.tabs-trigger-wrap {
  display: flex;
  background: #fff;
  align-items: center;
  cursor: pointer;
}

.custom-tabs .tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tabs-title-icon {
  width: 95px;
  min-width: 95px;
  position: relative;
  z-index: 2;
}

/* .tabs-title-icon img{
	box-shadow: 16px 10px 60px 0px rgba(9, 33, 119, 0.4);
} */
.tabs-title-icon img+img {
  display: none;
}

.custom-tabs .tab-btn.active .tabs-title-icon img,
.custom-tabs .tab-btn:hover .tabs-title-icon img {
  display: none;
}

.custom-tabs .tab-btn.active .tabs-title-icon img+img,
.custom-tabs .tab-btn:hover .tabs-title-icon img+img {
  display: block;
}

.custom-tabs .tab-btn:nth-child(1).active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab-btn:nth-child(1):hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #c035b3;
}

.custom-tabs .tab-btn:nth-child(1).active .tabs-trigger-wrap .tabs-title-content,
.custom-tabs .tab-btn:nth-child(1):hover .tabs-trigger-wrap .tabs-title-content {
  border-right-color: #c035b3;
}

.custom-tabs .tab-btn:nth-child(1).active .tabs-trigger-wrap .tabs-title-content:after,
.custom-tabs .tab-btn:nth-child(1):hover .tabs-trigger-wrap .tabs-title-content:after {
  border-left-color: #c035b3;
}

.custom-tabs .tab-btn:nth-child(2).active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab-btn:nth-child(2):hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #58860a;
}

.custom-tabs .tab-btn:nth-child(2).active .tabs-trigger-wrap .tabs-title-content,
.custom-tabs .tab-btn:nth-child(2):hover .tabs-trigger-wrap .tabs-title-content {
  border-right-color: #58860a;
}

.custom-tabs .tab-btn:nth-child(2).active .tabs-trigger-wrap .tabs-title-content:after,
.custom-tabs .tab-btn:nth-child(2):hover .tabs-trigger-wrap .tabs-title-content:after {
  border-left-color: #58860a;
}

.custom-tabs .tab-btn:nth-child(3).active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab-btn:nth-child(3):hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #6245da;
}

.custom-tabs .tab-btn:nth-child(3).active .tabs-trigger-wrap .tabs-title-content,
.custom-tabs .tab-btn:nth-child(3):hover .tabs-trigger-wrap .tabs-title-content {
  border-right-color: #6245da;
}

.custom-tabs .tab-btn:nth-child(3).active .tabs-trigger-wrap .tabs-title-content:after,
.custom-tabs .tab-btn:nth-child(3):hover .tabs-trigger-wrap .tabs-title-content:after {
  border-left-color: #6245da;
}

.custom-tabs .tab-btn:nth-child(4).active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab-btn:nth-child(4):hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #ee5924;
}

.custom-tabs .tab-btn:nth-child(4).active .tabs-trigger-wrap .tabs-title-content,
.custom-tabs .tab-btn:nth-child(4):hover .tabs-trigger-wrap .tabs-title-content {
  border-right-color: #ee5924;
}

.custom-tabs .tab-btn:nth-child(4).active .tabs-trigger-wrap .tabs-title-content:after,
.custom-tabs .tab-btn:nth-child(4):hover .tabs-trigger-wrap .tabs-title-content:after {
  border-left-color: #ee5924;
}

.custom-tabs .tab-btn:nth-child(5).active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab-btn:nth-child(5):hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #45bfda;
}

.custom-tabs .tab-btn:nth-child(5).active .tabs-trigger-wrap .tabs-title-content,
.custom-tabs .tab-btn:nth-child(5):hover .tabs-trigger-wrap .tabs-title-content {
  border-right-color: #45bfda;
}

.custom-tabs .tab-btn:nth-child(5).active .tabs-trigger-wrap .tabs-title-content:after,
.custom-tabs .tab-btn:nth-child(5):hover .tabs-trigger-wrap .tabs-title-content:after {
  border-left-color: #45bfda;
}

.tab-content-thumbnail img {
  border-radius: 30px;
}

.tabs-title-content h4 {
  font-size: 26px;
  transition: 0.3s;
}

.tabs-title-content p {
  font-size: 16px;
  margin-bottom: 0;
}

.tabs-title-content {
  background: #fff;
  box-shadow: 16px 10px 60px #0921770a;
  padding: 20px;
  border-radius: 10px;
  margin-left: -20px;
  padding-left: 40px;
  border-right: 4px solid transparent;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.tabs-title-content:after {
  width: 10px;
  height: 20px;
  border-left: solid 10px #bf9b30;
  border-bottom: solid 10px transparent;
  border-top: solid 10px transparent;
  position: absolute;
  right: -12px;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.tabs-trigger-wrap:hover .tabs-title-content {
  border-right: 4px solid #bf9b30;
}

.tabs-trigger-wrap:hover .tabs-title-content h4 {
  color: #bf9b30;
}

.tabs-trigger-wrap:hover .tabs-title-content:after {
  opacity: 1;
  visibility: visible;
}

.custom-tabs .tab-btn.active .tabs-trigger-wrap .tabs-title-content {
  border-right: 4px solid #bf9b30;
}

.custom-tabs .tab-btn.active .tabs-trigger-wrap .tabs-title-content h4 {
  color: #bf9b30;
}

.custom-tabs .tab-btn.active .tabs-trigger-wrap .tabs-title-content:after {
  opacity: 1;
  visibility: visible;
}

.custom-tabs .tab_drawer_heading.d_active .tabs-trigger-wrap .tabs-title-icon img,
.custom-tabs .tab_drawer_heading .tabs-trigger-wrap:hover .tabs-title-icon img {
  display: none;
}

.custom-tabs .tab_drawer_heading.d_active .tabs-trigger-wrap .tabs-title-icon img+img,
.custom-tabs .tab_drawer_heading:hover .tabs-title-icon img+img {
  display: block;
}

.custom-tabs .tab_drawer_heading[rel="tab1"].d_active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab_drawer_heading[rel="tab1"]:hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #c035b3;
}

.custom-tabs .tab_drawer_heading[rel="tab1"].d_active .tabs-trigger-wrap,
.custom-tabs .tab_drawer_heading[rel="tab1"]:hover .tabs-trigger-wrap {
  border-bottom-color: #c035b3;
}

.custom-tabs .tab_drawer_heading[rel="tab2"].d_active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab_drawer_heading[rel="tab2"]:hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #58860a;
}

.custom-tabs .tab_drawer_heading[rel="tab2"].d_active .tabs-trigger-wrap,
.custom-tabs .tab_drawer_heading[rel="tab2"]:hover .tabs-trigger-wrap {
  border-bottom-color: #58860a;
}

.custom-tabs .tab_drawer_heading[rel="tab3"].d_active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab_drawer_heading[rel="tab3"]:hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #6245da;
}

.custom-tabs .tab_drawer_heading[rel="tab3"].d_active .tabs-trigger-wrap,
.custom-tabs .tab_drawer_heading[rel="tab3"]:hover .tabs-trigger-wrap {
  border-bottom-color: #6245da;
}

.custom-tabs .tab_drawer_heading[rel="tab4"].d_active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab_drawer_heading[rel="tab4"]:hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #ee5924;
}

.custom-tabs .tab_drawer_heading[rel="tab4"].d_active .tabs-trigger-wrap,
.custom-tabs .tab_drawer_heading[rel="tab4"]:hover .tabs-trigger-wrap {
  border-bottom-color: #ee5924;
}

.custom-tabs .tab_drawer_heading[rel="tab5"].d_active .tabs-trigger-wrap .tabs-title-content h4,
.custom-tabs .tab_drawer_heading[rel="tab5"]:hover .tabs-trigger-wrap .tabs-title-content h4 {
  color: #45bfda;
}

.custom-tabs .tab_drawer_heading[rel="tab5"].d_active .tabs-trigger-wrap,
.custom-tabs .tab_drawer_heading[rel="tab5"]:hover .tabs-trigger-wrap {
  border-bottom-color: #45bfda;
}

.custom-tabs .tab_drawer_heading.d_active .tabs-trigger-wrap {
  border-bottom: 4px solid #bf9b30;
}

.custom-tabs .tab_drawer_heading.d_active .tabs-title-content h4 {
  color: #bf9b30;
}

/* Start gallery style
============================================================================================ */
.gallery-area {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.gallery-area .gallery-item {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.gallery-area .gallery-item.big-item {
  width: calc(50% - 30px);
}

.gallery-area .gallery-item.small-item {
  width: calc(33.33% - 30px);
}

.gallery-hover-box {
  background: #1d243ab3;
  margin: 20px;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  border-radius: 10px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  transition: 0.3s;
  transform: scale(0);
}

.gallery-hover-box h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.gallery-hover-box p {
  font-size: 16px;
  margin-bottom: 25px;
}

.gallery-hover-box .primary-btn {
  background: transparent;
  border: 2px solid #fff;
  padding: 10px 18px;
}

.gallery-item:hover .gallery-hover-box {
  transform: scale(1);
}

.management-slide-tab-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  /*   height: 100vh; */
  color: #333;
}

.management-slide-tab-wrapper .slick-track,
.management-slide-tab-wrapper .slick-list {
  /*   height: 100vh; */
}

.slick-dotted.slick-slider {
  margin: 0;
}

.slides {
  width: 100%;
  /*   height: 100vh; */
}

.slides .slide {
  width: 100%;
  height: 85vh;
  /*   padding: 80px 0px; */
  /* 	height: auto; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-icon-box .elementor-icon-box-icon svg {
  box-shadow: 10px 10px 40px 0 rgb(0 0 0 / 8%);
  border-radius: 50%;
}

.contact-icon-box .elementor-icon {
  height: 54px;
  width: 54px;
  min-width: 54px;
  box-shadow: 0 20px 33px rgb(0 0 0 / 8%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-form .form-group span {
  display: block;
}

.contact-form .form-group br {
  display: none;
}

.contact-form .form-group label {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group .wpcf7-spinner {
  display: none;
}

.contact-icon-box.map-box .elementor-icon {
  box-shadow: none;
  background: #bf9b30;
}

.business-box {
  border: 3px solid #15245226;
  padding: 25px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  height: 100%;
}

.business-box:after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  height: 30%;
  width: calc(100% + 16px);
  border: 14px solid #152452d9;
  z-index: -1;
  content: "";
  border-top: 0;
  transform: translateX(-50%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.business-box-inner {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}

.bs-box-count {
  font-size: 70px !important;
  background: #152452;
  width: 130px;
  height: 105px;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: -48px auto 55px;
}

.bs-box-count:after {
  position: absolute;
  left: 50%;
  bottom: -15px;
  height: 30px;
  width: 30px;
  content: "";
  background: #152452;
  transform: translateX(-50%) rotate(45deg);
}

.bs-box-count:before {
  position: absolute;
  left: 50%;
  top: 0px;
  height: 3px;
  content: "";
  width: 170px;
  background: #f9f8fe;
  transform: translateX(-50%);
}

.business-box-inner h4 {
  font-size: 26px;
  margin-bottom: 15px;
}

.business-box-inner p {
  font-size: 18px;
  color: #575b69;
}

.business-box.color-2 {
  border-color: #92146129;
}

.business-box.color-2 .bs-box-count {
  background: #921461;
}

.business-box.color-2 .bs-box-count:after {
  background: #921461;
}

.business-box.color-2:after {
  border-color: #921461d1;
}

.business-box.color-3 {
  border-color: #598cf438;
}

.business-box.color-3 .bs-box-count {
  background: #598cf4;
}

.business-box.color-3 .bs-box-count:after {
  background: #598cf4;
}

.business-box.color-3:after {
  border-color: #598cf4d1;
}

.custom-css-tabs .e-n-tabs-heading {
  background: #fff;
  box-shadow: 6px 6px 40px rgb(0 0 0 / 6%);
  padding: 10px;
  border-radius: 1000px;
  z-index: 1;
  position: relative;
}

.custom-css-tabs .e-n-tabs-content {
  margin-top: -35px;
}

.custom-css-tabs .e-n-tabs {
  align-items: center;
}

.faq .accordion-button {
  font-size: 26px;
  font-weight: 500;
  color: #1d243a;
  line-height: 1.3;
}

.faq .accordion-body p {
  font-size: 20px;
  color: #3a3a3f;
}

.faq .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #bf9b30;
  background-color: #fff;
}

.faq .accordion-item {
  border-color: #dbdbdb;
}

.faq .accordion-body {
  padding-top: 0;
}

.faq .accordion-button::after {
  font-family: "FontAwesome";
  content: "\f068";
  font-weight: 900;
  background-image: none;
}

.faq .accordion-button:not(.collapsed)::after {
  content: "\f067";
}

.fullpage_section {
  height: 100vh;
  width: 100%;
  background: #f9f8fe;
  padding: 180px 0 50px;
}

.fullpage_section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.management-slide-tab-title h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.management-slide-tab-des p {
  font-size: 19px;
  line-height: 32px;
  margin-bottom: 15px;
}

.management-slide-tab-accordion h2.accordion-header button {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.management-slide-tab-accordion h2.accordion-header button.accordion-button.collapsed {
  color: #0e0d0d;
}

.management-slide-tab-accordion h2.accordion-header .accordion-button:not(.collapsed) {
  color: #bf9b30;
}

.management-slide-tab-accordion h2.accordion-header button.accordion-button {
  background: #f9f8fe;
  padding: 10px 0px 10px 0px;
}

.management-slide-tab-accordion .accordion-item .accordion-body {
  font-size: 16px;
  color: #515151;
  line-height: 26px;
  background: #f9f8fe;
  padding: 0px 0px 20px 0px;
}

.management-slide-tab-accordion h2.accordion-header button.accordion-button:focus {
  border: none !important;
  background: #f9f8fe !important;
  box-shadow: none !important;
}

.management-slide-tab-accordion .accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.management-slide-tab-accordion .accordion .accordion-item {
  border-top: 1px solid #dde6f8;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.management-slide-tab-accordion .accordion .accordion-item.active-border {
  border-top: 1px solid #bf9b30;
}

.management-slide-tab-accordion .accordion .accordion-item .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='%23BF9B30'%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");
}

.management-slide-tab-wrapper .row.swiper-slide {
  display: flex;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.management-button-next.swiper-button-next {
  width: 55px;
  height: 55px;
  border: 1px solid #bf9b30;
  border-radius: 50px;
  display: block;
  line-height: 55px;
  text-align: center;
  transform: translateY(-100px) translateX(50px);
}

.management-button-prev.swiper-button-prev {
  width: 55px;
  height: 55px;
  border: 1px solid #bf9b30;
  border-radius: 50px;
  display: block;
  line-height: 55px;
  text-align: center;
  transform: translateX(-100px) translateY(-100px);
}

.management-slide-tab-wrapper.ol-asked-question .row.swiper-slide {
  margin-left: 5px;
}

.footer-news-letter .contact_mail input {
  height: 56px;
  background: #2e3651;
  border: none;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  width: 70%;
}

.contact_mail {
  position: relative;
}

.footer-news-letter .contact_mail input:focus {
  border: none !important;
  outline: none;
}

.footer-news-letter .contact_mail input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact_Btn button {
  position: absolute;
  top: -1px;
  right: -85px;
  padding: 13px 22px 13px 22px;
  font-size: 18px;
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .management-button-next.swiper-button-next {
    transform: none;
  }

  .management-button-prev.swiper-button-prev {
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .contact_Btn button {
    position: static;
  }
}

@media (max-width: 767px) {
  .management-slide-tab-title h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .management-slide-tab-wrapper.ol-asked-question .row.swiper-slide {
    margin-left: 0px;
  }

  .management-slide-tab-accordion h2.accordion-header button {
    font-size: 20px;
  }

  .management-slide-tab-thumb {
    margin-top: 60px;
  }

  .ol-management-navigation {
    display: none;
  }

  .contact_Btn button {
    position: static;
  }
}

.zzper-starter .price_item:before,
.zzper-basci .price_item:before,
.zzper-pro .price_item:before,
.zzper-plus .price_item:before {
  width: 100%;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  height: 100px;
}

.zzper-starter .price_item:before,
.zzper-starter .price_item .app_btn {
  background: #152452;
}

.zzper-basci .price_item:before,
.zzper-basci .price_item .app_btn {
  background: #921461;
}

.zzper-pro .price_item:before,
.zzper-pro .price_item .app_btn {
  background: #598cf4;
}

.zzper-plus .price_item:before,
.zzper-plus .price_item .app_btn {
  background: #e1aa02;
}

.price_item .prtitle-wrap .pr_title {
  color: #fff;
}

.compare-wrap .title-short .bg-style {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fbe9e8;
  color: #ed4127;
}

.compare-wrap .title-short {
  margin-bottom: 0px;
  margin-top: -3px;
}

.compare-wrap .title-short i {
  color: #15d489;
  font-size: 22px;
}

.accordion-button .head-title {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.accordion-button {
  padding-top: 6px;
}

.accordion-button .head-title:before {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  transform: rotate(180deg);
  right: -20px;
  font-size: 15px;
}

.accordion-button.collapsed .head-title:before {
  transform: rotate(0deg);
}

.form_question select.wpcf7-form-control {
  width: 100%;
  height: 60px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding-left: 15px;
}

.form_question .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  color: #939393;
  font-weight: 400;
}

.form_question .wpcf7-list-item {
  margin-left: 0px;
}

.form_question .wpcf7-list-item input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  top: 5px;
  left: 10px;
}

.form_question .wpcf7-list-item input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  left: -11px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: white;
}

.form_question .wpcf7-list-item input[type="checkbox"]:checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  border: solid #bf9b30;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0px;
  left: 1px;
}

.form_question .wpcf7-list-item-label {
  margin-left: 18px;
}

@media (max-width: 767px) {
  .form_question .wpcf7-list-item label {
    font-size: 14px;
  }

  .wprev-slider {
    margin-left: 0px;
    margin-right: 0px;
  }

  .review_wrap .wprs_unslider-arrow {
    display: none;
  }
}

.gallery-section {
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.gray-bg {
  background-color: #faf9fe;
}

section.commercial-video-section .gray-bg {
  padding: 60px 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.commercial-video {
  max-height: 800px;
  background-size: cover;
  background-position: center;
/*  display: flex;*/
  justify-content: center;
  align-items: center;
}

.main-footer {
  background-color: #1d243a;
  color: #ffffffd1;
}

.main-footer a,
.main-footer h5,
.main-footer h4 {
  color: #ffffffd1;
}

.copyright-section {
  background-color: #141b2f;
}

.main-footer {
  padding-top: 130px;
  padding-bottom: 100px;
}

.footer-box.about-footer img {
  margin-bottom: 30px;
}

.footer-box.about-footer p {
  line-height: 1.7;
}

.footer-box>h4 {
  margin-bottom: 35px;
}

.footer-box.footer-nav ul {
  margin: 0;
  padding: 0;
}

.footer-box.footer-nav ul li {
  margin-bottom: 18px;
}

.footer-box.footer-nav ul li:last-child {
  margin-bottom: 0;
}

.copyright-section {
  color: #ffffffd1;
}

.copyright-section a {
  color: #ffffffd1;
}

.copyright-section {
  padding: 30px 0;
}

.footer-contact-box {
  margin-bottom: 35px;
}

.footer-contact-box:last-child {
  margin-bottom: 0;
}

.newsletter input[type="email"] {
  background-color: #2e3651;
  border: none;
  border-radius: 50px;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter input[type="email"] {
  max-width: 55%;
}

.newsletter button {
  width: 40%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-box.footer-newsletter {
  margin-left: 50px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons ul {
  display: flex;
  gap: 15px;
}

.social-icons ul li a {
  background-color: #2e3651;
  width: 40px;
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 15px;
}

.social-icons h4 {
  margin-bottom: 20px;
}

.footer-box.about-footer {
  margin-right: 50px;
}

.copyright-right span {
  margin: 0 10px;
  display: inline-block;
}

.management-item {
  background-color: #ffffff;
}

.management-item h3 {
  font-size: 26px;
}

.management-item p {
  font-size: 18px;
  margin-bottom: 0;
}

.management-item {
  text-align: center;
  padding: 30px 27px;
}

.accurate-management {
  padding: 60px 50px;
}

.management-item h3 {
  margin-top: 25px;
}

.management-item h3 {
  margin-bottom: 15px;
}

.col-xl-4.middle-item {
  margin-top: 120px;
}

.management-item {
  border-radius: 10px;
  border-bottom: 4px solid #fff;
  transition: 0.3s;
}

.item-1:hover {
  border-color: #aa329f;
}

.item-2:hover {
  border-color: #8dbf36;
}

.item-3:hover {
  border-color: #f1582a;
}

.accurate-management-section .section-title {
  margin-bottom: 65px;
}

.accurate-management {
  border-radius: 30px;
}

section.inner-banner {
  background-color: #202a48;
  color: #fff;
}

section.inner-banner h1 {
  color: #fff;
}

.inner-banner-text h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
}

.inner-banner-text p {
  font-weight: 500;
  margin: 20px 0;
}

section.inner-banner {
  position: relative;
  background-size: cover;
  background-position: center;
}

img.inner-banner-shape {
  position: absolute;
/*  right: 0;
  top: 0;*/
  max-width: 800px;
  z-index: 1;
}

section.inner-banner .container {
  height: 890px;
}

.inner-banner-thumb.text-end {
  position: relative;
  z-index: 2;
}

.inner-banner-thumb.text-end {
  margin-left: 50px;
}

.inner-banner-text {
  position: relative;
  z-index: 2;
}

.tab-section .nav-pills {
  background: #fff;
  box-shadow: 6px 6px 40px rgb(0 0 0 / 6%);
  padding: 10px;
  border-radius: 1000px;
  z-index: 1;
  position: relative;
}

.tab-section .nav-pills li:first-child button.active,
.tab-content .tab-pane:first-child .primary-btn {
  background-color: #152452;
}

.tab-section .nav-pills li:nth-child(2) button.active,
.tab-content .tab-pane:nth-child(2) .primary-btn {
  background-color: #921461;
}

.tab-section .nav-pills li:nth-child(3) button.active,
.tab-content .tab-pane:nth-child(3) .primary-btn {
  background-color: #5c8ef4;
}

.tab-section .nav-pills li:nth-child(4) button.active,
.tab-content .tab-pane:nth-child(4) .primary-btn {
  background-color: #e1aa02;
}

.tab-section .nav-pills li:nth-child(5) button.active,
.tab-content .tab-pane:nth-child(5) .primary-btn {
  background-color: #13c6e5;
}

.tab-section .nav-pills li:nth-child(6) button.active,
.tab-content .tab-pane:nth-child(6) .primary-btn {
  background-color: #15d489;
}

.tab-section .nav-pills li button {
  border-radius: 50px;
  padding: 10px 25px;
}

.tab-navigation ul {
  display: inline-flex;
}

.tab-navigation {
  display: flex;
  justify-content: center;
}

.tab-section .nav-pills button {
  font-weight: 400;
  color: #575b69;
}

div#pills-tabContent {
  border: 1px solid #ece9fa;
  padding-top: 90px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 20px;
}

.tab-navigation {
  margin-bottom: -50px;
}

.tab-content-image {
  text-align: right;
}

.tab-content-left p {
  color: #1d243a;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 30px;
}

.featured-text h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.featured-text p {
  font-size: 20px;
  color: #575b69;
  margin: 20px 0;
}

.featured-text ul li {
  color: #1d243a;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.featured-text ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  color: #15d389;
}

.cta-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1d243a;
}

.cta-text h5 {
  color: #1d243a;
  font-size: 34px;
  font-weight: 500;
  margin: 20px 0;
}

.cta-text p {
  font-size: 20px;
  margin-bottom: 30px;
}

.pricing-box.dark-blue .pricing-box-top {
  background-color: #152452;
}

.pricing-box.dark-pink .pricing-box-top {
  background-color: #921461;
}

.pricing-box.light-blue .pricing-box-top {
  background-color: #598cf4;
}

.pricing-box.golden .pricing-box-top {
  background-color: #e1aa02;
}

.pricing-box-top h3 {
  color: #fff;
}

.pricing-box-top h3 {
  margin: 0;
  font-size: 32px;
  text-align: center;
  font-weight: 700;
}

.pricing-box-top {
  padding: 30px;
}

.pricing-box {
  border-radius: 18px;
  overflow: hidden;
}

.pricing-box-middle {
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 15px 15px;
}

.pricing-wrapper {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 20px;
}

.pricing-box {
  background-color: #fff;
  border: 1px solid #e6e5eb;
  height: 100%;
}

ul.pricing-list li {
  font-size: 16px;
  color: #444444;
  margin-bottom: 5px;
}

.pricing-box-middle {
  text-align: center;
}

.pricing-box-middle p {
  margin-bottom: 0;
  font-size: 16px;
}

.pricing-box-middle h4 {
  color: #4d44b5;
  font-size: 36px;
}

.pricing-box-middle h4 span {
  font-size: 16px;
}

a.pricing-btn {
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  font-family: "Karla", Sans-serif;
  padding: 12px 20px;
  width: 100%;
  display: block;
  margin-top: 25px;
  transition: all 0.3s;
  text-align: center;
  margin-bottom: 25px;
}

.dark-blue .pricing-btn {
  background-color: #152452;
}

.dark-pink .pricing-btn {
  background-color: #921461;
}

.light-blue .pricing-btn {
  background-color: #598cf4;
}

.golden .pricing-btn {
  background-color: #e1aa02;
}

.compare-navs ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.compare-navs ul li {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  text-align: center;
}

.compare-accordions button.accordion-button {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.compare-accordions .accordion-button::after {
  display: none;
}

.compare-accordions button.accordion-button span:first-child {
  text-align: left;
}

.compare-accordions button.accordion-button span:first-child {
  font-size: 18px;
  font-weight: 600;
}

.compare-accordions button.accordion-button {
  padding: 15px 20px;
  background-color: transparent;
  border-bottom: 1px solid #dde6f8;
  box-shadow: none;
}

.compare-plans .accordion-item {
  border: none;
}

.compare-accordions .accordion-header {
  border: none;
}

.compare-accordions .accordion-item {
  border-top: 1px solid #dde6f8 !important;
}

.compare-navs {
  padding: 15px;
}

.compare-accordions button.accordion-button i.fa-check-circle {
  color: #15d489;
}

.compare-accordions button.accordion-button .fas.fa-circle-xmark {
  color: #ee495f;
}

.compare-accordions button.accordion-button i {
  font-size: 20px;
  transition: 0.3s;
}

.compare-accordions button.accordion-button span:first-child {
  color: #bf9b30;
  transition: 0.3s;
}

.compare-accordions button.accordion-button.collapsed span:first-child {
  color: #000;
}

.compare-accordions .accordion-body p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

.compare-accordions .accordion-body {
  padding-top: 25px;
  padding-bottom: 25px;
}

.compare-accordions button.accordion-button span:first-child {
  display: flex;
  align-items: center;
}

.compare-accordions button.accordion-button span:first-child span.accordion-icons i {
  font-size: 15px;
  transform: rotate(-180deg);
}

.compare-accordions button.accordion-button span:first-child span.accordion-icons {
  margin-left: 10px;
}

.compare-accordions button.accordion-button.collapsed span:first-child span.accordion-icons i {
  transform: rotate(0deg);
}

.compare-accordions button.accordion-button>span:first-child {
  width: 435px;
}

.compare-navs ul li:first-child {
  width: 435px;
}

.cta-two-content {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.cta-two-content {
  padding: 85px 200px;
  border-radius: 25px;
}

.cta-two-content h2 {
  font-size: 48px;
  color: #fff;
}

.cta-two-section a.primary-btn {
  background-color: #fff;
  color: #bf9b30;
}

.cta-two-section p {
  margin: 20px 0;
}

select {
  width: 100%;
  height: 50px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding-left: 15px;
}

input[type="checkbox"] {
    width: 26px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    top: 13px;
    left: 10px;
    height: 26px;

}

input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  left: -11px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: white;
}

input[type="checkbox"]:checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  border: solid #bf9b30;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0px;
  left: 1px;
}

.form-group label {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form_question form {
  box-shadow: 0px 38px 33px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 10px;
}

.section-title p {
  margin-bottom: 0 !important;
}

.inner-banner-text h5 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.contact-box-icon {
  height: 54px;
  width: 54px;
  min-width: 54px;
  box-shadow: 0 20px 33px rgb(0 0 0 / 8%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-box-icon i {
  color: #c5a443;
}

.contact-box-item {
  display: flex;
  gap: 20px;
}

.contact-box-item {
  margin-bottom: 30px;
}

.contact-box-item:last-child {
  margin-bottom: 0;
}

.contact-box-content h6 {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-box-content p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  color: #1b2135;
}

.contact-box-content p a {
  color: #1b2135;
}

.contact-left h2 {
  font-size: 48px;
}

.contact-left>p {
  font-size: 20px;
  margin: 30px 0;
}

.contact-right {
  box-shadow: 0px 38px 33px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 10px;
}

.form-group.submit {
  margin-bottom: 0;
}

.map iframe {
  border-radius: 15px;
}

/* testimonial area css  */

.testimonial_slider .item {
  padding: 0px 8px;
}

.testimonial_slider .testimonila_content {
  border: 1px solid #f5f5f5;
  box-shadow: rgba(0, 0, 0, 0.0980392) 0px 0px 0px 0;
  border-radius: 10px;
  padding: 20px 25px 20px 48px;
  position: relative;
}

.testimonial_slider .testimonila_content:before {
  bottom: 47px;
  box-sizing: border-box;
  color: #bbb;
  content: "\201C";
  display: block;
  height: 96px;
  left: 55px;
  position: absolute;
  right: 515.391px;
  text-size-adjust: 100%;
  top: 20px;
  width: 24.6094px;
  column-rule-color: #bbb;
  perspective-origin: 12.2969px 48px;
  transform-origin: 12.2969px 48px;
  border: 0 none #bbb;
  font: normal normal normal normal 60px / 96px Georgia, serif;
  margin: -25px 0 0 -40px;
  outline: #bbb none 0;
}

.testimonial_slider p {
  font-size: 16px;
  color: #777;
  font-style: italic;
  line-height: 1.5;
}

.testimonial_footer ul {
  display: flex;
  font-size: 15px;
  color: #ed930c;
}

.testimonial_author {
  margin-left: 20px;
  margin-top: 20px;
}

.testimonial_author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.testimonial_authorimg {
    width: 50px;
    height: 50px;
    background-color: #01579b;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: white;
    margin-left: 18px;
}

.testimonial_author p {
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #555;
  line-height: 1.3;
}

.slider_dots_box .slider_dots li {
  display: inline-block;
}

.slider_dots_box .slider_dots li button {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 4px !important;
  background: 0 0;
  border-radius: 5px;
  padding: 0px;
  overflow: hidden;
  text-indent: -999em;
  border: 1px solid #c3c3c3;
  cursor: pointer;
  background: transparent;
  box-sizing: border-box;
}

.slider_dots_box .slider_dots li.slick-active button {
  border-color: #ed930c;
  background: #ed930c;
}

.testemonial_slider_inner .slider_nav {
  display: flex;
}

.testemonial_slider_inner .slider_nav .prevs,
.testemonial_slider_inner .slider_nav .nexts {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 15px;
}

.testemonial_slider_inner .slider_nav .prevs:hover,
.testemonial_slider_inner .slider_nav .nexts:hover {
  background: #ed930c;
  color: #000000;
}

.app_service_inner .app_service_item {
  z-index: 1;
  position: relative;
}

.app_service_inner .app_service_item+.app_service_item {
  margin-top: 20px;
}

.app_service_inner .app_service_item .app_service_icon img {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.app_service_inner .app_service_item .text {
  flex: 1;
}

.app_service_inner .app_service_item.flex-row-reverse {
  text-align: right;
}

.app_service_inner .app_service_item.flex-row-reverse+.app_service_item {
  margin-top: 50px;
}

.app_service_inner .app_service_item.flex-row-reverse:first-child {
  margin-right: -50px;
  margin-left: 0;
}

.app_service_inner .app_service_item:first-child {
  margin-left: -50px;
}

.app_service_inner .app_service_item:first-child .app_service_icon {
  margin-right: 75px;
}

.app_service_inner .app_service_item.flex-row-reverse:first-child .app_service_icon {
  margin-left: 75px;
}

.app_service_inner .app_service_item.flex-row-reverse:last-child {
  margin-right: -30px;
  margin-left: 0;
}

.app_service_inner .app_service_item.flex-row-reverse:last-child .app_service_icon {
  margin-left: 55px;
}

.app_service_inner .app_service_item .app_service_icon {
  margin-right: 30px;
}

.app_service_inner .app_service_item:last-child {
  margin-left: -20px;
}

.app_service_inner .app_service_item:last-child .app_service_icon {
  margin-right: 45px;
}

.app_service_inner .app_service_item.flex-row-reverse .app_service_icon {
  margin-left: 30px;
  margin-right: 0;
}

.app_img {
  margin-left: -72px;
  margin-right: -72px;
}

.management-item img {
  max-width: 32%;
}


.pricing-list li {
  position: relative;
}

.pricing-list li::before {
  position: absolute;
  content: "\f058";
  font-size: 15px;
  color: #15d489;
  left: -28px;
  bottom: 0px;
  font-family: 'Font Awesome 6 Free';
}


ul.pricing-list li {
    margin-left: 18px;
    display: flex;
    padding: 1px 0;
}

.pricing-list .number {
    /*flex: 0 0 50px;*/ /* Fixed width for the numbers */
    /*text-align: left;*/ /* Align numbers to the left */
    font-size: 11px;
    text-wrap: nowrap;
    margin-top: 5px;
    color: #776d4f;
}

.pricing-list .text {
    flex: 1;
    text-align: right; /* Align text to the right */
    text-wrap: nowrap;
}

.form_question .row .col-lg-6 {
  width: 100%;
}



.aboutlist ul li {
    margin-top: 25PX;
    line-height: 1.7;
    font-size:23px;
}

.listdot ul li {
   list-style:square;
}
/* new css masum  */

.subpage-readmore-btn {
  background: #BF9B30;
  color: #fff;
  padding: 5px 15px;
  border-radius: 1000px;
  transition: .3s;
}

.subpage-readmore-btn:hover {
  opacity: .8;
}


.subpage-readmore-btn {
/*  display: none;*/
}


.video-background {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 0; /* Ensure video stays in the background */
    background-size: cover;
    object-fit: cover; /* Ensures video covers the entire container */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Ensure video stays in the background */
}

    .content-container {
        position: relative;
        z-index: 1; /* Ensure content is above the video */
        /* Your content styles here (e.g., text color, padding) */
    }

.p_showmore {
    max-height: 450px;
    overflow: scroll;
}
