@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --black: #000;
  --white: #FFF;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

html,
body {
  height: 100%;
  /*padding: 0 !important;*/
}

.page-wrap {
  min-height: 100%;
  margin-bottom: 0px;
}

.page-wrap:after {
  content: "";
  display: block;
}

footer,
.page-wrap:after {}

/*--------------General CSS---------*/
img {
  border: 0 none;
  max-width: 100%;
  vertical-align: top;
}

a {
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  /*color: #3e3e3e;*/
}

a:hover,
a:focus {
  /*color: #fe5e3a;*/
  text-decoration: none;
  outline: none;
}

button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

p {
  line-height: 27px;
}

p:last-child {
  margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0px 0px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #797979;
  font-weight: normal;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
  background-color: #000;
}


/* ======================menu css nad Go to top start  ====================== */

.topnav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: all .7s;
  transition: all .7s;
  background: transparent;
  box-shadow: 0 0px 20px 2px rgb(0 0 0 / 10%);
}

.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: 'Top';
  text-align: center;
  line-height: 44px;
  font-size: 11px;
  font-weight: normal;
  /*color: #7da966;*/
  color: #000;
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
  font-weight: bold;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #7da966;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
  fill: #FFF;

}

/* ======================menu css nad Go to top end  ====================== */


/*-----------------------TOGGLE STICKY HOME CSS START-----------------------------------------------*/

.navbar-light .navbar-toggler {
  border: none;
  outline: none;
}

.nav-toggle-sm {
  transform: scale(.65);
  margin-right: -.3125rem;
}

.nav-toggle {
  width: 29px;
  height: 29px;
  display: inline-flex;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
}

.stick {
  width: 35px;
  height: 3px;
  margin-bottom: 5px;
  background-color: #7da966;
  display: inline-block;
}

.body-menu-opened .collapsed .stick {
  background-color: #7da966;
}

.body-menu-opened .stick-1 {
  animation: stick-1-open .85s ease-out forwards;
}

.body-menu-opened .stick-2 {
  animation: stick-2-open .85s linear forwards;
  width: 35px;
  margin-left: 0px;
}

.body-menu-opened .stick-3 {
  animation: stick-3-open .85s linear forwards;
}

.stick:last-child {
  margin-bottom: 0px;
}

@-webkit-keyframes stick-1-open {
  0% {
    width: 35px;
  }

  30% {
    width: 3px;
    transform: translate(14px, 0px);
  }

  65% {
    width: 3px;
    transform: translate(14px, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  100% {
    width: 2px;
    transform: translate(9px, 17px);
  }
}

@keyframes stick-1-open {
  0% {
    width: 35px;
  }

  30% {
    width: 3px;
    transform: translate(14px, 0px);
  }

  65% {
    width: 3px;
    transform: translate(14px, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  100% {
    width: 2px;
    transform: translate(9px, 17px);
  }
}

@-webkit-keyframes stick-2-open {
  65% {
    width: 35px;
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }
}

@keyframes stick-2-open {
  65% {
    width: 35px;
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }
}

@-webkit-keyframes stick-3-open {
  65% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    transform: translate(0px, -8px) rotate(-45deg);
  }
}

@keyframes stick-3-open {
  65% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    transform: translate(0px, -8px) rotate(-45deg);
  }
}

.body-menu-close .stick-1 {
  width: 3px;
  animation: stick-1-close .85s ease-out forwards;
}

.body-menu-close .stick-2 {
  animation: stick-2-close .85s ease-out forwards;
  margin-left: 0px;
}

.body-menu-close .stick-3 {
  animation: stick-3-close .85s ease-out forwards;
}

@-webkit-keyframes stick-1-close {

  0%,
  70% {
    width: 0px;
    transform: translate(0, 0);
  }

  100% {
    width: 35px;
    transform: translate(0, 0);
  }
}

@keyframes stick-1-close {

  0%,
  70% {
    width: 0px;
    transform: translate(0, 0);
  }

  100% {
    width: 35px;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes stick-2-close {
  0% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }

  20% {
    width: 3px;
    transform: translate(0, 0px) rotate(45deg);
  }

  40% {
    width: 0px;
  }

  65% {
    transform: translate(0, -26px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  80% {
    width: 0px;
  }

  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@keyframes stick-2-close {
  0% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }

  20% {
    width: 3px;
    transform: translate(0, 0px) rotate(45deg);
  }

  40% {
    width: 0px;
  }

  65% {
    transform: translate(0, -26px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  80% {
    width: 0px;
  }

  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@-webkit-keyframes stick-3-close {
  0% {
    width: 35px;
    transform: translate(0px, -8px) rotate(-45deg);
  }

  20% {
    width: 3px;
    transform: translate(0, -8px) rotate(-45deg);
  }

  40% {}

  65% {
    transform: translate(0, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  90% {
    width: 3px;
  }

  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@keyframes stick-3-close {
  0% {
    width: 35px;
    transform: translate(0px, -8px) rotate(-45deg);
  }

  20% {
    width: 3px;
    transform: translate(0, -8px) rotate(-45deg);
  }

  40% {}

  65% {
    transform: translate(0, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  90% {
    width: 3px;
  }

  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

/*-----------------------TOGGLE STICKY HOME CSS end-----------------------------------------------*/


/*-----------------------main styles starts here-----------------------------------------------*/
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

label {
  color: #001c27;
  font-weight: 400;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0px;
}

.text_red {
  color: #dd4b39;
}

textarea.form-control {
  resize: none;
}

.form-group {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.form-control {
  height: 47px;
  box-shadow: none;
  border: 1px solid #dadada;
  border-radius: 0;
  font-size: 13px;
  color: #747c84;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ffc107;
}

/* .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} */


/*=====================================	PLACE HOLDER CSSS START HERE 		====================================*/
input.form-control::-webkit-input-placeholder {
  color: #FFF;
}

input.form-control::-moz-placeholder {
  color: #FFF;
}

input.form-control::-ms-placeholder {
  color: #FFF;
}

input.textbox::-ms-input-placeholder {
  color: #FFF;
}

input.textbox::-ms-input-placeholder {
  color: #FFF;
}

textarea.form-control::placeholder {
  color: #FFF;
}

textarea.form-control {
  min-height: auto;
  height: auto;
}

.cf:before,
.cf:after {
  content: "";
  display: table
}

.cf:after {
  clear: both;
}

.container {
  width: 100%;
  max-width: 1170px;
}

/*===================================== PLACE HOLDER CSSS END HERE 		====================================*/
/*===================================== Commen Butons ===================================*/


/*------ Button css over ----------------*/

/*======================================================================*/

/*			CUSTOM CHECK BOX AND CUSTOM RADIO CSS START		*/
.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
  left: -9999px;
  position: absolute;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:before,
.custom-checkbox [type="checkbox"]:checked+label:before {
  border: 1px solid #fe5e3a;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:after,
.custom-checkbox [type="checkbox"]:checked+label:after {
  color: #fff;
  content: "\f00c";
  font-size: 14px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 0px;
  left: 0px;
  line-height: 1.45;
  padding: 1px 2px 2px 3px;
  transition: all 0.2s ease 0s;
  background-color: #fe5e3a;
  width: 20px;
  height: 20px;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label,
.custom-checkbox [type="checkbox"]:checked+label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  font-weight: 400;
  text-transform: capitalize;
}

/*	CUSTOM check CSS START	*/
/*	CUSTOM RADIO CSS START	*/
.radio-btn-small {
  display: inline-block;
  margin-right: 15px;
  padding: 0;
  position: relative;
  padding-left: 30px;
  margin-top: 3px;
}

.radio-btn-small:last-child {
  margin-right: 0;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]+label {
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
}

input[type="radio"]+label span {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 2px 8px 0 0;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0px;
  border: 1px solid #fe5e3a;
  background-color: #fff;
  border-radius: 100px;
}

input[type="radio"]:checked+label span:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background-color: #fe5e3a;
  top: 3px;
  left: 3px;
  border-radius: 100px;
}

input[type="radio"]:checked+label span {
  background-color: #fff;
}

input[type="radio"]:checked+label {
  color: #282828;
}


/*========================================================================
					bootstrap select box over
==========================================================================*/
.bootstrap-select.open>.dropdown-toggle.btn-default:hover,
.bootstrap-select.open>.dropdown-toggle.btn-default:focus {
  background-color: #fff;
}

.bootstrap-select>.dropdown-toggle {
  border: 1px solid #ababab;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option,
.bootstrap-select.btn-group .dropdown-toggle .fas {
  color: #555;
}

/*========================================================================
					bootstrap select box over
==========================================================================*/

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-light .navbar-nav .nav-link {
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 10px;
}

.navbar-light .navbar-nav .main_btn {
  min-width: 124px;
  line-height: 40px;
  font-size: 14px;
}

.navbar-brand {
  padding-top: 0px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #7da966;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #7da966;
}

.nav-scroll .top_menu_home .navbar-light .navbar-nav .nav-link:hover,
.nav-scroll .top_menu_home .navbar-light .navbar-nav .nav-link:focus {
  color: #7da966;
}

/*----------------*/

.top_menu {
  position: relative;
}

.nav_bar_ctm .navbar-brand {
  position: relative;
}


.in_content {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-top: 87px;
}

.banner_text {
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.banner_text h1 {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 35px;
}

.banner_text p {
  font-weight: 500;
  line-height: 27px;
  max-width: 750px;
  margin: 0px auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  font-size: 50px;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 9;
}


.main_btn {
  border: none;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: all .3s ease-in-out;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  background: #7da966;
  min-width: 160px;
  line-height: 45px;
}

.main_btn::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid #fff;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.main_btn:hover {
  color: #FFF;
}

.main_btn:hover::before {
  opacity: 1;
}

/* select2_css_start */

.select2-container {
  width: 100% !important;
  padding: 0;
}

span.select2-selection__rendered {
  white-space: nowrap;
}

.select2-container {
  width: 100% !important;
}

.select2-search--dropdown .select2-search__field {
  width: 98%;
}

.select2-dropdown .select2-results__option {
  position: relative;
}

/* ----------------------------- home_css_start ----------------------------- */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  padding: 0px 150px;
}

.header_top_btn ul {
  display: flex;
}

.home_banner {
  margin-bottom: 40px;
  background-color: var(--black);
  position: relative;
}

.banner_data h1 {
  font-size: 75px;
  color: var(--white);
  font-weight: 500;
  line-height: 73px;
}

.banner_data p {
  color: var(--white);
  font-size: 24px;
  margin: 30px 0px;
}

.banner_img {
  position: relative;
  padding-top: 180px;
}



/* ----------------------------- home_css_end ----------------------------- */


.main-btn {
  background: linear-gradient(to right, rgba(30, 29, 116, 1) 0%, rgba(50, 48, 193, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;
  border-radius: 50px;
  font-weight: 400;
  font-size: 18px;
  min-width: 130px;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.main-btn:hover,
.main-btn:focus {
  color: #fff;
  outline: none;
  background: linear-gradient(to right, rgba(50, 48, 193, 1) 0%, rgba(30, 29, 116, 1) 99%);
}

.second-btn {
  background: rgb(77, 201, 215);
  background: linear-gradient(90deg, rgba(77, 201, 215, 1) 0%, rgba(19, 88, 95, 1) 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 400;
  font-size: 18px;
  min-width: 130px;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.second-btn:hover,
.second-btn:focus {
  color: #fff;
  outline: none;
  background: rgb(19, 88, 95);
  background: linear-gradient(90deg, rgba(19, 88, 95, 1) 0%, rgba(77, 201, 215, 1) 100%);
}

.main-outer-btn {
  background-color: transparent;
  color: #5b5fd9;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 20px;
  min-width: 150px;
  margin: 5px 0;
  border: 1px solid #5b5fd9;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  /* box-shadow:2px 2px 10px rgba(0,0,0,0.1), 1px 1px 6px rgba(0,0,0,0.10); */
  cursor: pointer;
  letter-spacing: 1.5px;
}

.main-outer-btn:hover,
.main-outer-btn:focus {
  background-color: #5b5fd9;
  color: #fff;
  border: 1px solid #5b5fd9;
  outline: none;
}

.second-outer-btn {
  background-color: transparent;
  color: #7dbff8;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 20px;
  min-width: 150px;
  margin: 5px 0;
  border: 1px solid #7dbff8;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  /* box-shadow:2px 2px 10px rgba(0,0,0,0.1), 1px 1px 6px rgba(0,0,0,0.10); */
  cursor: pointer;
  letter-spacing: 1.5px;
}

.second-outer-btn:hover,
.second-outer-btn:focus {
  background-color: #7dbff8;
  color: #fff;
  border: 1px solid #7dbff8;
  outline: none;
}

.second-outer-btn i {
  margin-right: 10px;
  font-size: 13px;
}


.red-btn {
  background-color: #f20f30;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 20px;
  min-width: 150px;
  margin: 5px 0;
  border: 1px solid #f20f30;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1), 1px 1px 6px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.red-btn:hover,
.red-btn:focus {
  background-color: #f61c3b;
  color: #fff;
  border: 1px solid #f61c3b;
  outline: none;
}

.white-btn {
  background-color: #fff;
  color: #31312c;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 20px;
  min-width: 150px;
  margin: 5px 0;
  border: 1px solid #fff;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.white-btn:hover,
.white-btn:focus {
  background-color: #31312c;
  color: #fff;
  border: 1px solid #31312c;
  outline: none;
}

.outer-orange-btn {
  background-color: #fff;
  color: #31312c;
  border-radius: 6px;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 20px;
  min-width: 150px;
  margin: 5px 0;
  border: 1px solid #31312c;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1), 1px 1px 6px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.outer-orange-btn:hover,
.outer-orange-btn:focus {
  background-color: #31312c;
  color: #fff;
  border: 1px solid #31312c;
  outline: none;
}

.gray-btn {
  background-color: transparent;
  color: #252729;
  border-radius: 4px;
  font-weight: 500;
  min-width: 105px;
  border: 1px solid #c7c5c6;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

.gray-btn:hover,
.gray-btn:focus {
  background-color: transparent;
  color: #ff7d6f;
  border-color: #ff7d6f;
}

.full-width {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1400px;
}

.lg-btn {
  font-size: 20px;
  padding: 22px 30px;
}

.md-btn {
  font-size: 18px;
  padding: 18px 25px;
}

.sm-btn {
  font-size: 16px;
  padding: 15px 20px;
}


.logo {
  width: 150px;
  padding: 0;
}

.is-main-header .navbar {
  padding: 0;
}

.is-main-header {
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
}


.list-property-btn {
  display: flex;
}

.list-property-btn a {
  margin-left: 10px;
}

.header .menu>ul>li.list-property-btn a.signin-btn {
  border-radius: 50px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  padding: 15px 15px;
  display: block;
  text-align: center;
  border: 1px solid #fff;
  min-width: 130px;
}

.header .menu>ul>li.list-property-btn a.signin-btn:hover {
  background-color: #fff;
  color: #000;
}

.header .menu>ul>li.list-property-btn a.signin-btn:hover:before {
  display: none;
}

.header .menu>ul>li.list-property-btn a.signup-btn {
  border-radius: 50px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  padding: 15px 15px;
  display: block;
  text-align: center;
  color: #fff;
  min-width: 130px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e1d74+0,3230c1+100 */
  background: linear-gradient(to right, rgba(30, 29, 116, 1) 0%, rgba(50, 48, 193, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.header .menu>ul>li.list-property-btn a.signup-btn:hover {

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3230c1+0,1e1d74+99 */
  background: linear-gradient(to right, rgba(50, 48, 193, 1) 0%, rgba(30, 29, 116, 1) 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.header .menu>ul>li.list-property-btn a.signup-btn:hover:before {
  display: none;
}

.is-main-header ul li {
  margin: 0 15px;
}

.is-main-header ul>li>a {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #fff;
  /* display: block; */
  position: relative;
  /* text-transform: uppercase; */
}

.is-main-header ul>li>a:before {
  bottom: -28px;
  content: "";
  left: 50%;
  position: absolute;
  right: 50%;
  transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  transition-property: left, right;
  -webkit-transition-property: left, right;
  -moz-transition-property: left, right;
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
}

.is-main-header ul>li>a:hover:before {
  position: absolute;
  content: '';
  left: -0px;
  right: -0px;
  bottom: -15px;
  border-bottom: 2px solid #7dbff8;
}

.is-main-header ul>li>a:hover {
  color: #7dbff8;
}

.hamburger-menu {
  width: 25px;
  height: 20px;
  right: 0;
  top: 3px;
  border: none;
  outline: 0;
  box-shadow: none;
  background-color: initial;
  position: relative;
  display: inline-block;
  outline: 0 !important;
  box-shadow: none;
  border: none;
}

.hamburger-menu span {
  opacity: 1;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  color: #000;
  background-color: #7dbff8;
  position: absolute;
  transform: rotate(0deg);
  transition: .4s ease-in-out;
}


.hamburger-menu span:first-child {
  top: 0;
}

.hamburger-menu span:nth-child(2) {
  top: 9px;
}

.hamburger-menu span:nth-child(3) {
  top: 18px;
}

.hamburger-menu[aria-expanded=true] span {
  background-color: #5b5fd9;
}

.hamburger-menu[aria-expanded=true] span:first-child {
  transform: translateY(9px) rotate(135deg);
}

.hamburger-menu[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: translateX(60px);
}

.hamburger-menu[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-9px) rotate(-135deg);
}

.is-main-header .user-pic>a {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  padding: 0px !important
}

.is-main-header .user-pic .dropdown-menu a:hover {
  color: #7dbff8;
  background-color: transparent;
}

.dark-form-control.bootstrap-select {
  padding: 0;
  border: none;
}

.dark-form-control .dropdown-toggle {
  padding: 14px;
  background-color: #2b364a;
  border: 1px solid #2b364a;
  box-shadow: none;
  outline: none;
}

.bootstrap-select>.dropdown-toggle:after {
  content: "\e902";
  font-family: 'waboos-icons';
  border: none;
  color: #fff;
  -ms-transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.show.bootstrap-select>.dropdown-toggle:after {
  transform: rotate(180deg);
  -ms-transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 1px;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
  background-color: #38465e;
  border-color: #38465e;
  /* border-radius: 0; */
  box-shadow: none;
  outline: 0;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: 0 !important;
  box-shadow: none;
  border-color: #38465e;
  background-color: #38465e;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #f44336;
  text-decoration: none;
  background-color: transparent;
}

.home-banner-sec {
  /* min-height: 180vh; */
  min-height: 100vh;
  position: relative;
  width: 100%;
  /* display: flex; */
  /* align-items: center; */
  /* padding-bottom: 100px; */
}

.banner-caption {
  width: 100%;
}

.banner-caption h2 {
  font-size: 60px;
  font-family: 500;
  color: #fff;
  margin-top: 0;
}

.banner-caption p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-pic {
  width: 100%;
  position: relative;
}

.hero-pic figure {
  margin: 0;
  max-width: 560px;
  border-radius: 100%;

}

.main-home-sec {
  width: 100%;
  position: relative;
}

.top-lft-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  z-index: 0;
}

.top-rgt-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  z-index: 0;
}

.bottom-lft-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  z-index: 0;
}

.bottom-rgt-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  z-index: 0;
}

.scroll-downs {
  position: absolute;
  right: 0;
  /* bottom: 23%; */
  bottom: 8%;
  left: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 200px;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.home-banner-sec {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  /* padding-top: 15%; */
  /* padding: 12% 0; */
  padding-top: 10%;padding-bottom: 14%;
  position: relative;
}

.home-banner-sec::after {
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/noise.png);
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.50;

}

.sub_banner_sec::after {
  background-image: url(../images/noise_sub_banner.png);
  opacity: 0.15;
}

.sub_banner_sec .container-fluid {
  position: relative;
  z-index: 1;
}

.home-banner-sec .owl-theme .owl-nav {
  text-align: center;
}

.home-banner-sec .owl-theme .owl-nav [class*=owl-] {
  background-color: transparent;
  color: #fff;
  font-size: 45px;
  margin: 0 10px;
  position: static;
  border: none;
  color: #fff;
  opacity: 1;
}

.home-banner-sec .owl-theme .owl-nav .owl-prev:hover,
.home-banner-sec .owl-theme .owl-nav .owl-next:hover {
  color: #3230C1;
}

.mdl-popular-sec {
  width: 100%;
  padding: 100px 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100%;
}

.about-heading {
  margin-bottom: 50px;
}

.about-heading span {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  display: block;
  width: 100%;
}

.about-heading h2 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  position: relative;
  display: inline-block;
}

.about-heading p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.about-img {
  padding-right: 15px;
  width: 100%;
}

.about-img figure {
  border-radius: 30px;
  margin: 0;
}

.about-img figure img {
  border-radius: 30px;
}

.about-info-dtl p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.about-info-dtl ul {
  list-style: disc;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  margin-bottom: 15px;
}

.about-info-dtl ul li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #fff;
  list-style: disc;
}

.popular-sec {
  width: 100%;
  padding: 100px 0;
}

.course-bx {
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.20);
  position: relative;
  background-color: rgba(15, 15, 15, 0.30);
  margin-bottom: 30px;
}

.course-bx picture {
  display: block;
  border-radius: 30px 30px 0 0;
  position: relative;
}

.course-bx picture img {
  border-radius: 30px 30px 0 0;
}

.course-dtl {
  padding: 20px 30px;
  width: 100%;
}

.lft-video-lession {
  width: 100%;
  padding: 10px 0;
}

.lft-video-lession small {
  font-size: 16px;
  color: #D9ECFF;
  display: flex;
  align-items: center;
}

.lft-video-lession small i {
  margin-right: 10px;
}

.tab-show span {
  background-color: rgba(218, 218, 247, 0.22);
  font-size: 16px;
  color: #D9ECFF;
  padding: 10px 15px;
  border-radius: 30px;
  min-width: 110px;
  text-align: center;
  display: block;
}

.course-dtl h2 {
  font-size: 24px;
  font-weight: 700;
  color: #D9ECFF;
  margin: 10px 0 15px 0;
}

.admin-pro-info {
  border-top: 1px solid rgba(218, 218, 247, 0.32);
  border-bottom: 1px solid rgba(218, 218, 247, 0.32);
  padding: 3px 0;
  position: relative;
}

.profe-outer {
  position: relative;
  min-height: 50px;
  padding-left: 55px;
  margin: 10px 0;
}

.profe-outer figure {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
}

.profe-outer figure img {
  border-radius: 100px;
}

.profe-outer h3 {
  font-size: 15px;
  color: #D9ECFF;
  margin: 0 0 0 0;
  font-weight: 500;
}

.profe-outer small {
  font-size: 13px;
  color: #D9ECFF;
  font-weight: 300;
}

.count-students {
  border-left: 1px solid rgba(218, 218, 247, 0.32);
  padding: 15px 5px;
  color: #D9ECFF;
  font-size: 15px;
  min-width: 130px;
  text-align: right;
}

.rating-bx span,
.rating-bx span a {
  color: #D9ECFF;
  font-size: 15px;
  text-decoration: underline;
}

.common-tabs {
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  padding: 15px;
  border: none;
}

.common-tabs.nav-tabs li {
  margin-left: 10px;
}

.common-tabs.nav-tabs li a.nav-link {
  color: #fff;
  font-size: 16px;
  border: none;
}

.common-tabs.nav-tabs li a.nav-link:hover {
  border: none;
  background: linear-gradient(to right, rgba(30, 29, 116, 1) 0%, rgba(50, 48, 193, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;
  border-radius: 100px;
}

.common-tabs.nav-tabs li a.nav-link.active {
  border: none;
  background: linear-gradient(to right, rgba(30, 29, 116, 1) 0%, rgba(50, 48, 193, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;
  border-radius: 100px;
}

.common-tabs .nav-item {
  margin-left: 10px;
}

.nav-pills .nav-link {
  color: #fff;
  font-size: 16px;
  border: none;
}

.nav-link:hover,
.nav-link:focus {
  border: none;
  background: linear-gradient(to right, rgba(30, 29, 116, 1) 0%, rgba(50, 48, 193, 1) 100%);
  color: #fff;
  border-radius: 100px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  border: none;
  background: linear-gradient(to right, rgba(30, 29, 116, 1) 0%, rgba(50, 48, 193, 1) 100%);
  color: #fff;
  border-radius: 100px;
}

.course-tabs-show h2 {
  font-size: 55px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.course-tabs-show h2 span {
  color: #3230C1;
}

.category-sec {
  width: 100%;
  padding: 100px 0;
  position: relative;
}

.category-sec h2 {
  font-size: 55px;
  color: #fff;
  margin: 0;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.category-sec h2 span {
  color: #3230C1;
}

.most-cate-bx {
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 15px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 15px;
  margin-top: 30px;
}

.most-cate-bx i {
  margin-right: 10px;
}

.most-cate-bx span {
  width: 40px;
}

.difference-sec {
  width: 100%;
  position: relative;
  background-color: rgba(50, 48, 193, 0.20);
  padding: 150px 0;
  overflow: hidden;
}

.difference-sec:before {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  position: absolute;
  left: -80px;
  top: 20px;
  content: '';
  background: rgb(77, 201, 215);
  background: linear-gradient(90deg, rgba(77, 201, 215, 1) 0%, rgba(223, 252, 255, 1) 100%);
}

.difference-sec:after {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  position: absolute;
  right: -80px;
  bottom: 20px;
  content: '';
  background: rgb(30, 29, 116);
  background: linear-gradient(90deg, rgba(30, 29, 116, 1) 0%, rgba(50, 48, 193, 1) 100%);
}

.difference-pic {
  width: 100%;
  border-radius: 20px;
}

.difference-pic img {
  border-radius: 20px;
}

.difference-info {
  width: 100%;
  padding-left: 30px;
}

.difference-info h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.difference-info p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}

.differ-data {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.data-info {
  padding-left: 15px;
}

.data-info h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.data-info span {
  font-size: 18px;
  color: #B0B0D1;
}

.testimonal-carousel {
  width: 100%;
  max-width: 945px;
  margin: 0px auto;
  background-color: #0F0F0F;
  border-radius: 30px;
  border: 2px solid rgba(15, 15, 15, 0.20);
  padding: 30px 50px;
}

.testimonial-sec {
  width: 100%;
  padding: 140px 0;
  position: relative;
}

.testimonial-sec h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 50px 0;
  text-align: center;
}

.client-lft {
  border-bottom: 1px solid rgba(218, 218, 247, 0.32);
  padding: 15px 0;
  width: 100%;
  margin-bottom: 20px;
}

.client-dtl h3 {
  font-size: 18px;
  color: #D9ECFF;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.client-dtl small {
  font-size: 16px;
  color: #D9ECFF;
  font-weight: 400;
}

.client-lft figure {
  margin: 0;
  width: 50px;
  border-radius: 100px;
}

.client-lft figure img {
  border-radius: 100px;
}

.client-outer p {
  font-size: 20px;
  font-weight: 400;
  color: #B0B0D1;
}

.testimonial-sec .owl-theme .owl-nav .owl-prev,
.testimonial-sec .owl-theme .owl-nav .owl-next {
  position: static;
  border: none;
  outline: 0;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
  opacity: 1;
  width: 40px;
  height: 40px;
}

.testimonial-sec .owl-theme .owl-nav {
  text-align: right;
}

.client-side-img1 {
  position: absolute;
  left: 20%;
  top: 40px;
  border-radius: 100%;
  overflow: hidden;
}

.client-side-img2 {
  position: absolute;
  right: 10%;
  top: -50px;
  border-radius: 100%;
  overflow: hidden;
}

.client-side-img3 {
  position: absolute;
  left: 6%;
  top: 35%;
  border-radius: 100%;
  overflow: hidden;
}

.client-side-img4 {
  position: absolute;
  left: 8%;
  bottom: -60px;
  border-radius: 100%;
  overflow: hidden;
}

.client-side-img5 {
  position: absolute;
  right: 8%;
  bottom: -80px;
  border-radius: 100%;
  overflow: hidden;
}

.client-side-img6 {
  position: absolute;
  right: 7%;
  top: 50%;
  border-radius: 100%;
  overflow: hidden;
}

.join-us-sec {
  padding: 100px 0;
  width: 100%;
  background-color: rgba(50, 48, 193, 0.20);
  position: relative;
}

.join_our_btn_main .join_our_btn {
  line-height: 60px;
  height: auto;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  width: 380px;

}

.join_our_btn_main .second-btn {
  background: linear-gradient(90deg, rgba(77, 201, 215, 1) -30%, rgba(27, 68, 72, 1) 100%);
}

.join_our_btn_main .main-btn {
  background: linear-gradient(to right, rgba(50, 48, 193, 1) 0%, rgba(10, 10, 24, 1) 99%);
}

.joinus-outer h2 {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 720px;
}

.joinus-outer h2 span {
  color: #3230C1;
}

.joinus-outer p {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}


.dots-lft-img {
  position: absolute;
  left: -3%;
  top: 10%;
}

.dots-rgt-img {
  position: absolute;
  /* right: -3%; */
  right: 0;
  top: 10%;
}

.footer_sec {
  padding: 100px 0 0 0;
  width: 100%;
  position: relative;
}

.footer-logo {
  padding-right: 55px;
}

.footer-logo figure {
  margin-bottom: 20px;
  /* width: 120px; */
}

.footer-logo p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 480px;
}

.footer_quick {
  padding-left: 80px;
}

.footer-menu h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}

.footer-menu ul {
  width: 49%;
  display: inline-block;
  vertical-align: top;
}

.footer-menu ul li {
  width: 100%;
  flex-wrap: wrap;
  width: 50%;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.footer-menu ul li a {
  color: #fff;
  font-size: 16px;
}

.footer-menu p {
  margin-bottom: 0;
  color: #fff;
  font-size: 16px;
  position: relative;
  padding-left: 30px;
}

.footer-menu p i {
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 6px;
}

.social-footer {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  /* gap: 20px; */
}


.social-footer a {
  margin-left: 10px;
  opacity: 0.7;
}

.social-footer a+a {
  margin-left: 25px;
}

.social-footer a:hover {
  opacity: 1;
}

.copyright-social {
  border-top: 1px solid rgba(218, 218, 247, 0.20);
  width: 100%;
  padding: 30px 0;
  margin-top: 20px;
}

.copyright-social p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.footer_quick_ctm ul li {
  display: inline-block;
  vertical-align: top;
  /* width: 49%; */
}


/* ----------------------------- about_css_start ---------------------------- */
.sub_banner_sec {
  min-height: auto;
  padding-bottom: 15%;
}

.sub_banner {
  width: 100%;
  display: inline-block;
}

.sub_banner h1 {
  font-weight: 800;
  font-size: 75px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sub_banner span,
.sub_banner p {
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  width: 100%;
  display: inline-block;
  align-items: top;
  letter-spacing: 1px;
}

.sub_banner span {
  margin: 30px 0px;
}

.sub_banner p {
  max-width: 1260px;
  line-height: 40px;
  font-weight: 400;
  font-size: 20px;
}

.our_story_img figure img {
  border-radius: 30px;
}

.our_story .web_title {
  margin-bottom: 50px;
}

.web_title h2 {
  font-size: 55px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.web_title h2 span {
  color: #3230C1;
}

.our_story_data p {
  width: 100%;
  display: inline-block;
  align-items: top;
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 38px;
}

.our_story .web_title,
.our_story_data p {
  padding-left: 40px;
}

.we_offer_main {
  width: 100%;
  display: inline-block;
  margin-top: 80px;
  margin-bottom: 50px;
  position: relative;
}

.offer_shap img{
  position: absolute;
  right: 0px;
  bottom: -121%;
  top: auto;
  width: 30%;
  z-index: -1;
}

.we_offer_main .web_title {
  margin-bottom: 50px;
}

.we_offer_blog_mb {
  margin-bottom: 30px;
}

.we_offer_blog {
  border: 1px solid #363636;
  background-color: #040404;
  border-radius: 30px;
  padding: 30px 20px 40px;
  height: 100%;

}

.we_offer_icon_box {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4E4D9E;
  border-radius: 50px;
  background: linear-gradient(to right, rgba(30, 29, 116, 1) 0%, rgba(50, 48, 193, 1) 100%);

}

figure {
  margin-bottom: 0px;
}

.we_offer_blog h3 {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  margin: 40px 0px 25px;
}

.we_offer_blog p {
  color: var(--white);
  font-weight: 400;
  text-align: justify;
  font-size: 18px;
  line-height: 28px;
}

.our_vision_main {
  position: relative;
  background-image: url(../images/vision_left.png);
  background-repeat: no-repeat;
  

}

.our_vision {
  position: relative;
  background: url(../images/our_vision_main_bg.png);
  padding: 160px 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;

}

.our_vision .web_title p {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  max-width: 900px;
  line-height: 37px;
  text-align: center;
  margin: 30px auto 0px;
}

.our_team {
  padding-top: 80px;
  position: relative;
  background-size: cover;
}

.our_team_bg {}

.our_team .web_title p {
  max-width: 965px;
  display: inline-block;
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin: 30px 0px auto;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.our_team .web_title {
  margin-bottom: 50px;
  width: 100%;
  display: inline-block;
}

.team_blog {
  margin-bottom: 30px;
}

.team_blog_img img {
  width: 100%;
  border-radius: 26px;
}

.team_info {
  background-color: rgba(0, 0, 0, 0.30);
  border: 1px solid #3F3E61;
  padding: 50px 20px 20px;
  border-radius: 0px 0px 20px 20px;
  margin-top: -30px;
}

.team_info h5 {
  color: var(--white);
  font-weight: bold;
  font-size: 24px;
}

.team_info p {
  font-weight: 500;
  color: var(--white);
  margin-top: 10px;
}

.our_team .join-us-sec {
  margin-top: 80px;
}

/* ----------------------------- about_css_end ---------------------------- */

/* ----------------------------- blog_css_start ----------------------------- */
.blog_main_sec {
  position: relative;
}

.blog_main_bg {
  position: absolute;
  bottom: -300px;
  left: 0px;
  z-index: 1;
}

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

.col-lg-4.col-md-6.blog_box_margin
{
  margin-bottom: 30px;
}

.blog_box {
  height: 100% !important;
  border-radius: 12px;
  border: 1px solid #333333;
  padding: 15px;
  /* margin-bottom: 30px; */
}

.blog_box_img img {
  width: 100%;
  border-radius: 6px;
}

.bolg_box_info {
  margin-top: 24px;
}

.blog_lbl {
  background-color: #04050D;
  color: #4B6BFB;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 15px;
  width: auto;
  display: inline-block;
}

.bolg_box_info a {
  color: var(--white);
  font-size: 24px;
  line-height: 33px;
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin: 15px 0px 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.name_post_info {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

.blog_user_name {
  display: flex;
  gap: 12px;
  align-items: center;
}

.user_img img {
  border-radius: 28px;
}

.blog_user_info {
  color: #97989F;
  font-weight: 500;
  font-size: 16px;
}

.blog_date {
  font-size: 16px;
  color: #97989F;
}

.blog_main .main-btn {
  margin: 30px 0px 70px;
}

/* ----------------------------- blog_css_end ----------------------------- */

/* ------------------------- blog_details_css_start ------------------------- */
.blog_details_main {
  margin: 30px 0px 80px;
}

.blog_details_main .blog_main_bg {
  position: absolute;
  bottom: 20%;
  left: 0px;
  z-index: -1;
}

.blog_details_main .blog_lbl {
  color: var(--white);
  background-color: #3230C1;
}

.blog_details_main h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  margin: 30px 0px 20px;
}

.blog_details_main .name_post_info {
  margin-bottom: 30px;
}

.blog_dtl_in_img {
  border-radius: 12px;
  margin-bottom: 50px;
}

.blog_details_main p {
  font-size: 20px;
  color: #BABABF;
  line-height: 32px;
}

.blog_details_main h4 {
  font-size: 24px;
  color: #FFF;
  font-weight: 600;
  margin: 20px 0px;
}

.safe_blog {
  background-color: #242535;
  border-radius: 12px;
  padding: 30px;
  font-size: 24px;
  color: var(--white);
  border-left: 4px solid #E8E8EA;
  margin-bottom: 30px;
}

/* ------------------------- blog_details_css_end ------------------------- */

/* ---------------------------- conatc_css_start ---------------------------- */
.contact_form p {
  font-size: 20px;
  color: #FFF;
}

.form-control {
  background-color: transparent;
  border-color: #FFF;
  border-radius: 4px;
  font-size: 16px;
  color: #FFF;
  height: 55px;
  padding-left: 20px;
}

.contact_form .main-btn {
  border-radius: 10px;
  padding: 20px 20px;
}

.contact_info_right {
  padding-left: 30px;
  margin-top: 40px;
}

.contact_info_blog {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.contact_info_blog i {
  font-size: 20px;
  color: #FFF;
}

.contact_info_blog p,
.contact_info_blog a {
  color: #FFF;
  font-size: 16px;
  line-height: 20px;
}

.contact_info_right .social-footer {
  text-align: left;
  justify-content: start;
  margin-top: 30px;
}

.contact_info_right .social-footer a {
  margin-left: 0;
  margin-right: 30px;
}


.contact_map iframe {
  width: 100%;
  height: 200px;
  border-radius: 4px;
  margin-top: 30px;
}

/* ---------------------------- conatc_css_end ---------------------------- */
a.whatsapp_icon {
    width: 45px;
    display: inline-block;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99999;
}
a.whatsapp_icon img {
    width: 100%;
}

.round_two img
{
    display: none;
}