

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;900&display=swap');
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #feeb9b;
  text-decoration: none;
}

a:hover {
  color: #feeb9b;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: 'Inter', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #bd944c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: rgb(155 114 50 / 77%);
  color: #fff;
}
.contact-info-text a {
    color: #fff !important;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* height: 80px; */
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
}

/* #header.header-transparent {
  background: none;
} */

#header.header-scrolled {
  background: #3c434e;
  /* height: 100px; */
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header .logo {
  margin-left: -40px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 150px;
}

#main {
  margin-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.ct_small_input_box input.form-control:focus {
    box-shadow: none;
    border-color: #966e30;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar ul li a {
    position: relative;
}
.navbar ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    width: 0%;
    height: 2px;
    background-color: #e7dca3;
    margin: auto;
    transition: 0.4s ease all;
    display:block;
}
.navbar ul li a:hover:before {
   width:100%;
}
.ct_login_btn:before {
    position: unset !important;
    background-color: unset !important;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 0px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
      margin-left: 30px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: #bd944c;
  
}









@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
i.bi.mobile-nav-toggle.bi-x{
color: #333;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 38, 48, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

/* .navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
} */
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  bottom: 15px;
  /* left: 15px; */
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  width: 300px;
  right: 0px;
  padding-top: 50px;
  height: 100vh;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1e4356;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e9dea4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
  margin-top: 158px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* #hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
  background:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/banner_bg1.png") center top no-repeat;
  z-index: 0;
 
  transform: translateX(-50%) rotate(0deg);
} */

/* 
#hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
 
  opacity: 0.3;
  z-index: 0;

  transform: translateX(-50%) translateY(18px) rotate(0deg);
} */

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

/* #hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
} */
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  overflow: hidden;
  border-right: 0.15em solid #fff;
  white-space: nowrap;
  /* margin: 0 auto; */
  letter-spacing: .15em; 
  animation: typing 3s steps(30, end), blink-caret .5s step-end infinite;
}
/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #fff }
}
#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  opacity: 1;
}



#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  background-color: #bd944c;
  border-radius: 100px;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover{
  opacity: 0.8;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #333;
  animation-delay: 0.8s;
  border: 2px solid #fff;
  background-color: #fff;
}

#hero .btn-get-started:hover {
  background: #bd944c;
  color: #fff;
  text-decoration: none;
  border-color:#bd944c;
}
.ct_banner_btn_grp a i.fa.fa-paper-plane{
color: #0088cc;
font-size: 16px;
}

.ct_banner_btn_grp a i.fa.fa-whatsapp{
  color: #25D366;
  font-size: 16px;
  }
  .ct_banner_btn_grp a.btn-get-started:hover i {
    color: #fff;
}
.ct_side_fixed_button {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translate(-50%, -50%)rotate(-90deg);
  z-index: 99999;
  transition: 0.4s ease all;
  
}
.ct_hand_icon {
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 25px;
  z-index: 9999999999999999999;
  background: #bd944c;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: #fff;
  font-size: 24px;
  border-radius: 0px 100px 100px 0px;
  transition: 0.8s ease all;
  cursor: pointer;
}
.ct_side_fixed_button button {
  padding: 12px 30px;
  background-color: #bd944c;
  border: none;
  color: #fff;
  margin-left: 15px;
  letter-spacing: 0.6px;
}

.ct_login{
   
  animation: animate-pulse 3s linear infinite;
  cursor: pointer
}

.waviy {
  position: relative;
  /* -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2)); */
  font-size: 60px;
  margin-bottom: 50px;
}
.waviy span {
  position: relative;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  animation: waviy 1s infinite;
  font-size: 48px;
  font-weight: 700;
  animation-delay: calc(.1s * var(--i));
  
}
@keyframes waviy {
  0%,40%,100% {
    transform: translateY(0)
  }
  20% {
    transform: translateY(-20px)
  }
}
/* .ct_hand_icon:visited ~ .ct_side_fixed_button {
  left: 25px;
} */
/* .ct_hand_icon:visited{
  opacity: 0;
} */
.ct_side_fixed_button.active {
  left: 24px;
}
.ct_hand_icon i.fa.fa-hand-o-right {
  transform: translateX(-10px);
  animation: hand_animate 5s linear infinite;
}

.opacity-animate3{
  animation:opt-animation3 0.4s ;

  animation-fill-mode: forwards;
}

@-webkit-keyframes opt-animation3 {
0%   { opacity: 0; transform: scale(0.75);}
100% { opacity: 1; transform: scale(1);}
}
@-moz-keyframes opt-animation3 {
 0%   { opacity: 0; transform: scale(0.75);}
100% { opacity: 1; transform: scale(1);}
}
@-o-keyframes opt-animation3{
0%   { opacity: 0; transform: scale(0.75);}
100% { opacity: 1; transform: scale(1);}
}
@keyframes opt-animation3 {
0%   { opacity: 0; transform: scale(0.75);}
100% { opacity: 1; transform: scale(1);}
}

@keyframes hand_animate{
  0%,50%,100%{
    transform: translateX(-5px); 
  }
  25%,75%{
    transform: translateX(5px); 
  }
}

@keyframes animate-pulse{
  0%{
      box-shadow: 0 0 0 0 rgba(155, 114, 50,0.9),  0 0 0 0 rgba(155, 114, 50,0.9);
  }
  40%{
      box-shadow: 0 0 0 30px rgba(155, 114, 50,0.0),  0 0 0 0 rgba(155, 114, 50,0.9);
  }
  80%{
      box-shadow: 0 0 0 30px rgba(155, 114, 50,0.0),  0 0 0 20px rgba(155, 114, 50,0);
  }
  100%{
      box-shadow: 0 0 0 0 rgba(155, 114, 50,0.0),  0 0 0 20px rgba(155, 114, 50,0);
  }
  
}

.ct_img_width img {
  width: 100%;
  border-radius: 10px;
}
button.ct_close_btn {
  position: absolute;
  right: -15px;
  background: #bd944c;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  top: -15px;
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero::after {
    width: 180%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  #hero::before {
    top: 0;
    width: 180%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

@media (max-width: 575px) {
  #hero h2 {
    font-size: 30px;
  }

  #hero::after {
    left: 40%;
    top: 0;
    width: 200%;
    height: 100%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  #hero::before {
    left: 50%;
    top: 0;
    width: 200%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
  #header .logo img {
   padding-left:15px;
    max-height: 100px;
}
}

/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
#hero-no-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}

#hero-no-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url("../img/hero-bg.jpg") center top no-repeat;
}

#hero-no-slider h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 700;
}

#hero-no-slider p {
  color: #fff;
}

#hero-no-slider .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #68A4C4;
}

#hero-no-slider .btn-get-started:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #hero-no-slider h2 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  background-color: #f3f8fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #68A4C4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.ct_four span {
  color: #fff;
  opacity: 0;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop .3s forwards;
  margin-bottom: 0px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.ct_animate span:nth-of-type(2) {
	animation-delay: .05s;
}
.ct_animate span:nth-of-type(3) {
	animation-delay: .1s;
}
.ct_animate span:nth-of-type(4) {
	animation-delay: .15s;
}
.ct_animate span:nth-of-type(5) {
	animation-delay: .2s;
}
.ct_animate span:nth-of-type(6) {
	animation-delay: .25s;
}
.ct_animate span:nth-of-type(7) {
	animation-delay: .3s;
}
.ct_animate span:nth-of-type(8) {
	animation-delay: .35s;
}
.ct_animate span:nth-of-type(9) {
	animation-delay: .4s;
}
.ct_animate span:nth-of-type(10) {
	animation-delay: .45s;
}
.ct_animate span:nth-of-type(11) {
	animation-delay: .5s;
}
.ct_animate span:nth-of-type(12) {
	animation-delay: .55s;
}
.ct_animate span:nth-of-type(13) {
	animation-delay: .6s;
}
.ct_animate span:nth-of-type(14) {
	animation-delay: .65s;
}
.ct_animate span:nth-of-type(15) {
	animation-delay: .7s;
}
.ct_animate span:nth-of-type(16) {
	animation-delay: .75s;
}
.ct_animate span:nth-of-type(17) {
	animation-delay: .8s;
}
.ct_animate span:nth-of-type(18) {
	animation-delay: .85s;
}
.ct_animate span:nth-of-type(19) {
	animation-delay: .9s;
}
.ct_animate span:nth-of-type(20) {
	animation-delay: .95s;
}
.ct_animate span:nth-of-type(21) {
	animation-delay: 1s;
}
.ct_animate span:nth-of-type(22) {
	animation-delay: 1.05s;
}
.ct_animate span:nth-of-type(23) {
	animation-delay: 1.1s;
}
.ct_animate span:nth-of-type(24) {
	animation-delay: 1.15s;
}
.ct_animate span:nth-of-type(25) {
	animation-delay: 1.2s;
}
.ct_animate span:nth-of-type(26) {
	animation-delay: 1.25s;
}
.ct_animate span:nth-of-type(27) {
	animation-delay: 1.3s;
}
.ct_animate span:nth-of-type(28) {
	animation-delay: 1.35s;
}

.ct_animate span:nth-of-type(29) {
	animation-delay: 1.4s;
}
.ct_animate span:nth-of-type(30) {
	animation-delay: 1.45s;
}
.ct_animate span:nth-of-type(31) {
	animation-delay: 1.5s;
}
.ct_animate span:nth-of-type(32) {
	animation-delay: 1.55s;
}
.ct_animate span:nth-of-type(33) {
	animation-delay: 1.6s;
}
.ct_animate span:nth-of-type(34) {
	animation-delay: 1.65s;
}
.ct_animate span:nth-of-type(35) {
	animation-delay: 1.7s;
}
.ct_animate span:nth-of-type(36) {
	animation-delay: 1.75s;
}
/* .ct_animate span:nth-of-type(23) {
	animation-delay: .11s;
} */
/* .ct_animate span:nth-of-type(24) {
	animation-delay: 1.15s;
}

.ct_animate span:nth-of-type(25) {
	animation-delay: .12s;
}
.ct_animate span:nth-of-type(26) {
	animation-delay: 1.25s;
}


.ct_animate span:nth-of-type(27) {
	animation-delay: .13s;
}
.ct_animate span:nth-of-type(28) {
	animation-delay: 1.35s;
} */




.ct_animate {
	font-size: 50px;
  margin-bottom: 30px;


}

.ct_animate span {
	display: inline-block;
}

@keyframes revolveDrop {
	30% {
		transform: translate(0, -50px) rotate(180deg) scale(1);
	}

	60% {
		transform: translate(0, 20px) scale(.8) rotate(0deg);
	}

	100% {
		transform: translate(0) scale(1) rotate(0deg);
		opacity: 1;
	}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f3f8fa;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .container {

  /* box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px; */
  /* background: #f2f2f2; */
  border-radius: 10px;
  padding-block: 15px;
}

.why-us .icon-box+.icon-box {
  margin-top: 50px;
}

.why-us .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f3f8fa;
  border-radius: 6px;
  transition: 0.5s;
}

.why-us .icon-box .icon i {
  color: #68A4C4;
  font-size: 32px;
}

.why-us .icon-box:hover .icon {
  background: #68A4C4;
}

.why-us .icon-box:hover .icon i {
  color: #fff;
}

.why-us .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.why-us .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.why-us .icon-box .title a:hover {
  color: #68A4C4;
}

.why-us .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.why-us .video-box {
  position: relative;
  
 
}
.video-box{
  overflow: hidden;
  border-radius: 10px;
}
.why-us .video-box img {
  width: 100%;
  height: 100%;
  clip-path: circle();
  position: relative;
}
.video-box iframe {
    border-radius: 10px;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#bd944c 50%, rgba(155 ,114, 50, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(155, 114 ,50, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #bd944c;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.ct_head_h5 {
  font-size: 16px;
}
.ct_head_h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  font-family: 'Inter', sans-serif;
}
.ct_head_h5 {
  font-size: 16px;
  color: #bd944c;
  font-weight: 500;
  letter-spacing: 1.2px;
}
.ct_about_text p {
  line-height: 1.6;
}

.ct_custom_btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #bd944c;
  border-radius: 30px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #bd944c;
  z-index: 1;
  margin-top: 24px;
  width: fit-content;
}
.ct_custom_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.ct_custom_btn:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.ct_custom_btn:hover:before {
  top: -35%;
  background-color: #3c434e;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.ct_custom_btn:hover:after {
  top: -45%;
  background-color: #3c434e;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .row+.row {
  margin-top: 100px;
}

.features h3 {
  font-weight: 400;
  font-size: 24px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features ul li {
  padding-bottom: 10px;
}

.features ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.features p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
  font-size: 48px;
  display: block;
  color: #68A4C4;
}

.facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills {
  padding: 60px 0;
}

.skills .progress {
  height: 35px;
  margin-bottom: 10px;
}

.skills .progress .skill {
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

.skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: 0.9s;
}

/*--------------------------------------------------------------
# Tetstimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fbfcfd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #68A4C4;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #68A4C4;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  padding-bottom: 10px;
}

.service-details .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.service-details .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.service-details .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.service-details .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.service-details .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.service-details .card-title a {
  color: #1e4356;
  transition: 0.3s;
}

.service-details .card-text {
  color: #5e5e5e;
}

.service-details .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.service-details .read-more a:hover {
  color: #68A4C4;
}

.service-details .card:hover img {
  transform: scale(1.1);
}

.service-details .card:hover .card-body {
  border-color: #68A4C4;
}

.service-details .card:hover .card-body .card-title a {
  color: #68A4C4;
}
.ct_client_logo img {
    width: 150px !important;
    height: 150px;
    object-fit: contain;
    margin: auto;
    transition: 0.4s ease all;
}

.ct_client_logo img:hover{
    transform:scale(1.2);
}
.ct_client_logo .owl-nav {
    display: none;
}
section.ct_call_back_bnr {
    background-image: url(../img/banner_bg1.png);
    background-position: center;
    background-size: cover;
    margin-top: 60px;
    position: relative;
     z-index:1;
}
section.ct_call_back_bnr:before {
    content:"";
    position:absolute;
    top:0px;
    left:0px;
    background:#bd944c;
    width:100%;
    height:100%;
    opacity: 0.8;
    z-index: -1;
   
}
.ct_call_back_bnr input.input-field::placeholder{
    color:#fff;
}
.ct_call_back_bnr input.input-field {
  color: #fff;
}
.ct_call_back_bnr .input-highlight {
   
    background-color: #fff;
    
}

.ct_call_back_bnr .input-field:focus + .input-label {
    top: -20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.cr_disclaimer_cnt p {
  text-align: center;
}


.ct_dont_have_acc_link {
  text-align: center;
  margin-top: 25px;
  display: block;
}
.ct_dont_have_acc_link a{
  color: #bd944c;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #68A4C4;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #68A4C4;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #1e4356;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #68A4C4;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #68A4C4;
}

.pricing .featured .get-started-btn:hover {
  background: #85b6cf;
}

.ct_career_content h4 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .ct_four span ,.waviy span{
    font-size: 35px;
}
.ct_animate {
  font-size: 35px;
  margin-bottom: 30px;
}
.waviy {
 
  font-size: 35px;
  
}
}

@media screen and (max-width:575px) {
  .ct_four span, .waviy span {
    font-size: 28px;
}
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding-bottom: 60px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 12px 5px 12px;
  display: inline-block;
  padding: 0 4px 6px 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #444;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid #fff;
  font-family: "Roboto", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  border-color: #68A4C4;
  color: #68A4C4;
}

.portfolio .portfolio-item {
  width: 100%;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all 0.3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item .portfolio-info a i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info a i:hover {
  color: white;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.6;
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #3c434e;
  padding: 80px 0 30px 0;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.ct_ftr_logo img {
    max-width: 180px;
}
footer#footer:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(../../assets/img/footer_bg.png);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.footer-newsletter {
  padding: 50px 0;
  background: rgba(155, 114, 50, 0.15);
}

 .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #333;
}

 .footer-newsletter form {
 
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

 .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
  outline: none;
}
 .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #bd944c;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

.footer-newsletter form input[type=submit]:hover {
  background: #e9dea4;
}

/* #footer .footer-top {
  background: #3c434e;
  border-top: 1px solid #3c434e;
  border-bottom: 1px solid #3c434e;
  padding: 60px 0 30px 0;
} */

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #fff;
  font-weight: 600;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
    /*text-align: justify;*/
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #bd944c;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #e9dea4;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #feeb9b;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #feeb9b;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}
/* 
#footer .copyright {
  text-align: center;
  padding-top: 30px;
} */

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #a2cce3;
}
.ct_bottom_menu{
  margin-bottom: 0px;
  list-style: none;
  padding-left: 0px;
}

/* service css S0 */

.ct_service_box {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  /* border: 5px solid rgba(0, 0, 0, 0.07); */
  margin-bottom: 30px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ct_service_box:hover{
  transform: translateY(-10px);
}
.ct_service_box:before {
  content: "";
  position: absolute;
  border-radius: 15px;
  background-color: rgb(189 148 76 / 70%);
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 5px;
  transition: 0.4s ease all;
  z-index: -1;
}

.ct_service_box:hover:before {
  height: 100%;
 
}
/* .ct_service_box:hover {
  background: rgb(155 114 50 / 77%);
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease 0s;
} */
.ct_service_box:hover .ct_service_box, .ct_service_box:hover span.icon{
  background:#fff;
  border-radius:10px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}
.ct_service_box:hover h6, .ct_service_box:hover p{
  color:#fff;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}
.ct_service_box .icon {
  margin-bottom: 25px;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.ct_service_box .icon img{
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: 0.4s ease all;
}
.ct_service_box:hover .icon img{
  transform: rotate(360deg);
}
.ct_service_box .feature_box_col_one{
  background:rgba(247, 198, 5, 0.20);
  color:#f91942
}
.ct_service_box .feature_box_col_two {
  background: rgb(189 148 76);
  color: #bd944c;
  margin-top: -75px;
  position: relative;
}
.ct_service_box .feature_box_col_three{
  background:rgba(0, 147, 38, 0.15);
  color:#bd944c
}
.ct_service_box .feature_box_col_four{
  background:rgba(0, 108, 255, 0.15);
  color:#bd944c
}
.ct_service_box .feature_box_col_five{
  background:rgba(146, 39, 255, 0.15);
  color:#bd944c
}
.ct_service_box .feature_box_col_six{
  background:rgba(23, 39, 246, 0.15);
  color:#bd944c
}
.ct_service_box p{
  font-size:15px;
  line-height:26px;
}
.ct_service_box h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
  font-size: 24px;
  font-weight: 500;
}
h1.ct_head_h1 {
  position: relative;
  font-weight: 600;
  color: #bd944c;

}
h1.ct_head_h1:before {
  margin: 0 15px 10px 0;
}
h1.ct_head_h1:after {
  margin: 0 0 10px 15px;
}

h1.ct_head_h1:before, h1.ct_head_h1:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #bd944c;
  display: inline-block;
  
}

section.ct_service_bg {
  background-color: #f2f2f2;
}

.ct_feature_box {
  /* background-color: #fff; */
  transition: 0.4s ease all;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ct_feature_box .feature-num {
  text-align: center;
  margin-bottom: 25px;
}

.ct_feature_box span {
  width: 60px;
  height: 60px;
  margin-inline: auto;
  background-color: rgba(155, 114, 50, 0.20);
  border-radius: 10px;
  color: #bd944c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ct_feature_box span:before{
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  width:0%;
  height: 0%;
  background-color: #bd944c;
  transition: 0.4s ease all;
  margin: auto;
  display: block;
  z-index: -1;
  border-radius: 10px;
}
.feature-num:before.active{
  background-color: #bd944c;
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  z-index: -1;
}
.feature-num span.active{
  color: #fff;
}
.ct_feature_box span.active:before{
color: #fff;
  width: 100%;
  height: 100%;
}
.ct_feature_box:hover span{
  color: #fff;
} 
.ct_feature_box:hover span:before{
  width:100%;
  height: 100%;
}
.ct_feature_bg{
  background-color: #f2f2f2;
}

.ct_why_choose_img{
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s ease all;
}
.ct_why_choose_img:hover{
transform: scale(1.1);
}


/* .ct_testimonial_slider {
  background: linear-gradient(112deg, #ffffff 50%, antiquewhite 50%);
padding: 80px 0px;
  margin: auto
} */


.ct_testimonial_content img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 10px;
  object-fit: cover;
  margin-inline: auto;
 
}

.ct_testimonial_content {
  box-sizing: content-box;
  padding: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
  /* margin: 30px 15px; */
  position: relative;
  background: #f2f2f2;
  border-radius: 10px;
  text-align: center;
}

.ct_testimonial_content h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #333;
  
}
.ct_testimonial_content h5 {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

ul.ct_rating {
  list-style: none;
  display: inline-flex;
  gap: 6px;
}
ul.ct_rating i{
  color: #d49539;
}

ul.ct_rating {
  list-style: none;
  display: inline-flex;
  gap: 6px;
  margin-top: 15px;
}

.ct_testimonial_content p{
  margin-bottom: 0px;
}

.ct_testimonial_slider .owl-nav.disabled {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct_testimonial_slider .owl-nav.disabled button.owl-prev,.ct_testimonial_slider .owl-nav button.owl-prev {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ct_testimonial_slider .owl-nav.disabled button.owl-next,.ct_testimonial_slider .owl-nav button.owl-next {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ct_testimonial_slider .owl-nav.disabled button,.ct_testimonial_slider .owl-nav button  {
  width: 40px;
  height: 40px;
  background: #bd944c !important;
  color: #fff !important;
  border-radius: 5px;
}


/* .count-area {
  position: relative;
  background:#009aaa;
  padding: 100px 0;
  text-align: center;
  color: #fff;
} */
.count-area-content {
  margin-top: 30px;
}
.count-area i {
  font-size: 48px;
}
.count-digit {
  margin: 0px 0px 15px;
  /* color: #fff; */
  font-weight: 700;
  font-size: 50px;
}
.count-title {
  font-size: 16px;
}
.count-area-content {
  border: 1px solid #bd944c;
  padding: 30px;
}
.count-area-content {
  border-radius: 10px;
  border: 2px solid #bd944c;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.count-area-content:before{
  content: "";
  position: absolute;
  background-color: #bd944c;
  width: 100%;
  height: 0%;
  transition: 0.4s ease-in all;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: -1;
}
.count-area-content:hover:before{
  width: 100%;
  height: 100%;
}
.count-area-content:hover .count-digit,.count-area-content:hover .count-title{
  color: #fff;
}
.count-area-content img {
  height: 70px;
  object-fit: contain;
}


.ct_inner_banner {
  background-image: url(../../assets/img/inner_bg.jpg);
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  height: 500px;
  background-position: center;
  position: relative;
  z-index: 1;
  margin-top: 158px;
}

.ct_inner_banner:before {
 content: "";
 position: absolute;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 background-color: #000;
 opacity: 0.5;
 z-index: -1;
}
.ct_inner_banner_cnt{
  display: flex;
}

.ct_inner_banner_cnt {
  display: flex;
  align-items: center;
  height: 500px;
  flex-direction: column;
  justify-content: center;
  /* padding-top: 100px; */
}
.ct_inner_banner_cnt .ct_head_h1{
  position: unset;
  color: #fff;
}
.ct_inner_banner_cnt h1.ct_head_h1:before,.ct_inner_banner_cnt h1.ct_head_h1:after{
  display: none;
}

ul.ct_bradcrumb {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
}
.ct_bradcrumb li {
  color: #fff;
}


/* pricing table css S */


.pricingTable {
  text-align: center;
  background: #fff;

  box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
  padding-bottom: 40px;
  border-radius: 10px;
  color: #cad0de;
  transform: scale(1);
  transition: all .5s ease-in;
}
.pricingTable:hover{
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  z-index: 1
}



.pricingTable .pricingTable-header {
  padding: 40px 0;
  background: #f5f6f9;
  border-radius: 10px 10px 50% 50%;
  transition: all .5s  ease-in ;
  margin-bottom: 30px;

}

.pricingTable:hover .pricingTable-header {
  background-image: linear-gradient(0deg, #feeb9b, #bd944c);
}

.pricingTable .pricingTable-header i {
  font-size: 50px;
  color: #858c9a;
  margin-bottom: 10px;
  transition: all .5s ease 0s
}

.pricingTable .price-value {
  font-size: 35px;
  color: #bd944c;
  transition: all .5s ease 0s
}

.pricingTable .month {
  display: block;
  font-size: 14px;
  color: #cad0de
}

.pricingTable:hover .month,
.pricingTable:hover .price-value,
.pricingTable:hover .pricingTable-header i {
  color: #fff
}

.pricingTable .heading {
  font-size: 24px;
  color: #bd944c;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.pricingTable .pricing-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px
}

.pricingTable .pricing-content ul li {
  line-height: 30px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
}

.pricingTable .pricingTable-signup a {
  display: inline-block;
  font-size: 15px;
  color: #fff;
  padding: 10px 35px;
  border-radius: 20px;
  background: #ffa442;
  text-transform: uppercase;
  transition: all .3s ease 0s
}

.pricingTable .pricingTable-signup a:hover {
  box-shadow: 0 0 10px #ffa442
}

.pricingTable.blue .heading,
.pricingTable.blue .price-value {
  color: #4b64ff
}

.pricingTable.blue .pricingTable-signup a,
.pricingTable.blue:hover .pricingTable-header {
  background: #4b64ff
}

.pricingTable.blue .pricingTable-signup a:hover {
  box-shadow: 0 0 10px #4b64ff
}

.pricingTable.red .heading,
.pricingTable.red .price-value {
  color: #ff4b4b
}

.pricingTable.red .pricingTable-signup a,
.pricingTable.red:hover .pricingTable-header {
  background: #ff4b4b
}

.pricingTable.red .pricingTable-signup a:hover {
  box-shadow: 0 0 10px #ff4b4b
}

.pricingTable.green .heading,
.pricingTable.green .price-value {
  color: #40c952
}

.pricingTable.green .pricingTable-signup a,
.pricingTable.green:hover .pricingTable-header {
  background: #40c952
}

.pricingTable.green .pricingTable-signup a:hover {
  box-shadow: 0 0 10px #40c952
}

.pricingTable.blue:hover .price-value,
.pricingTable.green:hover .price-value,
.pricingTable.red:hover .price-value {
  color: #fff
}

.ct_pricing_div:hover {
    background-color: #3c434e;
}
.ct_pricing_div:hover ul.ct_pricing-lists {
    color: #fff;
}

.ct_price_box p.period {
    color: #feeb9b;
    font-weight: 700;
    text-align: center;
}





.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  height: 100%;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
  background: #bd944c;
  padding: 30px 10px;
  height: 100%;
  border-radius: 10px;
  transition: 0.4s ease-in all;
}
.contact-info-item:hover{
  transform: translateY(-16px);
}
.contact-page-sec .contact-page-form h2 {
  color: #333;
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}  
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #fff;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #fff;
  font-size: 16px;
  
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  /* background: #f9f9f9 none repeat scroll 0 0; */
  /* border: 1px solid #f9f9f9; */
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  /* border-radius: 4px; */
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}


/* Input container */
.input-container {
  position: relative;
  margin: 20px;
}

/* Input field */
.input-field {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #eee;
  outline: none;
  background-color: transparent;
}

/* Input label */
.input-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: rgba(204, 204, 204, 0);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Input highlight */
.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #bd944c;
  transition: all 0.3s ease;
}

/* Input field:focus styles */
.input-field:focus + .input-label {
  top: -20px;
  font-size: 16px;
  color: #bd944c;
  font-weight: 500;
}

.input-field:focus + .input-label + .input-highlight {
  width: 100%;
}

.ct_pricing_div > img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
  margin-bottom: 30px;

}
.ct_pricing_div h4 {
  font-size: 24px;
  font-weight: 700;
}
.ct_pricing_div p {
  font-size: 16px;
  margin-top: 10px;
}
.ct_pricing_div {
  padding: 35px 25px 35px 25px;
  background-color: #f2f2f2;
  border-radius: 10px;
  position: relative;
  transition: 0.4s ease-in;
  height: 100%;
}
.ct_pricing_div:hover{
  transform: translateY(-10px);
}
.ct_price_box span {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
.ct_price_box {
    background-color: #3c434e;
    padding: 10px;
    text-align: center;
}
.ct_price_link p {
  text-align: center;
  color: #bd944c;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 0px;
}
.ct_price_box sub.period {
  font-size: 16px;
  color: #feeb9b;
  position: relative;
  top: -19px;
}
.ct_price_box sup.currency {
  font-size: 20px;
  top: -19px;
}
ul.ct_pricing-lists {
    list-style: none;
    padding: 0px;
    margin-top: 30px;
    text-align: center;
}

ul.ct_pricing-lists li{
  margin-bottom: 10px;
}
ul.ct_pricing-lists li {
  margin-bottom: 15px;
  font-weight: 500;
}
ul.ct_pricing-lists li i{
  margin-right: 5px;
}
/*.ct_pricing_div.ct_black_price_box {*/
/*  background-color: #3c434e;*/
/*  color: #fff;*/
/*}*/
/*.ct_pricing_div.ct_black_price_box img {*/
/*  filter: unset;*/
/*}*/
span.ct_plus_bg {
    font-size: 50px;
    font-weight: 700;
}
.count-area-content:hover span.ct_plus_bg {
    color: #fff;
}
h3.blink-b {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  animation: blink 4s ease infinite;
  color: #bd944c;
}

.ct_support_box {
    background-color: #bd944c;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
    transition: 0.4s ease all;
}
.ct_support_box img{
    transition: 0.4s ease all;
} 
.ct_support_box:hover img {
    transform: translateY(-10px);
}
.ct_support_box h4{
    color:fff;
    margin-top:15px;
}
.ct_support_box p {
    margin-bottom: 0px;
}
@keyframes blink{
  0%,50%,100%{
    transform: scale(1.1);
    
  }
  25%,75%{
    transform: scale(1);
  
  }
}

.ct_team_img img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin: auto;
  display: block;
}
.ct_team_box {
  padding: 30px;
  background-color: #f2f2f2;
  border-radius: 10px;
  position: relative;
  transition: 0.4s ease-in all;
  overflow: hidden;
  z-index: 1;
}

.ct_team_box:before {
  background-color: #bd944c;
  content: "";
  height: auto;
  margin: auto;
  opacity: 0;
  padding-top: 200%;
  pointer-events: none;
  position: absolute;
  left: 100%;
  top: -20%;
  visibility: hidden;
  width: 200%;
  transition: 0.4s ease-in all;
  z-index: -1;
  border-radius: 50%;
  
}
.ct_team_box:hover:before {
  opacity: 1;
  left: -50%;
  visibility: visible;
}
.ct_team_detail {
  padding: 30px 10px;
  text-align: center;
}
.ct_team_detail h4 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
ul.dt-sc-team-social li {
  display: inline-block;
  margin: 0px 5px;
  padding: 0px;
}
.dt-sc-team-social  {
  padding: 0px;
  margin-top: 15px;
  margin-bottom: 0px;
}
.dt-sc-team-social li a {
  color: #333;
  font-size: 20px;
}

.ct_team_box:hover .ct_team_detail {
  color: #fff;
}
.ct_team_box:hover .ct_team_detail li a {
  color: #fff;
}
.ct_team_box .ct_team_detail li a:hover {
  color: #feeb9b;
}

.ct_team_box .ct_team_img img {
  transition: 0.4s ease all;
}

.ct_team_box:hover .ct_team_img img {
  transform: scale(1.1);
}

a.ct_login_btn {
  background-color: #bd944c;
  color: #fff;
  margin-left: 30px;
  border-radius: 100px;
  padding: 8px 30px !important;
  position: relative;
  transition: 0.4s ease all;
  font-weight: 700;
  width: fit-content;
  display: block;
}
.navbar a.ct_login_btn:focus {
  font-weight: 700 !important;
}
.ct_eye {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Disclamer page css S */
.ct_select_input{
  height: 48px;
  border-bottom: 1px solid #ccc;
}

.ct_select_input {
  height: 48px;
  border: 0px;
  border-bottom: 1px solid #ccc;
  border-radius: 0px;
  appearance: auto;
}
.ct_select_input:focus{
  box-shadow: none;
}
.ct_grey_bg {
  padding: 60px 40px;
  box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
  /* background-image: url(../../assets/img/stock_bg.jpg); */
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.ct_padd_10 {
  padding-inline: 10px;
  margin-inline: 20px;
}

.ct_small_input_box {
  border: 2px dashed#bd944c;
  padding: 30px;
  border-radius: 10px;
}
.ct_small_input_box h4 {
  text-align: center;
  background-color: #966e30;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  border-radius: 10px;
  margin-top: -55px;
  margin-bottom: 30px;
}
.ct_small_input_box label {
  margin-bottom: 6px;
  font-weight: 600;
}

.ct_accordion_div button.accordion-button{
  background-color: #f0eae0 !important;
  color: #bd944c !important;
  box-shadow: none !important;
}
.ct_accordion_div button.accordion-button.collapsed{
  background-color: unset !important;
  color: #444 !important;
}
.ct_accordion_div .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
  filter: hue-rotate(190deg);
}
ul.ct_list_item {
  list-style: none;
  padding-left: 20px;
}

.ct_list_item > li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #bd944c;
  left: -15px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ct_list_item  li {
  margin-bottom: 10px;
}
.ct_list_item > li {
  margin-bottom: 10px;
  position: relative;
}
.ct_service_dtl_img img {
  width: 100%;
  border-radius: 10px;
}


/* login page css S */
.ct_login_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.ct_login_input {
  position: relative;
  margin-bottom: 15px;
}
/*.ct_login_input input{*/
/*  text-indent: 15px;*/
/*}*/
.ct_login_input input:focus{
  box-shadow: none;
  border-color: #bd944c;
}
.ct_login_box label {
  margin-bottom: 5px;
  font-weight: 600;
}
.ct_login_input > i {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 15px;
  color: #bd944c;
  font-size: 16px;
}
.ct_login_box {
  max-width: 500px;
  margin-inline: auto;
  background-color: #fff;
  box-shadow: 0px 0px 25px rgba(0,0,0,0.09);
  padding: 30px;
  width: 100%;
  border-radius: 10px;
}
.ct_trade_logo img {
  max-width: 250px;
  margin: auto;
  display: block;
  margin-bottom: 10px;
}
.ct_login_box h4 {
  font-weight: 600;
  margin-bottom: 30px;
}

.ct_session_time_inner .ct_timer-wrapper {
  font-weight: 600;
}

.ct_start_list_top li::before {
  top: 13px;
}
.ct_forgot_link {
  text-align: right;
}
.ct_forgot_link  a{
  color: #bd944c;
}
.ct_login_input .form-control {
    appearance: auto;
}
.ct_login_input .form-control:focus{
    box-shadow:none;
    border-color:#bd944c;
}
/* Service Detail Css S */

.ct_block-quote_bg {
  background-color: rgb(225 212 193 / 31%);
  padding: 30px;
  border-top: 4px solid #bd944c;
  margin-bottom: 30px;
}
.ct_hr_line{
  margin-block: 0px;
  border-color: rgb(170 170 170 / 96%);
  margin-bottom: 15px;
}
.ct_block-quote_bg p {
  margin-bottom: 0px;
}

.ct_paragraph_cnt p {
  line-height: 28px;
}
.ct_side_bar_blog {
  background-color: rgb(225 212 193 / 31%);
  padding: 30px;
}
.ct_features_list{
  margin-bottom: 0px;
}

.other-dervices {
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 15px;
  gap: 15px;
}
.ct_features_list li:last-child .other-dervices{
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.ct_features_list {
  list-style: none;
  padding-left: 0px;
}
.black_color_class h6 {
  margin-bottom: 5px;
  
}
.ct_side_bar_blog h4.mb-4 {
  border-bottom: 2px solid #bd944c;
  padding-bottom: 5px;
  width: fit-content;
}
.ct_social_icon a{
  font-size: 18px;
  display: inline-block;
  background: #bd944c;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.other-dervices:hover{
  color: #bd944c;
}
.ct_pricing_div > img{
  margin-inline: auto;
  display: block;
}

.ct_agree_cnt input[type="checkbox"] {
    accent-color: #966e30;
}

.header-scrolled nav#navbar li .active {
  color: #bd944c;
}
#header.header-scrolled .navbar a {
  color: #fff;
}

@media screen and (max-width:1024px) {
  a.ct_login_btn{
    margin-left: 15px;
  }
  .navbar a, .navbar a:focus {
   
    padding: 10px 0 10px 0px;
    font-size: 14px;
    margin-left: 20px;
}
#hero h2 {
  margin-bottom: 15px;
  font-size: 38px;
  font-weight: 700;
}
}
@media screen and (max-width:991px) {
  .ct_why_choose_img {
    height: 400px;
    object-fit: cover;
}
.count-digit{
  font-size: 35px;
}
.count-title {
  font-size: 15px;
}
.footer-newsletter form{
  margin-top: 15px;
}
a.ct_login_btn {
  margin-left: 20px;
  margin-bottom: 20px;
}
.ct_login{
  margin-top: 30px;
}
.ct_service_box{
  margin-bottom: 60px;
  height: auto;
}
}
@media screen and (max-width:767px) {
  .copyright{
    margin-bottom: 15px;
  }
  .ct_inner_banner_cnt,.ct_inner_banner {
    height: 400px;
   
}
.ct_grey_bg {
    padding: 40px 0px;
}
.ct_small_input_box {
    margin-bottom: 50px;
}
.cr_disclaimer_cnt p,.footer-newsletter p , p {
    font-size: 15px;
}

}
@media screen and (max-width:575px) {
  .ct_testimonial_slider .owl-nav{
    display: none ;
  }
  h1.ct_head_h1:before, h1.ct_head_h1:after{
    display: none;
  }
  .ct_feature_box{
    display: block;
  }
  .ct_feature_box span{
    margin: 0px;
  }
  #hero p {
   
    font-size: 14px;
}
.ct_head_h2 {
  font-size: 32px;
 
}
#header .logo {
  margin-left: -28px;
}
.ct_price_box span {
  font-size: 32px;
  
}


.ct_side_fixed_button {

    top: 60%;
    left: 18px;
   
}
.ct_side_fixed_button button {
    padding: 6px 20px;
    
}
.ct_animate {
    font-size: 35px;
    margin-bottom: 15px;
}
}

@media screen and (max-width:480px){
  #hero h2 {
  
    margin-top: 100px;
  }
}
.ct_footer_img1 img {
    width: 130px;
    object-fit: contain;
}