* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  font-size: 16px;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #262626;
}

p {
  margin: 0;
  color: #262626;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #A7D094;
}

a:hover {
  color: #A7D094;
}

h2 {
  font-size: 2rem;
}
@media (max-width: 991px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "pingAR+LT-Light";
  src: url(../fonts/pingAR+LT-Light.otf);
}
@font-face {
  font-family: "pingAR+LT-Regular";
  src: url(../fonts/pingAR+LT-Regular.otf);
}
@font-face {
  font-family: "pingAR+LT-Medium";
  src: url(../fonts/pingAR+LT-Medium.otf);
}
@font-face {
  font-family: "pingAR+LT-Bold";
  src: url(../fonts/pingAR+LT-Bold.otf);
}
@font-face {
  font-family: "pingAR+LT-Heavy";
  src: url(../fonts/pingAR+LT-Heavy.otf);
}
@font-face {
  font-family: "pingAR+LT-black";
  src: url(../fonts/pingAR+LT-black.otf);
}
body {
  font-weight: 400;
  line-height: 1.7;
  background-color: #fff;
  color: #262626;
  overflow-x: hidden;
}

.font-light {
  font-family: "pingAR+LT-Light";
}

.font-medium {
  font-family: "pingAR+LT-Medium";
}

.font-bold {
  font-family: "pingAR+LT-Bold";
}

.font-extra-bold {
  font-family: "pingAR+LT-Heavy";
}

.font-black {
  font-family: "pingAR+LT-black";
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 48px;
  background-color: #fff;
  border: 1px solid #F1F1F1;
  border-radius: 16px;
  padding: 10px 15px;
}
.form-control:focus {
  background-color: #F5F5F5;
  border-color: #A7D094 !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.bg-primary {
  background-color: #A7D094 !important;
}

.text-primary {
  color: #A7D094 !important;
}

.text-primary-2 {
  color: #047985;
}

.bg-primary-2 {
  background-color: #047985;
}

.border-primary {
  border-color: #A7D094 !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.input-icon {
  position: relative;
}

.input-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.input-icon.icon-right .icon {
  inset-inline-start: 20px;
}

.input-icon.icon-right .form-control {
  padding-inline-start: 55px;
}

.input-icon.icon-left .icon {
  inset-inline-end: 20px;
}

.input-icon.icon-left .form-control {
  padding-inline-end: 55px;
}

::-moz-placeholder {
  color: #C3C3C3 !important;
  font-size: 16px;
}

::placeholder {
  color: #C3C3C3 !important;
  font-size: 16px;
}

.btn {
  padding: 12px 38px;
  font-size: 1rem;
  border-radius: 30px;
  font-family: "pingAR+LT-Bold";
}

.btn-primary {
  color: #19345A;
  background: #A7D094;
  border-color: #A7D094;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background: linear-gradient(0deg, #40BCD2 8.18%, #4FBFC8 18.74%, #7bb38d 62.49%, #92b87e 83.61%);
  border-color: #A7D094;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  border-color: #A7D094;
  background: #A7D094 !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-secondary {
  color: #19345A;
  background: #E8EBEF;
  border-color: #E8EBEF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-secondary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #A7D094 !important;
  border-color: #A7D094;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: #fff !important;
  border-color: #E8EBEF;
  background-color: #E8EBEF !important;
  box-shadow: none !important;
}
.btn-secondary:hover::before, .btn-secondary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-ligth {
  color: #19345A;
  background: #F8F9F9;
  border-color: #F8F9F9;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-ligth::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #A7D094 !important;
  border-color: #A7D094;
}
.btn-ligth:hover, .btn-ligth:focus {
  color: #fff !important;
  border-color: #F8F9F9;
  background-color: #F8F9F9 !important;
  box-shadow: none !important;
}
.btn-ligth:hover::before, .btn-ligth:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-light-primary {
  color: #667F5A;
  background: #F6FAF4;
  border-color: #F6FAF4;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-light-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #A7D094 !important;
  border-color: #A7D094;
}
.btn-light-primary:hover, .btn-light-primary:focus {
  color: #fff !important;
  border-color: #F6FAF4;
  background-color: #F6FAF4 !important;
  box-shadow: none !important;
}
.btn-light-primary:hover::before, .btn-light-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}
.btn-light-primary .icon {
  width: 36px;
  height: 32px;
  background-color: #FFF;
  border-radius: 50%;
}

.btn-white {
  color: #000;
  background: #FFF;
  border-color: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
  background-color: #A7D094;
}
.btn-white:hover, .btn-white:focus {
  color: #fff !important;
  border-color: #A7D094;
  background-color: #FFF !important;
  box-shadow: none !important;
}
.btn-white:hover::before, .btn-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: #A7D094;
  background: transparent;
  border-color: #A7D094;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #A7D094;
}

.btn-outline-primary img {
  transition: filter 0.4s ease-in-out;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #000 !important;
  border-color: #A7D094;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #FFF !important;
}

.btn-outline-primary:hover::before, .btn-outline-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.pagination .page-item {
  margin: 0px 7px;
}
.pagination .page-item .page-link {
  color: #172A30;
  background-color: transparent;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  height: 36px;
  border: 0;
  min-width: 36px;
  border-radius: 8px;
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: #A7D094 !important;
  border-color: #A7D094;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #A7D094 !important;
  border-color: #A7D094;
}
@media (max-width: 991px) {
  .pagination .page-item {
    margin: 0px 4px;
  }
  .pagination .page-item .page-link {
    min-width: 40px;
    padding: 6px 14px;
  }
}

.checkbox {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
  padding-inline-start: 30px;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox .checkmark {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #BEC2C5;
  background-color: #FFF;
  top: 50%;
  inset-inline-start: 0;
  display: block;
  transform: translateY(-50%);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark {
  border-color: #A7D094;
}

.checkbox input:checked ~ .checkmark:after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #A7D094;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  font-weight: bold;
  content: "";
  font-size: 12px;
  background-color: #A7D094;
}
@media (max-width: 991px) {
  .checkbox .checkmark:after {
    width: 8px;
    height: 8px;
  }
}

.radio {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
  padding-inline-start: 30px;
}

.radio .checkmark {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  inset-inline-start: 0;
  top: 50%;
  display: block;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-50%);
  border: 2px solid #A7D094;
}
@media (max-width: 991px) {
  .radio .checkmark {
    width: 16px;
    height: 16px;
    border-width: 1px;
  }
}

.radio .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hide the browser's default radio */
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Show the checkmark when checked */
.radio input:checked ~ .checkmark {
  border-color: #667F5A;
}

.radio input:checked ~ .checkmark:after {
  opacity: 1;
}

.radio .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 12px;
  content: "";
  width: 10px;
  height: 10px;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #667F5A;
}

.main-header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 25px 0;
}
.main-header .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.main-header .overlay:not(.collapsed) {
  visibility: visible;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
  .main-header .toggleMenu {
    max-width: 20px;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse {
    position: fixed;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-end: -100%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  .main-header .navbar .navbar-collapse .navbar-toggler {
    position: absolute;
    inset-inline-end: 32%;
    top: 3%;
    z-index: 22;
  }
  .main-header .navbar .navbar-collapse .navbar-nav {
    padding: 20px 20px 0;
  }
  .main-header .navbar .navbar-collapse.show {
    inset-inline-end: -30%;
  }
  .main-header .navbar .navbar-collapse.show .ss {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
  }
}
.main-header .navbar .navbar-collapse .nav-link {
  cursor: pointer;
  display: inline-block;
  padding: 8px 9px;
  font-size: 16px;
  color: #405776;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.main-header .navbar .navbar-collapse .nav-link.active {
  color: #405776;
  font-family: "pingAR+LT-Bold";
  transform: translateY(4px);
}
.main-header .navbar .navbar-collapse .nav-item:hover .nav-link {
  color: #A7D094;
}
@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler {
  position: relative;
}
.navbar-toggler:not(.collapsed) i::before {
  content: "\f00d";
}

@media (max-width: 1250px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 8px 9px;
    font-size: 12px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.7rem;
  }
  .btn-ligth {
    padding: 2px 7px !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 7px;
    font-size: 10px;
  }
}
.dropdown-user .btn-ligth {
  padding-top: 8px;
  padding-bottom: 8px;
}
.dropdown-user .btn-ligth:hover .arrow i {
  color: #000;
}
.dropdown-user .dropdown-user-name {
  font-size: 14px;
}
.dropdown-user .dropdown-user-image {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dropdown-user .arrow {
  width: 24px;
  height: 24px;
  background-color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.dropdown-user .dropdown-menu {
  padding: 15px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 36px 0 rgba(17, 17, 17, 0.0588235294);
  min-width: 270px;
}
.dropdown-user .dropdown-menu .profile-image img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dropdown-user .dropdown-menu-user .menu-user li:not(:last-of-type) {
  margin-bottom: 10px;
}
.dropdown-user .dropdown-menu-user .menu-user .icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F8F9F9;
}
.dropdown-user .dropdown-menu-user .menu-user .title {
  color: #262626;
  transition: color 0.2s ease-in-out;
}
.dropdown-user .dropdown-menu-user .menu-user .title:hover {
  color: #A7D094;
}

@media (min-width: 992px) {
  .main-header.link-white .navbar .navbar-collapse .nav-link {
    cursor: pointer;
    display: inline-block;
    padding: 8px 9px;
    font-size: 16px;
    color: #ffffff;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1280px;
    max-width: 100%;
  }
}
.section {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0;
  }
}

.section-home {
  position: relative;
  z-index: 1;
  height: 800px;
  display: flex;
  align-items: center;
  padding-top: 50px;
  background-color: #f8f9f9;
}
@media(min-width:992px){
  .section-home{
        margin-top: -114px;
  }
}
.section-home::after {
  position: absolute;
  content: "";
  background: url(../images/bg2.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
  height: 400px;
  width: 100%;
  z-index: -1;
}
.section-home::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.02;
  z-index: -2;
}
.section-home .home-title {
  color: #19345a;
  font-size: 4rem;
}
.section-home .bg-1 {
  position: absolute;
  left: 100%;
  right: -100%;
  top: 0%;
  bottom: 62.54%;
  background: #40bcd1;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
@media (max-width: 991px) {
  .section-home {
    height: auto;
    padding: 90px 0;
  }
  .section-home .home-title {
    font-size: 3rem;
  }
  .section-home::after {
    background-size: contain;
    height: 100%;
  }
}

.section-entry-title {
  background-color: #ecf8fa;
  border-radius: 30px;
  display: inline-block;
  padding: 8px 18px;
  color: #19345a;
}
.section-entry-title.entry-title-2 {
  background-color: rgba(236, 248, 250, 0.2);
}

.section-brand {
  position: relative;
  z-index: 1;
}
.section-brand::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.02;
  z-index: -1;
}

.section-title {
  font-size: 3rem;
  color: #19345a;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-brand {
  background-color: #f0f3ef;
  position: relative;
}

.widget_item-brand .widget_item-image {
  text-align: center;
}
.widget_item-brand .widget_item-image img {
  height: 100px;
}

.section-about {
  background-color: #f6faf4;
}

.image-about img {
  border-radius: 0 0 380.72px 380.72px;
}

.widget_item-card {
  margin-bottom: 25px;
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
}
.widget_item-card .widget_item-category2 {
  background-color: #b1e4ec;
  color: #27737f;
  border-radius: 12px;
  padding: 8px 18px;
  display: inline-block;
}
.widget_item-card .widget_item-category {
  position: absolute;
  inset-inline-start: 13px;
  top: 13px;
  background-color: #047985;
  color: #fff;
  border-radius: 12px;
  padding: 5px 14px;
  z-index: 1;
}
.widget_item-card .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 73%;
  overflow: hidden;
  border-radius: 16px;
}
.widget_item-card .widget_item-image a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, #5fb446 -42.38%, rgba(23, 42, 48, 0) 110.09%), linear-gradient(0deg, rgba(23, 42, 48, 0.2), rgba(23, 42, 48, 0.2));
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.widget_item-card .widget_item-image a img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px 4px;
  transition: all 0.5s ease-in-out;
}
.widget_item-card .widget_item-title {
  height: 30px;
  overflow: hidden;
}
.widget_item-card .widget_item-title a {
  color: #262626;
}
.widget_item-card .widget_item-title a:hover {
  color: #A7D094;
}
.widget_item-card .widget_item-desc {
  height: 24px;
  overflow: hidden;
}
.widget_item-card .widget_item-info {
  border-top: 1px solid rgb(217, 231, 232);
}
.widget_item-card .widget_item-price {
  background-color: #f9f9f9;
  border-radius: 16px 2px;
  padding: 5px 10px;
}
.widget_item-card .widget_item-price h3 {
  height: 22px;
}
.widget_item-card .btn {
  padding: 11px 38px;
}
.widget_item-card.widget_2 .widget_item-desc {
  height: 50px;
}
.widget_item-card.widget_2 .btn-light-primary {
  color: #667F5A;
}
.widget_item-card:hover .widget_item-image a::before {
  opacity: 0.7;
}
.widget_item-card:hover .widget_item-image img {
  transform: scale(1.1);
}

.text-gray {
  color: #75797c;
}

.bg-section-blue {
  position: relative;
  z-index: 1;
  background-color: #19345a;
}
.bg-section-blue::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg.png);
  opacity: 0.02;
  filter: brightness(0) invert(1);
  z-index: -1;
}

.bg-section-gray {
  background-color: #f0f3ef;
  position: relative;
  z-index: 1;
}
.bg-section-gray::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg.png);
  opacity: 0.35;
  filter: brightness(0) invert(1);
  z-index: -1;
}

.widget_item-info-number {
  background-color: #f6faf4;
  border-radius: 16px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.widget_item-info-number .widget_item-number {
  font-size: 3rem;
  color: #19345a;
}
@media (max-width: 991px) {
  .widget_item-info-number .widget_item-number {
    font-size: 2rem;
  }
}

.section-header {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background: url(../images/bg-header.png);
  background-position: left bottom;
  background-size: auto;
  background-repeat: no-repeat;
  background-color: #0f2037;
}
@media (min-width: 992px) {
  .section-header {
    height: 600px;
    padding-top: 150px;
    margin-top: -114px;
  }
  .section-header .page-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .section-header {
    padding: 90px 0;
  }
  .section-header .page-title {
    font-size: 2rem;
  }
}
.section-header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg.png);
  opacity: 0.017;
  filter: brightness(0) invert(1);
  z-index: -1;
}

.warpper-content {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 36px 0 rgba(17, 17, 17, 0.0588235294);
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .warpper-content {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .warpper-content {
    padding: 20px;
  }
}

.bs-searchbox .form-control {
  height: 40px;
}

.payment {
  margin-bottom: 12px;
  border: 1px solid #f1f1f1;
  border-radius: 16px;
  padding: 24px;
}
.payment.is-open {
  background-color: #f8f9f9;
}
.payment.is-open .payment-images li {
  background-color: #fff;
}
.payment .payment-head label {
  cursor: pointer;
}
.payment input[type=radio] {
  display: none;
}
.payment .checkmak {
  border: 1px solid #f1f1f1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0px 0.941177px 1.88235px rgba(18, 18, 23, 0.05);
}
.payment input:checked + .checkmak {
  border: 2px solid #667f5a;
}
.payment input:checked + .checkmak::before {
  position: absolute;
  content: "";
  width: 7px;
  border-radius: 50%;
  height: 7px;
  background-color: #667f5a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.payment .payment-content {
  display: none;
}
.payment .payment-content .payment-content-iner {
  padding-top: 40px;
  border-top: 1px solid #f1f1f1;
  margin-top: 20px;
}
.payment .payment-content .form-payment .form-control {
  background-color: #fff;
  text-align: center;
  height: 40px;
  border: 0;
}
.payment .payment-images li {
  background-color: #f8f9f9;
  border-radius: 8px;
  width: 48px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment .payment-images li:not(:last-of-type) {
  margin-inline-end: 8px;
}

.payment-sadad {
  border: 1px solid #f1f1f1;
  border-radius: 10px;
}
.payment-sadad .payment-sadad-logo {
  background-color: #f6f6f6;
  padding: 8px 12px;
  border-start-start-radius: 10px;
  border-end-start-radius: 10px;
}
.payment-sadad .payment-sadad-button {
  background-color: #ef7620;
  width: 52px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-end-end-radius: 10px;
  border-start-end-radius: 10px;
  cursor: pointer;
}
.payment-sadad .payment-sadad-number {
  padding: 16px 13px 10px;
}

.widget_item-about {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 32px;
  gap: 24px;
  background: #ffffff;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  border-radius: 20px;
}

.form-search .form-control {
  height: 64px;
  background: #FFFFFF;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  border-radius: 20px;
}

.border-bottom {
  border-bottom: 1px solid #EBEDF0 !important;
}

.list-features li {
  position: relative;
  padding-inline-start: 20px;
  color: #262626;
  font-size: 20px;
  margin-bottom: 14px;
}
.list-features li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #262626;
  border-radius: 50%;
  inset-inline-start: 0;
  top: 13px;
}
.list-features li .text-gray {
  color: #676767;
}

.bg- {
  background-color: #F6FAF4;
}

.service-request {
  padding-bottom: 90px;
  background: url(../images/bg2.png);
  background-color: #E8EBEF;
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: left bottom;
  position: relative;
  z-index: 1;
}
.service-request::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.01;
}

.bootstrap-select .dropdown-toggle .filter-option {
  text-align: start;
}

.dropdown-toggle::after {
  border: 0 !important;
  content: "\f078" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #162c31;
  font-size: 10px;
  font-weight: bold;
}

.bootstrap-select {
  border-radius: 16px;
}

.bootstrap-select > .dropdown-toggle {
  background: #ffffff;
  border: 1px solid #f1f1f1;
  box-shadow: none;
  padding: 11px 15px;
  border-radius: 16px;
  font-family: "pingAR+LT-Regular";
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:hover,
.bootstrap-select .dropdown-toggle.show {
  outline: none !important;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: 0 !important;
  background-color: #fff !important;
  border-color: #f1f1f1 !important;
}

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

.dropdown-menu {
  border: 0;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  float: none;
  padding-inline-end: 15px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-inline-start: 15px;
}

.breadcrumb-item a {
  color: #fff;
  font-family: "pingAR+LT-bold";
}
.breadcrumb-item.active {
  color: #A1ACBB;
}

.form-checkbox {
  background: #F8F9F9;
  border-radius: 16px;
  padding: 16px;
}

.single-news-image img {
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.widget_item-support {
  padding: 24px 24px 32px;
  height: 188px;
  background: #FFFFFF;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  border-radius: 20px;
}
.widget_item-support .widget_item-price {
  background-color: #B1E4EC;
  color: #27737F;
  border-radius: 12px;
  padding: 8px 16px;
}
.widget_item-support .widget_item-content {
  border-top: 1px solid rgb(217, 231, 232);
}

.form-radio .radio {
  border: 1px solid #F1F1F1;
  border-radius: 16px;
  padding: 12px;
  padding-inline-start: 55px;
}

.widget_item-contact {
  border-radius: 12px;
  background-color: #F6FAF4;
  padding: 16px 16px 20px;
}
.widget_item-contact .widget_item-icon {
  background-color: #CCE4C1;
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.widget_item-contact .widget_item-link a {
  color: #19345A;
}

.btn-light-primary .icon {
  width: 24px;
  height: 24px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.btn-light-primary .icon img {
  max-height: 14px;
}

.text-light-primary {
  color: #676767;
}

.profile-image img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-info {
  background-color: #F8F9F9;
  padding: 24px;
  border-radius: 16px;
  margin-top: 40px;
}

.bootstrap-select.-light .btn-light {
  background-color: #F8F9F9;
}

.text-danger {
  color: #FF3B30 !important;
}

.text-warning {
  color: #FF9500 !important;
}

.text-success {
  color: #34C759 !important;
}

.dropzone {
  min-height: 150px;
  border: 1px dashed #E9EBEC;
  background: #F8F9F9;
  padding: 20px 20px;
  border-radius: 16px;
}

.profile-status-1 {
  background-color: #ECF8FA;
  border-radius: 12px;
  padding: 8px 16px;
  color: #27737F;
}

.profile-status-2 {
  background-color: #E8EBEF;
  border-radius: 12px;
  padding: 8px 16px;
  color: #19345A;
}

.section-login {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  background-color: #0F2037;
}
@media (min-width: 992px) {
  .section-login {
    min-height: 100vh;
    margin-top: -114px;
    padding-top: 170px;
  }
}
.section-login::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg.png);
  opacity: 0.017;
  filter: brightness(0) invert(1);
  z-index: -1;
}

.form-verify {
  display: flex;
  justify-content: center;
  direction: ltr;
}

.form-verify input {
  box-shadow: none;
  background-color: transparent;
  border: 1px solid #75797C;
  width: 64px;
  height: 64px;
  text-align: center;
  margin: 0px 12px;
  font-size: 20px;
  font-weight: 500;
}

.form-verify input.filled {
  border-color: #047985;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: unset;
  }
}
[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: rtl;
}

.toggle-password {
  cursor: pointer;
}

.form-login-content .form-verify {
  display: flex;
  justify-content: center;
  direction: ltr;
}

.form-login-content .form-verify input {
  box-shadow: none;
  background-color: transparent;
  border: 1px solid #75797c;
  width: 64px;
  height: 64px;
  text-align: center;
  margin: 0px 12px;
  font-size: 20px;
  font-weight: 500;
}
.form-login-content .form-verify input.filled {
  border-color: #047985;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.modal-backdrop.fade {
  background-color: #38414F;
  opacity: 0.64;
}

.text-underline {
  text-decoration: underline !important;
}

.select-phone .form-control {
  height: 35px;
}
.select-phone .dropdown-toggle .flag-icon {
  margin-inline-end: 10px;
}

.flag-icon {
  width: 28px;
  border-radius: 8px;
  height: 24px;
  margin-inline-start: 5px;
}

@media (min-width: 991px) {
  .swiper-wrapper-wrapper {
    margin-right: calc((100vw - 1280px) / 2);
  }
}
.icon-re-sync {
  width: 46px;
  height: 46px;
  background: linear-gradient(142.75deg, #047985 6.3%, #5fb446 93.63%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.border-top {
  border-top: 1px solid #F1F1F1 !important;
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 680px;
  }
}
.form-radio.active .radio {
  border-color: #B6D8A6;
  background-color: #F6FAF4;
}

.main-footer {
  background-color: #F0F3EF;
}
.main-footer .footer-top {
  padding: 60px 0 45px;
  border-bottom: 1px solid rgba(17, 26, 44, 0.1215686275);
}
@media (max-width: 991px) {
  .main-footer .footer-top {
    padding: 30px 0 25px;
  }
}
.main-footer .footer-bottom {
  padding: 30px 0;
}
.main-footer .link-footer a {
  color: #19345A;
  display: inline-block;
  font-size: 14px;
  font-family: "pingAR+LT-Bold";
  padding: 7px 8px;
  position: relative;
  transition: color 200ms;
}
.main-footer .link-footer a:hover {
  color: #A7D094 !important;
}

.checkout li {
  background-color: #fff;
  height: 27px;
  width: 55px;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout li:not(:last-of-type) {
  margin-inline-end: 12px;
}
.checkout li img {
  max-height: 22px;
}

.social-media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.social-media li:not(:last-of-type) {
  margin-inline-end: 30px;
}
.social-media li a {
  border-radius: 8px;
  width: 32px;
  height: 32px;
  color: #19345A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background-color 0.3s ease-in-out;
  background-color: #F6FAF4;
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
}
.social-media li a:hover {
  color: #fff;
  background-color: #A7D094;
}

.form .icon {
  inset-inline-start: 20px !important;
}
.form .form-control {
  background-color: #fff;
  border-radius: 24px 4px;
  padding-inline-start: 50px !important;
}
.form .btn-submit {
  background-color: #5FB446;
  color: #FFF;
  padding: 5px 55px 5px 25px;
  margin-inline-start: -18px;
  border-radius: 24px 0 0px 4px;
}

@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
  main {
    overflow: hidden;
  }
}
html[dir=ltr] .section-home::after, html[dir=ltr] .btn-light-primary .icon img {
  transform: scaleX(-1);
}/*# sourceMappingURL=main.css.map */


/* Custom */


       .upload-box {
    position: relative;
    min-height: 150px;
    border: 1px dashed #E9EBEC;
    background: #F8F9F9;
    padding: 20px 20px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    padding: 20px;
}

.upload-box input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
}

.upload-placeholder {
  font-size: 18px;
  background-color: transparent;
}

.upload-placeholder i {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 20px;
}
.file-item {
  background-color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.blue_color{
    color: #19345a;
}



.loader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    background-color: #FFF;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #A7D094;
  position: absolute;
  animation: animloader 2s linear infinite;
  opacity:0
}
.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
} 

.play-video{
  position: absolute;
  width: 75px;
  height: 75px;
  background: rgba(217, 217, 217, 0.34);
  backdrop-filter: blur(222px);
  border-radius: 37.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  z-index: 2;
}

.image-video img{
  border-radius: 20px;
}

.widget_item-document{
  background-color: #F8F9F9;
  border-radius: 16px;
  padding: 24px;
}
.widget_item-document .widget_item-action{
  border-top: 1px solid  #00000014;
  margin-top: 20px;
  padding-top: 20px;
}
.widget_item-document .widget_item-action a{
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
}
.widget_item-document .widget_item-action a:hover{
  background-color: #A7D094;
}
.widget_item-document .widget_item-action a:hover svg path{
  fill: #FFF;
}