@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");

* {
  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: #535857;
}

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

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

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

a {
  color: #016550;
}

a:hover {
  color: #016550;
}

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;
}

body {
  font-weight: 400;
  line-height: 1.7;
  background-color: #fff;
  color: #535857;
  overflow-x: hidden;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-semi-bold {
  font-weight: 600;
}

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

.form-control {
  height: 55px;
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 0px;
  padding: 10px 15px;
}

.form-control:focus {
  background-color: #F5F5F5;
  border-color: #016550 !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

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

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

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

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

.border-primary {
  border-color: #016550 !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 45px;
  border-radius: 30px;
  height: 56px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn .btn-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #016550;
  border-radius: 50%;
  top: 0;
  position: absolute;
  inset-inline-end: -40px;
  transition: background-color 0.2s ease-in-out !important;
}

.btn-primary {
  color: #016550;
  border-color: #016550 !important;
  background-color: #016550;
  color: #FFF;
  border-color: #EAFFF8;
  position: relative;
  z-index: 1;
  transition: background-color 0.2s ease-in-out !important;
}

.btn-primary:hover {
  background-color: #004e3d !important;
}

.btn-primary:hover .btn-icon {
  background-color: #004e3d !important;
}

.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: #016550 !important;
  border-color: #016550;
}

.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: #016550 !important;
  border-color: #016550;
}

.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: #016550 !important;
  border-color: #016550;
}

.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: #016550;
}

.btn-white:hover,
.btn-white:focus {
  color: #fff !important;
  border-color: #016550;
  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: #016550;
  background: transparent;
  border-color: #016550;
  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: #016550;
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #000 !important;
  border-color: #016550;
  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: #016550 !important;
  border-color: #016550;
}

.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #016550 !important;
  border-color: #016550;
}

@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: 16px;
  font-weight: 500;
  -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: 0px;
  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: #016550;
}

.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: #016550;
  width: 10px;
  height: 10px;
  border-radius: 0px;
  font-weight: bold;
  content: "";
  font-size: 12px;
  background-color: #016550;
}

@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 #016550;
}

@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: 20px 0;
  background-color: #102e2a;
}

.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 .btn-login {
  background-color: rgba(234, 255, 248, 0.0784313725);
  color: #fff;
}

.main-header .navbar .navbar-collapse .nav-link {
  cursor: pointer;
  display: inline-block;
  padding: 8px 0px;
  margin: 0px 12px;
  font-size: 18px;
  color: #fff;
  position: relative;
  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::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  transition: all 0.2s ease-in-out;
}

.main-header .navbar .navbar-collapse .nav-link.active::before {
  width: 100%;
}

.main-header .navbar .navbar-collapse .nav-item:hover .nav-link::before {
  width: 100%;
}

@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }

  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
}

.main-header.internal {
  background-color: rgba(11, 19, 18, 0.2);
  position: absolute;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
}

.navbar-toggler {
  border: 0;
  color: #fff;
}

.navbar-toggler:not(.collapsed) {
  color: #000;
}

.navbar-toggler {
  position: relative;
}

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

@media (max-width: 1250px) {
  .main-header .navbar .navbar-collapse .nav-link {
    font-size: 12px;
    margin: 0px 8px;
    color: #000;
  }

  .main-header .navbar .navbar-collapse .btn-login {
    background-color: rgba(118, 118, 118, 0.08);
    color: #555555;
  }

  .main-header .navbar .navbar-collapse .btn {
    height: 45px;
  }

  .main-header .navbar .navbar-collapse .btn .btn-icon {
    height: 45px;
    width: 45px;
  }
}

@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: url(../images/bg-home.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-home::after {
  position: absolute;
  content: "";
  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 {
  font-size: 5rem;
}

.section-home .home-text {
  font-size: 1.5rem;
}

@media (max-width: 991px) {
  .section-home {
    height: auto;
    padding: 90px 0;
  }

  .section-home .home-title {
    font-size: 3rem;
  }
}

.blend-luminosity {
  mix-blend-mode: luminosity;
}

.section-title {
  font-size: 3rem;
  color: #020807;
}

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

.bg-gray {
  background-color: #e5e5e5;
}

.list-widget-cards-2 [class^=col-] .widget_item-card {
  border: 1px solid #e5e5e5;
}

.widget_item-card {
  margin-bottom: 25px;
  background-color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
}

.widget_item-card .widget_item-head {
  position: relative;
}

.widget_item-card .widget_item-metadata {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #fbfbfb;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  width: 96%;
  right: 50%;
  transform: translateX(50%);
}

.widget_item-card .widget_item-metadata li {
  padding: 10px 10px 10px 0;
  border: 1px solid #E5E5E5;
  font-size: 12px;
  color: #535857;
  font-weight: 500;
}

.widget_item-card .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 74%;
}

.widget_item-card .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.widget_item-card .widget_item-title {
  font-size: 2.5rem;
}

@media (max-width: 991px) {
  .widget_item-card .widget_item-title {
    font-size: 2rem;
  }
}

.widget_item-card .widget_item-title-entry {
  font-size: 1.5rem;
}

.widget_item-card .widget_item-title-entry a {
  color: #000;
}

.widget_item-card .widget_item-title-entry a:hover {
  color: #016550;
}

.widget_item-card .widget_item-icon {
  height: 48px;
}

.widget_item-card .widget_item-icon img {
  max-height: 48px;
}

.swiper .swiper-slide:last-of-type .widget_item-card-2 {
  border-inline-end: 2px solid #e5e5e5;
}

.widget_item-card-2 {
  padding: 48px 40px;
  border-inline-start: 2px solid #e5e5e5;
  border-top: 2px solid #e5e5e5;
  border-bottom: 2px solid #e5e5e5;
  background-color: #fff;
}

@media (max-width: 991px) {
  .widget_item-card-2 {
    padding: 20px;
  }
}

.widget_item-card-2 .widget_item-image-brand {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget_item-card-2 .widget_item-image-brand img {
  max-height: 60px;
  filter: grayscale(100%);
}

.widget_item-card-2 .widget_item-progress {
  background-color: #fbfbfb;
  padding: 16px;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  width: 90%;
  right: 50%;
  transform: translateX(50%);
}

.widget_item-card-2 .widget_item-progress .progress {
  height: 8px;
}

.widget_item-card-2 .widget_item-progress .progress .progress-bar {
  background-color: #016550;
}

.widget_item-card-2 .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 74%;
}

.widget_item-card-2 .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.widget_item-card-2 .widget_item-image-avatar {
  position: relative;
  height: 0;
  padding-top: 100%;
}

.widget_item-card-2 .widget_item-image-avatar img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: luminosity;
}

.widget_item-card-2 .widget_item-title a {
  color: #000;
}

.widget_item-card-2 .widget_item-title a:hover {
  color: #016550;
}

.widget_item-card-2 .widget_item-desc {
  height: 48px;
  overflow: hidden;
}

.widget_item-card-2 .widget_item-amount {
  background-color: #fbfbfb;
  padding: 15px;
  border: 1px solid #e5e5e5;
}

.widget_item-card-2 .btn-donation a {
  padding: 2px 7px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  border-radius: 30px;
}

.widget_item-card-2 .btn-donation a:hover {
  color: #fff !important;
  background-color: #016550;
}

.widget_item-card-2:hover .widget_item-image-avatar img {
  mix-blend-mode: unset;
}

.widget_item-project {
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.widget_item-project .widget_item-title {
  font-size: 3.5rem;
}

.widget_item-project .widget_item-desc {
  color: #cdcdcd;
}

.widget_item-project::before {
  position: absolute;
  content: "";
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
}

@media (max-width: 991px) {
  .widget_item-project {
    padding: 50px 0;
    height: auto;
  }

  .widget_item-project .widget_item-title {
    font-size: 2.5rem;
  }
}

.swiper-action-project {
  position: absolute;
  bottom: 70px;
  inset-inline-end: 5%;
  z-index: 1;
}

.swiper-action {
  gap: 8px;
  display: flex;
  align-items: center;
}

.swiper-action .swiper-prev,
.swiper-action .swiper-next {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3215686275);
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}

.swiper-action .swiper-prev:hover,
.swiper-action .swiper-next:hover {
  background-color: #016550;
}

.section-intro-about {
  padding: 66px 0 120px;
  background: url(../images/bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-color: #02231f;
}

.section-intro-about .title {
  font-size: 5rem;
  line-height: 112px;
}

@media (max-width: 991px) {
  .section-intro-about .title {
    font-size: 2.5rem;
    line-height: 45px;
  }
}

.nav-page {
  margin-top: -58px;
  position: sticky;
  top: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}

.nav-page.active {
  background-color: #02231f;
}

.nav-page ul {
  display: flex;
  justify-content: center;
}

.nav-page ul li a {
  background: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  display: block;
  color: #fff;
  border-top: 1px solid #fff;
  border-inline-start: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px 40px;
  transition: background-color 0.2s ease-in-out;
}

.nav-page ul li a:hover,
.nav-page ul li a.active {
  background-color: #016550;
  border-color: #016550 !important;
}

.nav-page ul li:last-of-type a {
  border-inline-end: 1px solid #fff;
}

@media (max-width: 991px) {
  .nav-page ul {
    overflow-x: scroll;
  }

  .nav-page ul li {
    flex: 0 0 auto;
  }
}

.bg-2 {
  background: url(../images/bg2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.bg-2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.6;
  z-index: -1;
}

.widget_item-about {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.368627451);
  padding: 40px;
  min-height: 215px;
}

.widget_item-transfer .widget_item-transfer-content .widget_item-field-group {
  border: 1px solid #e5e5e5;
}

.widget_item-transfer .widget_item-transfer-content .widget_item-field-group:not(:last-of-type) {
  border-bottom: 0;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: unset;
  }
}

@media (min-width: 991px) {
  .swiper-wrapper-wrapper {
    margin-right: calc((100vw - 1280px) / 2);
  }
}

.nav-tabs {
  border: 0;
}

.nav-tabs .nav-item .nav-link {
  border: 0;
  border-inline-start: 2px solid #e5e5e5;
  border-top: 2px solid #e5e5e5;
  border-bottom: 2px solid #e5e5e5;
  border-radius: 0;
  color: #000;
  font-weight: 700;
}

.nav-tabs .nav-item .nav-link.active {
  background-color: #016550;
  color: #fff;
}

.nav-tabs .nav-item:last-of-type .nav-link {
  border-inline-end: 2px solid #e5e5e5;
}

.image-certificate {
  z-index: 1;
}

.image-certificate::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 0;
}

.image-certificate .image-certificate-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6980392157);
  padding: 15px 30px;
  cursor: pointer;
}

.swiper-news2 .widget_item-card-2 {
  border: 1px solid #e5e5e5;
}

.widget_item-media {
  position: relative;
}

.widget_item-media::before {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.widget_item-media .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 100%;
}

.widget_item-media .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.widget_item-media .widget_item-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 48px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transition-delay: 0.2s;
}

.widget_item-media:hover::before {
  visibility: visible;
  opacity: 1;
}

.widget_item-media:hover .widget_item-btn {
  opacity: 1;
  visibility: visible;
}

.swiper-button-next,
.swiper-button-prev {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.3215686275);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

.form-label {
  font-weight: 500;
  font-size: 18px;
  color: #000;
}

.form-input {
  position: relative;
}

.form-input .form-control {
  padding-inline-start: 60px;
}

.form-input .form-append {
  position: absolute;
  top: 50%;
  inset-inline-end: 10px;
  transform: translateY(-50%);
  font-weight: 600;
  color: #535857;
}

.select2-container {
  z-index: 9999;
}

.select2-container .select2-selection--single {
  border: 1px solid #E5E5E5;
  background-color: #fff;
  box-shadow: none;
  border-radius: 0px;
  height: 55px;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  background: url(../images/arrow-down.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 10px;
  right: auto;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #b1b4b0;
  font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #016550;
  color: white;
}

.input-icon-file {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 20px;
  z-index: 0;
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    --bs-modal-width: 1000px;
  }
}

.payment-image li {
  width: 55px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E5E5;
  padding: 4px;
}

.desc-list li {
  position: relative;
  padding-inline-start: 20px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: #020807;
}

.desc-list li::before {
  position: absolute;
  content: "";
  top: 12px;
  inset-inline-start: 0;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background-color: #000;
}

.widget_item-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg-light {
  background-color: #FBFBFB !important;
}

.accordion-button {
  font-weight: 700;
  color: #000;
  font-size: 1.5rem;
  padding: 30px;
  box-shadow: none !important;
  background-color: #FFF !important;
}

.accordion-button:not(.collapsed) {
  color: #016550;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(23%) sepia(86%) saturate(430%) hue-rotate(142deg) brightness(88%) contrast(92%);
}

.accordion-body {
  padding-top: 0;
}

.dropdown-menu {
  transition: all 0.2s ease-in-out;
}

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

.main-footer {
  background-color: #fff;
}

.main-footer .footer-top {
  padding: 60px 0 45px;
  border-bottom: 1px solid #E5E5E5;
}

@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;
  padding: 7px 8px;
  position: relative;
  transition: color 200ms;
}

.main-footer .link-footer a:hover {
  color: #016550 !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: #016550;
}

.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;
}


.veryfiy-input .form-control {
  width: 72px;
  height: 72px;
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  border: 1px solid #F8F9F9;
  box-shadow: 2.52568px 13.4703px 37.0432px rgba(7, 15, 66, 0.05);
  border-radius: 16px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}


@media (max-width: 991px) {
  html {
    font-size: 14px;
  }

  main {
    overflow: hidden;
  }
}

html[dir=ltr] .btn-primary .btn-icon {
  transform: scaleX(-1);
}

html[dir=ltr] .widget_item-card .widget_item-metadata li {
  padding: 10px 0 10px 10px;
}

/*# sourceMappingURL=main.css.map */