@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  --primary-light: #e2f1ff;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04), 0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04), 0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04), 0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04), 0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08), 0px 20px 32px rgba(96, 97, 112, 0.24);
}
 
body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}
 
img {
  max-width: 100%;
}
 
a {
  display: inline-block;
}
 
a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}
 
ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}
 
h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}
 
h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}
 
h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}
 
h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}
 
h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}
 
h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}
 
.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}
 
.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}
 
.display-3 {
  font-size: 4em;
  line-height: 1.25;
}
 
.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}
 
p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}
 
.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}
 
.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}
 
.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
 
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
 
.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}
.btn.btn-sm {
  padding: 8px 16px;
}
.btn.square {
  border-radius: 0px;
}
.btn.semi-rounded {
  border-radius: 12px;
}
.btn.rounded-full {
  border-radius: 50px;
}
.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}
.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}
.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}
.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}
.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}


/* ===== Buttons Css ===== */
.primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
  }
  .active.primary-btn, .primary-btn:hover, .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
  }
  .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
  }
  
  .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
  }
  .active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
    background: var(--primary-dark);
    color: var(--white);
  }
  .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
  }
  
  /*===========================
    NAVBAR css 
  ===========================*/
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .mb-100 {
    margin-bottom: 100px;
  }
  
  /*===== NAVBAR ONE =====*/
  .navbar-one {
    background:#74CDB9;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one {
      padding: 20px 0;
    }
  }
  .navbar-one .navbar {
    position: relative;
    padding: 0;
  }
  .navbar-one .navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    margin: 5px 0;
    display: block;
    position: relative;
    -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;
  }
  .navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
  }
  .navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
  }
  .navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-collapse {
      position: absolute;
      top: 140%;
      left: 0;
      width: 100%;
      background-color: #74CDB9;
      z-index: 8;
      padding: 10px 0;
      border-radius: 0 0 5px 5px;
    }
  }
  .navbar-one .navbar .navbar-nav .nav-item {
    margin: 0 5px;
    position: relative;
  }
  .navbar-one .navbar .navbar-nav .nav-item a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding: 28px 15px;
    color: var(--white);
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 0;
    -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;
  }
  .navbar-one .navbar .navbar-nav .nav-item a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 0%;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -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;
  }
  .navbar-one .navbar .navbar-nav .nav-item a.active::before {
    opacity: 0.1;
    visibility: visible;
    width: 100%;
  }
  .navbar-one .navbar .navbar-nav .nav-item a:hover::before {
    opacity: 0.1;
    visibility: visible;
    width: 100%;
  }
  .navbar-one .navbar .navbar-nav .nav-item a i {
    font-weight: 700;
    padding-left: 8px;
    font-size: 14px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item a {
      padding: 10px 10px;
      display: block;
    }
    .navbar-one .navbar .navbar-nav .nav-item a::before {
      border-radius: 5px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item {
      margin-bottom: 5px;
    }
    .navbar-one .navbar .navbar-nav .nav-item:last-child {
      margin-bottom: 0;
    }
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 260px;
    background-color: var(--white);
    box-shadow: var(--shadow-4);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -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;
    z-index: 99;
    padding: 10px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu {
      position: relative !important;
      width: 100% !important;
      left: 0 !important;
      top: auto !important;
      opacity: 1 !important;
      visibility: visible !important;
      right: auto;
      -webkit-transform: translateX(0%);
      -moz-transform: translateX(0%);
      -ms-transform: translateX(0%);
      -o-transform: translateX(0%);
      transform: translateX(0%);
      -webkit-transition: all none ease-out 0s;
      -moz-transition: all none ease-out 0s;
      -ms-transition: all none ease-out 0s;
      -o-transition: all none ease-out 0s;
      transition: all none ease-out 0s;
      box-shadow: none;
      text-align: left;
      border-top: 0;
      height: 0;
    }
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: auto;
    display: block;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
      height: 0;
      display: none;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu.show {
      height: auto;
    }
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li {
    position: relative;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a {
      border-radius: 5px !important;
    }
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    font-weight: 500;
    position: relative;
    color: var(--dark);
    -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;
    z-index: 5;
    text-transform: capitalize;
    border-radius: 5px;
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a::before {
    display: none;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover {
      background-color: var(--primary-dark);
      color: var(--white);
    }
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
      color: var(--primary-dark);
      -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;
    }
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover i {
      color: var(--white);
    }
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
    font-size: 14px;
    font-weight: 700;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
      display: none;
    }
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
    display: inline-block;
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -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;
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
      margin-left: 10px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
      padding-left: 30px;
      height: 0;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
      visibility: visible;
      height: auto;
      position: relative;
    }
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .navbar-one .navbar .navbar-nav .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-one .navbar .navbar-nav .nav-item .sub-nav-toggler {
      display: inline-block;
      position: absolute;
      top: 0;
      right: 0;
      padding: 10px 14px;
      font-size: 16px;
      background: none;
      border: 0;
      color: var(--white);
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-one .navbar .navbar-btn {
      position: absolute;
      right: 70px;
      top: 3px;
    }
  }
  @media (max-width: 767px) {
    .navbar-one .navbar .navbar-btn {
      position: absolute;
      right: 60px;
      top: 3px;
    }
  }
  .navbar-one .navbar .navbar-btn ul {
    display: flex;
  }
  .navbar-one .navbar .navbar-btn ul li {
    display: inline-block;
    margin-right: 12px;
  }
  .navbar-one .navbar .navbar-btn ul li a {
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0;
  }
  .navbar-one .navbar .navbar-btn ul li a.primary-btn-outline {
    border-color: var(--white);
    color: #00d084;
  }
  .navbar-one .navbar .navbar-btn ul li a.primary-btn-outline:hover {
    background-color: #00d084;
    color: var(--primary);
  }
  .navbar-one .navbar .navbar-btn ul li a.primary-btn {
    background-color: #7bdcb5;
    color: white;
    border-color: var(--white);
  }
  .navbar-one .navbar .navbar-btn ul li a.primary-btn:hover {
    background-color: transparent;
    color: var(--white);
  }

  /* ===== Buttons Css ===== */
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .active.primary-btn, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:hover, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
  }
  
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .active.primary-btn-outline, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:hover, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:focus {
    background: var(--primary-dark);
    color: var(--white);
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
  }
  
  /*===== SLIDER ONE =====*/
  .slider-one .bd-example .carousel .carousel-inner {
    background-color: var(--primary);
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item {
    height: auto;
    padding: 300px 0;
    position: relative;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item {
      padding: 200px 0;
    }
  }
  @media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item {
      padding: 150px 0;
    }
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #74CDB9;
    opacity: 0.6;
  }
  @media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item {
      height: 400px;
    }
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    left: 0;
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    line-height: 55px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
      font-size: 35px;
      line-height: 42px;
    }
  }
  @media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
      font-size: 24px;
      line-height: 32px;
    }
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .text {
    color: var(--white);
    display: block;
    margin: 20px 0;
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li {
    display: inline-block;
    margin: 16px 8px 0;
  }
  @media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li {
      margin: 16px 3px 0;
    }
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid transparent;
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline {
    border-color: var(--white);
    color: var(--white);
  }
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:hover {
    border-color: transparent;
    background-color: var(--white);
    color: var(--primary);
  }
  .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
    top: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border: 1px solid var(--white);
    font-size: 20px;
    color: var(--white);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
    left: 30px;
    opacity: 1;
    z-index: 99;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .slider-one .bd-example .carousel .carousel-control-prev:hover, .slider-one .bd-example .carousel .carousel-control-next:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: transparent;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
      left: 30px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
      left: 30px;
      width: 50px;
      height: 50px;
      line-height: 50px;
    }
  }
  @media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
      left: 20px;
      width: 40px;
      height: 40px;
      line-height: 40px;
    }
  }
  .slider-one .bd-example .carousel .carousel-control-next {
    right: 30px;
    left: auto;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-one .bd-example .carousel .carousel-control-next {
      right: 40px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-control-next {
      right: 40px;
    }
  }
  @media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-control-next {
      right: 20px;
    }
  }
  .slider-one .bd-example .carousel .carousel-indicators {
    margin-bottom: 50px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-indicators {
      margin-bottom: 40px;
    }
  }
  @media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-indicators {
      margin-bottom: 30px;
    }
  }
  .slider-one .bd-example .carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50px;
    border: 0;
    margin: 0px 5px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .slider-one .bd-example .carousel .carousel-indicators li.active {
    width: 20px;
    background-color: var(--white);
    border-radius: 5px;
  }
  .slider-one .bd-example .carousel .carousel-indicators li:hover {
    opacity: 1;
  }


  /* ===== Buttons Css ===== */
.features-style-one .primary-btn-outline {
    border-color: black;
    color: white;
  }
  .features-style-one .active.primary-btn-outline, .features-style-one .primary-btn-outline:hover, .features-style-one .primary-btn-outline:focus {
    background: var(--primary-dark);
    color: var(--white);
  }
  .features-style-one .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
  }
  
  /*===========================
    Features One CSS 
  ===========================*/
  .features-one {
    background-color:white;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .features-one .section-title {
    padding-bottom: 10px;
  }
  .features-one .title {
    font-size: 44px;
    font-weight: 600;
    color: var(--black);
    line-height: 55px;
  }
  @media (max-width: 767px) {
    .features-one .title {
      font-size: 30px;
      line-height: 35px;
    }
  }
  .features-one .text {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    margin-top: 24px;
  }
  
  .features-style-one {
    background-color:#74CDB9;
    padding: 40px 20px;
    margin-top: 40px;
    box-shadow: var(--shadow-2);
    border-radius: 4px;
    transition: all 0.3s;
  }
  .features-style-one:hover {
    box-shadow: var(--shadow-4);
  }
  .features-style-one .features-icon {
    position: relative;
    display: inline-block;
    z-index: 1;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 40px;
    color: white;
    border: 2px solid rgba(187, 187, 187, 0.192);
    border-radius: 50%;
    -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;
  }
  @media (max-width: 767px) {
    .features-style-one .features-icon {
      height: 70px;
      width: 70px;
      line-height: 70px;
      font-size: 35px;
    }
  }
  .features-style-one:hover .features-icon {
    border-color: transparent;
    color: var(--white);
    background-color: var(--primary);
  }
  .features-style-one .features-content {
    margin-top: 24px;
  }
  .features-style-one .features-title {
    font-size: 26px;
    line-height: 35px;
    font-weight: 600;
    color: white;
    -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;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .features-style-one .features-title {
      font-size: 22px;
    }
  }
  .features-style-one .text {
    color: white;
    margin-top: 16px;
  }
  .features-style-one .features-btn {
    margin-top: 32px;
  }


  /* ===== Buttons Css ===== */
.header-one .header-content-area .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
  }
  .header-one .header-content-area .active.primary-btn-outline, .header-one .header-content-area .primary-btn-outline:hover, .header-one .header-content-area .primary-btn-outline:focus {
    background: var(--primary-dark);
    color: var(--white);
  }
  .header-one .header-content-area .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
  }
  
  /*===== HEADER ONE =====*/
  .header-one {
    position: relative;
  }
  .header-one .header-content-area {
    background-color: var(--primary);
    position: relative;
    padding: 130px 0;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-one .header-content-area {
      padding: 100px 0;
    }
  }
  @media (max-width: 767px) {
    .header-one .header-content-area {
      padding: 60px 0;
    }
  }
  @media only screen and (min-width: 1400px) {
    .header-one .header-content-area {
      height: 900px;
    }
  }
  @media (max-width: 767px) {
    .header-one .header-content-area {
      height: 550px;
    }
  }
  .header-one .header-content-area .primary-btn-outline {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary);
  }
  .header-one .header-content-area .primary-btn-outline:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
  }
  .header-one .header-wrapper {
    position: relative;
  }
  .header-one .header-content {
    max-width: 540px;
    position: relative;
    z-index: 5;
  }
  .header-one .header-title {
    color: var(--white);
    font-weight: 800;
  }
  .header-one .text-lg {
    color: var(--white);
    font-weight: 300;
    margin-top: 16px;
  }
  .header-one .header-btn {
    margin-top: 40px;
  }
  .header-one .header-image {
    text-align: center;
  }
  .header-one .header-image .image {
    max-width: 730px;
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-one .header-image .image {
      max-width: 600px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-one .header-image .image {
      max-width: 550px;
    }
  }
  .header-one .header-image .image img {
    width: 100%;
  }
  .header-one .header-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
  }
  .header-one .header-shape img {
    width: 100%;
  }


  /*===== FOOTER ONE =====*/
.footer-one {
    background-color: var(--light-2);
  }
  .footer-one .footer-logo {
    margin-top: 30px;
  }
  .footer-one .footer-widget {
    padding-top: 70px;
    padding-bottom: 100px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-one .footer-widget {
      padding-top: 40px;
      padding-bottom: 70px;
    }
  }
  @media (max-width: 767px) {
    .footer-one .footer-widget {
      padding-top: 20px;
      padding-bottom: 50px;
    }
  }
  .footer-one .footer-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--black);
    position: relative;
  }
  .footer-one .footer-app-store {
    padding-top: 22px;
  }
  .footer-one .footer-app-store .download-title {
    font-size: 15px;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--dark-1);
  }
  .footer-one .footer-app-store li {
    display: inline-block;
    margin-right: 8px;
  }
  .footer-one .footer-app-store li img {
    max-width: 140px;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-one .footer-app-store li {
      margin-right: 6px;
    }
  }
  .footer-one .footer-app-store li:last-child {
    margin-right: 0;
  }
  @media (max-width: 767px) {
    .footer-one .footer-app-store li {
      width: 120px;
      display: block;
      margin-bottom: 10px;
    }
    .footer-one .footer-app-store li:last-child {
      margin: 0;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .footer-one .footer-app-store li {
      width: auto;
    }
  }
  .footer-one .footer-app-store li a {
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  .footer-one .footer-app-store li a:hover {
    box-shadow: var(--shadow-4);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  .footer-one .f-about {
    margin-top: 30;
  }
  .footer-one .f-about .text {
    margin-top: 20px;
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
    .footer-one .f-about {
      padding-right: 200px;
    }
  }
  .footer-one .footer-link {
    margin-top: 30px;
  }
  .footer-one .footer-link ul {
    margin-top: 8px;
  }
  .footer-one .footer-link ul a {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    margin-top: 16px;
    font-weight: 400;
    -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;
  }
  @media (max-width: 767px) {
    .footer-one .footer-link ul a {
      margin-top: 12px;
    }
  }
  .footer-one .footer-link ul a:hover {
    color: var(--primary);
  }
  .footer-one .footer-contact {
    margin-top: 30px;
  }
  .footer-one .footer-contact ul {
    margin-top: 24px;
  }
  .footer-one .footer-contact ul li {
    display: block;
    margin-top: 15px;
    position: relative;
    padding-left: 24px;
    color: var(--dark-3);
  }
  .footer-one .footer-contact ul li:first-child {
    margin: 0;
  }
  .footer-one .footer-contact ul li i {
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 4px;
  }
  .footer-one .footer-copyright {
    border-top: 1px solid var(--gray-4);
  }
  .footer-one .copyright {
    padding-bottom: 23px;
    padding-top: 13px;
  }
  .footer-one .copyright .text {
    color: var(--dark-3);
    margin-top: 10px;
  }
  .footer-one .social {
    margin-top: 10px;
  }
  .footer-one .social li {
    display: inline-block;
    margin-right: 15px;
  }
  .footer-one .social li:last-child {
    margin-right: 0;
  }
  .footer-one .social li a {
    font-size: 18px;
    color: var(--dark-3);
    -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;
  }
  .footer-one .social li a:hover {
    color: var(--primary);
  }


  /* accordion-style-four */
.accordion-style-four .accordion .card {
    margin-top: 8px;
    border-radius: 0;
    border: 0;
  }
  .accordion-style-four .accordion .card .card-header {
    padding: 0;
    background: none;
  }
  .accordion-style-four .accordion .card .card-header a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    position: relative;
    color: var(--white);
    -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;
    margin: -1px;
    border-radius: 0;
    padding: 13px 16px;
    z-index: 5;
    border: 0;
    background:#74CDB9;
  }
  .accordion-style-four .accordion .card .card-header a::before {
    position: absolute;
    content: "\ea5e";
    font-family: lineicons !important;
    right: 16px;
    top: 14px;
    font-size: 16px;
    -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;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .accordion-style-four .accordion .card .card-header a.collapsed {
    color: var(--black);
    border-color: var(--gray-4);
    background: var(--light-2);
  }
  .accordion-style-four .accordion .card .card-header a.collapsed::before {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  .accordion-style-four .accordion .card .card-body {
    padding: 16px;
  }
  .accordion-style-four .accordion .card .card-body .text {
    color: var(--dark-3);
  }


  .my-button {
    background-color: #74CDB9;
    border-color:#74CDB9;
    color:white;
}

.hell {
  background-color: #74CDB9;
  border-color: black;
  color:white;
  border-radius: 10%
}


.hell:hover {
  background-color: #CFCFC4;
  border-color: black;
  color:white;
}