/*********************************************************************
*************************** Style CGC Rouls **************************
*********************************************************************/
@font-face {
  font-family: "myanmar";
  src: url("../fonts/myanmar-mn.ttf") format("truetype");
  font-weight: normal;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-color: #B48B2F;
  --second-color: #26247B;
  --opacity-color: #426FB6;
  --black-color: #000;
  --text-color: #959595;
  --background-gradient: linear-gradient(180deg, #26247B 29.82%, #426FB6 100%);
  --main-space: 100px;
  --main-transition: .4s;
}

body {
  font-family: "Montserrat", sans-serif;
}

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

p, address {
  margin: 0;
}

button {
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.container-lg {
  --bs-gutter-x: 32px;
}
@media (max-width: 575px) {
  .container-lg {
    --bs-gutter-x: 24px;
  }
}

/*********************************************************************
*************************** Style to CGC *****************************
*********************************************************************/
/***************** Start style components *******************/
/* main button component */
.main-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  color: white;
  padding: 16px 24px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  margin: auto;
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.main-button img {
  width: 24px;
}
.main-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 98px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#33B1E3), color-stop(105.47%, #426FB6));
  background: linear-gradient(90deg, #33B1E3 0%, #426FB6 105.47%);
  z-index: -1;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  border-radius: inherit;
}
.main-button:hover {
  color: white;
}
.main-button:hover::after {
  width: 100%;
}
.main-button.color {
  color: var(--second-color);
}

/* main heading component */
.page-header {
  margin: 120px 0;
}
@media (max-width: 991px) {
  .page-header {
    margin: 80px 0;
  }
}
@media (max-width: 575px) {
  .page-header {
    margin: 48px 0;
  }
}
.page-header .main-heading .heading {
  font-size: 37px;
}
@media (max-width: 575px) {
  .page-header .main-heading .heading {
    font-size: 26px;
  }
}

.feature-image img {
  width: 100%;
  border-radius: 25px;
}

.main-heading {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .main-heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .main-heading {
    margin-bottom: 30px;
  }
}
.main-heading .page-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--main-color);
  margin-bottom: 9px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .main-heading .page-title {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 6px;
  }
}
.main-heading .page-title .small-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}
.main-heading .heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: var(--second-color);
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .main-heading .heading {
    font-size: 21px;
    line-height: 30px;
  }
}
.main-heading .heading:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .main-heading .heading:not(:last-child) {
    margin-bottom: 16px;
  }
}
.main-heading .description {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--black-color);
}
.main-heading .description:not(:last-child) {
  margin-bottom: 8px;
}
.main-heading .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: rgba(38, 36, 123, 0.6980392157);
  max-width: 870px;
  margin: auto;
}
.main-heading .text:not(:last-child) {
  margin-bottom: 8px;
}
.main-heading .logo {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .main-heading .logo {
    margin-bottom: 16px;
  }
}
.main-heading .logo img {
  width: 124px;
}
@media (max-width: 575px) {
  .main-heading .logo img {
    width: 97px;
  }
}

.main-heading.large .heading {
  font-size: 37px;
}
@media (max-width: 575px) {
  .main-heading.large .heading {
    font-size: 26px;
  }
}

/* main popup component */
.modal-backdrop.show {
  background: rgba(0, 0, 0, 0.6509803922);
  opacity: 1;
}

.main-popup .modal-dialog {
  -webkit-box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
  max-width: calc(100% - 48px);
  width: 1080px;
  margin: 24px auto;
}
@media (max-width: 575px) {
  .main-popup .modal-dialog {
    max-width: calc(100% - 24px);
    margin: 12px auto;
    border-radius: 16px;
  }
}
.main-popup .modal-content {
  border-radius: 25px;
}
@media (max-width: 575px) {
  .main-popup .modal-content {
    border-radius: 16px;
  }
}
.main-popup .modal-header {
  padding: 0;
  border: none;
}
.main-popup .btn-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  z-index: 10;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B48B2F'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/9px auto no-repeat;
  padding: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .main-popup .btn-close {
    top: 24px;
    right: 24px;
  }
}
.main-popup .modal-body {
  padding: 80px 40px;
}
@media (max-width: 575px) {
  .main-popup .modal-body {
    padding: 32px 16px;
  }
}

/* success popup component */
.success-popup .modal-dialog {
  width: 800px;
}
.success-popup .modal-body {
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-image: url("../images/event-popup-line.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 575px) {
  .success-popup .modal-body {
    min-height: 450px;
    background-size: cover;
  }
}
.success-popup .image {
  width: 177px;
  height: 177px;
  border-radius: 50%;
  padding: 12px;
  border: 1px solid #EFF2FF;
  -webkit-box-shadow: 0 0 128px #EFF2FF;
          box-shadow: 0 0 128px #EFF2FF;
  margin-bottom: 48px;
}
@media (max-width: 575px) {
  .success-popup .image {
    width: 156px;
    height: 156px;
    margin-bottom: 24px;
  }
}
.success-popup .image figure {
  background: -webkit-gradient(linear, left bottom, left top, from(#EFF2FF), to(#EFF2FF)), -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(#FFFFFF));
  background: linear-gradient(0deg, #EFF2FF, #EFF2FF), linear-gradient(0deg, #FFFFFF, #FFFFFF);
  border: 1px solid #EFF2FF;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  margin: 0;
}
.success-popup .image img {
  width: 135px;
}
@media (max-width: 575px) {
  .success-popup .image img {
    width: 110px;
  }
}
.success-popup .heading {
  font-size: 37px;
  font-weight: 700;
  line-height: 40px;
  color: var(--second-color);
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .success-popup .heading {
    font-size: 32px;
  }
}
.success-popup .heading:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .success-popup .heading:not(:last-child) {
    margin-bottom: 10px;
  }
}
.success-popup .title {
  font-size: 23px;
  font-weight: 500;
  line-height: 28px;
  color: var(--main-color);
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .success-popup .title {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}
.success-popup .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-color);
}
@media (max-width: 575px) {
  .success-popup .description {
    font-size: 12px;
    line-height: 19px;
  }
}

/* main list component */
.main-list {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  color: var(--black-color);
  list-style-position: inside;
  padding: 0;
  margin-bottom: 0;
}
.main-list:not(ol) {
  list-style-type: disc;
}
.main-list li:not(:last-child) {
  margin-bottom: 10px;
}
.main-list ul, .main-list ol {
  padding-left: 30px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .main-list ul, .main-list ol {
    padding-left: 16px;
  }
}
.main-list ul li:not(:last-child), .main-list ol li:not(:last-child) {
  margin-bottom: 5px;
}

/* second list component */
.second-list {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  color: var(--black-color);
  list-style-position: inside;
  padding: 0;
  margin-bottom: 0;
}
.second-list:not(ol) {
  list-style-type: " - " !important;
}
.second-list li:not(:last-child) {
  margin-bottom: 10px;
}
.second-list ul, .second-list ol {
  padding-left: 30px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .second-list ul, .second-list ol {
    padding-left: 16px;
  }
}
.second-list ul li:not(:last-child), .second-list ol li:not(:last-child) {
  margin-bottom: 5px;
}

/* Team member component */
.team-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px 75px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 991px) {
  .team-box {
    gap: 60px 40px;
  }
}

.team-member {
  width: calc((100% - 225px) / 4);
  position: relative;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .team-member {
    width: calc((100% - 150px) / 3);
  }
}
@media (max-width: 991px) {
  .team-member {
    width: calc((100% - 80px) / 3);
  }
}
@media (max-width: 767px) {
  .team-member {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 575px) {
  .team-member {
    width: 100%;
  }
}
.team-member::before {
  content: "\f06e";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  width: 0;
  height: 0;
  overflow: hidden;
}
.team-member:hover::before {
  width: 45px;
  height: 45px;
}
.team-member::after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(38.83%, rgba(0, 0, 0, 0)), color-stop(118.83%, #000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.83%, #000000 118.83%);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 15px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.team-member:hover::after {
  width: 100%;
  height: 100%;
}
.team-member .image {
  border-radius: 15px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(38.83%, rgba(0, 0, 0, 0)), color-stop(118.83%, #000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.83%, #000000 118.83%);
}
.team-member .image img {
  width: 100%;
  max-height: 300px;
  border-radius: 15px;
}
.team-member .content {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -22px;
  z-index: 1;
  width: 100%;
  color: white;
}
.team-member .content .name {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.team-member .content .title {
  width: calc(100% - 32px);
  margin: auto;
  border-radius: 10px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  background-color: var(--main-color);
  padding: 2px 8px;
}

/* box between component */
.box-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* box margin component */
.box-margin {
  margin: 120px 0;
}
@media (max-width: 991px) {
  .box-margin {
    margin: 80px 0;
  }
}
@media (max-width: 575px) {
  .box-margin {
    margin: 48px 0;
  }
}

.box-radius {
  border-radius: 25px;
}
@media (max-width: 575px) {
  .box-radius {
    border-radius: 15px;
  }
}

/***************** End style components *******************/
/*********************** Start style Header ***************************/
#header {
  position: relative;
}
#header::after {
  content: url("../images/header-line-background.webp");
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -1;
}
#header .container-lg {
  height: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #E4E4E4;
}
@media (max-width: 575px) {
  #header .container-lg {
    height: 124px;
  }
}
#header .navbar {
  padding: 0 48px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1399px) {
  #header .navbar {
    padding: 0 32px;
  }
}
@media (max-width: 1199px) {
  #header .navbar {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #header .navbar {
    padding: 0 16px;
  }
}
#header .navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (max-width: 991px) {
  #header .navbar-container {
    gap: 12px;
  }
}
#header .navbar-brand img {
  width: 124px;
}
@media (max-width: 575px) {
  #header .navbar-brand img {
    width: 97px;
  }
}
#header .navbar-nav {
  gap: 30px;
}
@media (max-width: 1199px) {
  #header .navbar-nav {
    gap: 12px;
  }
}
@media (max-width: 991px) {
  #header .navbar-nav {
    padding: 16px 0;
  }
}
#header .navbar-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 8px 0;
  position: relative;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  color: var(--second-color);
}
@media (max-width: 991px) {
  #header .navbar-nav .nav-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: white;
    padding: 8px 24px;
  }
}
#header .navbar-nav .nav-item:hover {
  color: var(--main-color);
}
#header .navbar-nav .nav-item > .icon {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  font-size: 12px;
  padding: 2px 8px;
}
#header .navbar-nav .nav-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: inherit;
  text-transform: capitalize;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  position: relative;
  padding: 0;
}
@media (max-width: 991px) {
  #header .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 26px;
  }
}
#header .navbar-nav .nav-link.active, #header .navbar-nav .nav-link:hover {
  color: var(--main-color);
}
#header .navbar-nav .nav-link.active + .icon, #header .navbar-nav .nav-link:hover + .icon {
  color: var(--main-color);
}
#header .navbar-nav .nav-link.active::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main-color);
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
@media (max-width: 991px) {
  #header .navbar-nav .nav-link.active::after {
    display: none;
  }
}
@media (min-width: 992px) {
  #header .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    top: 100%;
  }
  #header .navbar-nav .dropend:hover > .dropdown-menu {
    display: block;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    top: 0;
    right: 0;
    left: auto;
  }
}
#header .sub-menue {
  width: 190px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 15px 0;
  border-radius: 5px;
  -webkit-box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
  border: 1px solid rgba(180, 139, 47, 0.2784313725);
}
@media (max-width: 991px) {
  #header .sub-menue {
    position: unset !important;
    display: unset !important;
    width: 100%;
    background-color: transparent;
    border: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    -webkit-transition: var(--main-transition);
    transition: var(--main-transition);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #header .sub-menue.show {
    height: 100%;
  }
}
#header .sub-menue .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 15px;
  color: rgba(38, 36, 123, 0.368627451);
  white-space: wrap;
  background-color: transparent;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  #header .sub-menue .dropdown-item {
    color: white;
  }
}
#header .sub-menue .dropdown-item:hover {
  color: var(--main-color);
}
#header .sub-menue .dropdown-item svg {
  font-size: 15px;
  color: inherit;
  padding: 2px 8px;
}
@media (max-width: 991px) {
  #header .sub-menue .dropdown-item svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    font-size: 12px;
  }
}
#header .sub-menue .dropdown-link {
  white-space: wrap;
  background-color: transparent;
  font-size: 11px;
  font-weight: 500;
  line-height: 20px;
  color: inherit;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#header .switch-lang img,
#header .search-button img {
  width: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#header .switch-lang img:hover,
#header .search-button img:hover {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@media (max-width: 991px) {
  #header .switch-lang img,
  #header .search-button img {
    width: 24px;
  }
}
#header .navbar-toggler {
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#header .navbar-toggler img {
  width: 24px;
}
@media (max-width: 991px) {
  #header .offcanvas {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(29.82%, #3B4F93), to(#243058));
    background: linear-gradient(180deg, #3B4F93 29.82%, #243058 100%);
  }
  #header .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2901960784);
  }
  #header .offcanvas-header button {
    padding: 8px 12px;
    font-size: 30px;
    color: white;
    -webkit-transition: var(--main-transition);
    transition: var(--main-transition);
  }
  #header .offcanvas-header button:hover {
    opacity: 0.7;
  }
}
@media (max-width: 575px) {
  #header .offcanvas {
    width: 100%;
  }
}

.search-dropdown {
  padding: 0;
  border: none;
  -webkit-box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
  width: 320px;
  margin-top: 8px !important;
}
@media (max-width: 575px) {
  .search-dropdown {
    width: 230px;
    margin-top: 12px !important;
  }
}
.search-dropdown form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-dropdown input {
  padding: 12px 16px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black-color);
  caret-color: var(--main-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.search-dropdown input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}
.search-dropdown input::-webkit-input-placeholder {
  color: var(--main-color);
}
.search-dropdown input::-moz-placeholder {
  color: var(--main-color);
}
.search-dropdown input:-ms-input-placeholder {
  color: var(--main-color);
}
.search-dropdown input::-ms-input-placeholder {
  color: var(--main-color);
}
.search-dropdown input::placeholder {
  color: var(--main-color);
}
.search-dropdown button {
  padding: 12px 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*********************** End style Header ***************************/
/*********************** Start style Footer **************************/
#footer {
  padding: 40px 0;
}
@media (max-width: 575px) {
  #footer {
    padding: 20px 0;
  }
}
#footer .footer-box {
  background-image: url("../images/footer-background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--second-color);
  color: white;
  padding: 160px 100px 80px;
  border-radius: 25px;
}
@media (max-width: 1199px) {
  #footer .footer-box {
    padding: 96px 56px 48px;
  }
}
@media (max-width: 991px) {
  #footer .footer-box {
    padding: 80px 32px 40px;
  }
}
@media (max-width: 767px) {
  #footer .footer-box {
    padding: 80px 32px 40px;
  }
}
@media (max-width: 575px) {
  #footer .footer-box {
    padding: 48px 16px 24px;
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  #footer .box-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#footer .footer-heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  #footer .footer-heading {
    margin-bottom: 32px;
  }
}
@media (max-width: 575px) {
  #footer .footer-heading {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 24px;
  }
}
#footer .image img {
  width: 124px;
}
@media (max-width: 575px) {
  #footer .image img {
    width: 97px;
  }
}
#footer .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  #footer .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
#footer .contact-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
#footer .contact-methods li:not(:last-child) {
  position: relative;
}
#footer .contact-methods li:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  right: -21px;
}
#footer .contact-methods a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: white;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  #footer .contact-methods a {
    font-size: 14px;
    line-height: 17px;
  }
}
#footer .contact-methods a:hover {
  color: var(--main-color);
}
#footer .contact-methods a svg {
  color: white;
  font-size: 20px;
}
#footer .main-button {
  margin-bottom: 150px;
}
@media (max-width: 1199px) {
  #footer .main-button {
    margin-bottom: 96px;
  }
}
@media (max-width: 991px) {
  #footer .main-button {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  #footer .main-button {
    margin-bottom: 32px;
  }
}
@media (max-width: 575px) {
  #footer .main-button {
    margin-bottom: 24px;
  }
}

.social-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.social-footer .link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.social-footer .link::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  border: 2px solid #fff;
  border-radius: inherit;
}
.social-footer .link:hover::after {
  background-color: #fff;
}
.social-footer .link svg {
  font-size: 15px;
  color: white;
  opacity: 1;
}

/*********************** End style Footer ***************************/
/*********************************************************************
*************************** Style to Home ****************************
*********************************************************************/
.home-team-box {
  background-image: url(../images/team-home-background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  border-radius: 25px;
  padding: 32px;
}
@media (max-width: 991px) {
  .home-team-box {
    padding: 16px;
    margin: 16px;
    max-width: calc(100% - 32px);
  }
}
@media (max-width: 575px) {
  .home-team-box {
    padding: 12px;
    margin: 12px;
    max-width: calc(100% - 24px);
    border-radius: 15px;
  }
}

#chartdiv {
  width: 100%;
  height: 400px;
}

/******************** Start style Home Header **********************/
#header.home-header {
  position: absolute;
  top: 26px;
  left: 0;
  width: calc(100% - 20px);
  z-index: 100;
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 575px) {
  #header.home-header {
    top: 22px;
  }
}
#header.home-header::after {
  display: none;
}
#header.home-header .container-lg {
  height: auto;
  border: none;
}
@media (min-width: 992px) {
  #header.home-header .container-lg {
    padding: 0 10px;
  }
}
#header.home-header .navbar {
  background-color: white;
  border-radius: 20px;
  padding: 16px 32px;
}
@media (max-width: 575px) {
  #header.home-header .navbar {
    padding: 16px 20px;
  }
}

/******************** End style Home Header ************************/
/******************** Start style Home hero **********************/
.home-hero {
  margin: 16px;
}
@media (max-width: 575px) {
  .home-hero {
    margin: 12px;
  }
}
.home-hero .container-lg {
  padding: 0;
}

.home-slider {
  width: 100%;
  height: calc(100vh - 32px);
  min-height: 450px;
  max-height: 750px;
  border-radius: 25px;
  position: relative;
}
@media (max-width: 575px) {
  .home-slider {
    height: calc(100vh - 24px);
    border-radius: 16px;
  }
}
.home-slider .hero-background {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 25px;
}
@media (max-width: 575px) {
  .home-slider .hero-background {
    border-radius: 16px;
  }
}
.home-slider .hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: inherit;
}
.home-slider .hero-background img,
.home-slider .hero-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: inherit;
}
.home-slider .swiper-slide {
  position: relative;
}
.home-slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.home-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 25px;
}
@media (max-width: 575px) {
  .home-slider .swiper-slide img {
    border-radius: 16px;
  }
}
.home-slider .swiper-pagination {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .home-slider .swiper-pagination {
    margin-bottom: 40px;
  }
}
.home-slider .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 5px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 3px;
}
.home-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  background-color: #fff;
}

.hero-content {
  color: white;
  text-align: center;
  max-width: 980px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 12px;
}
@media (max-width: 991px) {
  .hero-content {
    max-width: 720px;
  }
}
.hero-content .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .hero-content .title {
    font-size: 14px;
    line-height: 20px;
  }
}
.hero-content .heading {
  font-size: 37px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 55px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-content .heading {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (max-width: 575px) {
  .hero-content .heading {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 40px;
  }
}
.hero-content .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-content .options li:not(:last-child) {
  position: relative;
}
.hero-content .options li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--main-color);
  position: absolute;
  right: -15px;
  top: 0;
}
.hero-content .options .link {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  text-transform: capitalize;
  cursor: pointer;
  padding: 8px 4px;
}
@media (max-width: 575px) {
  .hero-content .options .link {
    font-size: 14px;
    line-height: 17px;
    gap: 8px;
  }
}
.hero-content .options .link:hover {
  opacity: 0.7;
}
.hero-content .options .link .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  background-color: var(--second-color);
  color: white;
}
@media (max-width: 575px) {
  .hero-content .options .link .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/******************** End style Home hero ************************/

/******************** Start style Timeline **********************/
.timeline-container {
  overflow: hidden;
  background-image: url(../images/history-background.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  position: relative;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 575px) {
  .timeline-container {
    border-radius: 15px;
  }
}

.timeline-box {
  min-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 750px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 96px;
  padding: 72px 96px;
}
@media (max-width: 575px) {
  .timeline-box {
    height: 600px;
    gap: 32px;
    padding: 32px;
  }
}
.timeline-box::after {
  content: "";
  background-image: url(../images/chart.png);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: contain;
  background-attachment: fixed;
  width: 100%;
  height: 155px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 575px) {
  .timeline-box::after {
    height: 100px;
  }
}

.timeline-control .prev,
.timeline-control .next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.timeline-control .prev:hover,
.timeline-control .next:hover {
  opacity: 1;
}
@media (max-width: 575px) {
  .timeline-control .prev,
  .timeline-control .next {
    width: 40px;
    height: 40px;
  }
}
.timeline-control .prev {
  left: 24px;
}
@media (max-width: 575px) {
  .timeline-control .prev {
    left: 16px;
  }
}
.timeline-control .next {
  right: 24px;
}
@media (max-width: 575px) {
  .timeline-control .next {
    right: 16px;
  }
}
.timeline-control svg {
  font-size: 27px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .timeline-control svg {
    font-size: 24px;
  }
}

.timeline {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 16px 16px;
  height: 210px;
  max-width: 301px;
}
.timeline:nth-child(1), .timeline:nth-child(5), .timeline.large-bottom {
  margin-top: 64px;
}
@media (max-width: 575px) {
  .timeline:nth-child(1), .timeline:nth-child(5), .timeline.large-bottom {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .timeline:nth-child(5) {
    margin-top: 0;
  }
  .timeline:nth-child(3) {
    margin-top: 40px;
  }
}
.timeline::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #E7E7E7;
  position: absolute;
  left: 0;
  top: 0;
}
.timeline::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #E7E7E7;
  background-color: transparent;
  position: absolute;
  left: 1.5px;
  bottom: -1px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.timeline .date {
  font-size: 22px;
  font-weight: 600;
  line-height: 27px;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline .heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: white;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.timeline .description {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6901960784);
  max-width: 300px;
}
.timeline:nth-child(even) {
  padding: 16px 16px 0;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  align-self: flex-end;
}
.timeline:nth-child(even)::after {
  top: -1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/******************** End style Timeline ************************/
/******************** Start style results **********************/
.results {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(49.51%, rgba(255, 255, 255, 0.31)), to(#FFFFFF));
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.31) 49.51%, #FFFFFF 100%);
}
.results::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../images/results-background.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.6;
}

.results-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 80px;
  max-width: 1050px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: auto;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .results-box {
    gap: 40px 50px;
  }
}
@media (max-width: 991px) {
  .results-box {
    gap: 30px;
  }
}

.result-feature {
  width: calc((100% - 160px) / 3);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
  padding: 50px 32px;
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  position: relative;
}
@media (max-width: 1199px) {
  .result-feature {
    padding: 40px 24px;
  }
}
@media (max-width: 767px) {
  .result-feature {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 575px) {
  .result-feature {
    width: 100%;
  }
}
.result-feature::before, .result-feature::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.result-feature::before {
  background: linear-gradient(260.87deg, #121123 -4.57%, #26247B 99.03%);
  border-radius: inherit;
}
.result-feature::after {
  background-image: url(../images/features-second-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 190px;
  z-index: 1;
}
.result-feature:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.result-feature:hover::before, .result-feature:hover::after {
  opacity: 1;
}
.result-feature:hover .description {
  color: white;
}
.result-feature:hover .icon svg path {
  fill: #fff;
}
.result-feature > * {
  position: relative;
  z-index: 2;
}
.result-feature .icon {
  margin-bottom: 25px;
}
.result-feature .icon svg {
  width: 50px;
}
.result-feature .heading {
  font-size: 37px;
  font-weight: 700;
  line-height: 46px;
  color: var(--main-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .result-feature .heading {
    font-size: 29px;
    line-height: 40px;
  }
}
.result-feature .description {
  font-size: 19px;
  font-weight: 500;
  line-height: 27px;
  color: var(--black-color);
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .result-feature .description {
    font-size: 17px;
    line-height: 26px;
  }
}

/******************** End style results ************************/
/******************** Start style portfolio features **********************/
.portfolio-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px 32px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 575px) {
  .portfolio-box {
    gap: 48px;
  }
}

.portfolio-feat .heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: var(--main-color);
  margin-top: 24px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .portfolio-feat .heading {
    margin-top: 16px;
  }
}

.progress {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  background-color: #F7F8FA;
}
.progress .inner-circle {
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 50%;
  background-color: #fff;
}
.progress .content {
  position: relative;
  text-align: center;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.progress .percentage {
  position: relative;
  font-size: 37px;
  font-weight: 700;
  line-height: 40px;
  color: var(--main-color);
}
.progress .icon {
  margin-bottom: 16px;
}
.progress .icon svg {
  font-size: 32px;
  color: var(--second-color);
}

/******************** End style portfolio features ************************/
/******************** Start style beneficiaries **********************/
.beneficiaries-box {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(29.82%, #26247B), to(#426FB6));
  background: linear-gradient(180deg, #26247B 29.82%, #426FB6 100%);
  border-radius: 25px;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media (max-width: 991px) {
  .beneficiaries-box {
    min-height: 350px;
  }
}
@media (max-width: 575px) {
  .beneficiaries-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
}
.beneficiaries-box .content {
  padding: 50px;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 991px) {
  .beneficiaries-box .content {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .beneficiaries-box .content {
    text-align: center;
    padding-top: 40px;
  }
}
.beneficiaries-box .content .number {
  font-size: 37px;
  font-weight: 700;
  line-height: 48px;
  color: var(--main-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .beneficiaries-box .content .number {
    font-size: 32px;
    line-height: 40px;
  }
}
.beneficiaries-box .content .heading {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .beneficiaries-box .content .heading {
    font-size: 24px;
    line-height: 32px;
  }
}
.beneficiaries-box .image {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 575px) {
  .beneficiaries-box .image {
    padding-left: 20px;
  }
}
.beneficiaries-box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

/******************** End style beneficiaries ************************/
/******************** Start style Home about **********************/
.home-about-us {
  background: -webkit-gradient(linear, left top, right top, color-stop(29.82%, #3B4F93), to(#243058));
  background: linear-gradient(90deg, #3B4F93 29.82%, #243058 100%);
  padding: 150px 0 80px;
  position: relative;
}
@media (max-width: 991px) {
  .home-about-us {
    padding: 100px 0 60px;
  }
}
@media (max-width: 575px) {
  .home-about-us {
    padding: 80px 0 50px;
  }
}
.home-about-us::after {
  content: "";
  position: absolute;
  top: 80px;
  right: 0;
  width: calc(50% + 440px);
  height: calc(100% - 80px);
  background-color: white;
}
@media (max-width: 1399px) {
  .home-about-us::after {
    width: calc(50% + 360px);
  }
}
@media (max-width: 1199px) {
  .home-about-us::after {
    width: calc(50% + 300px);
  }
}
@media (max-width: 991px) {
  .home-about-us::after {
    width: calc(100% - 160px);
    height: calc(100% - 60px);
    top: 60px;
  }
}
@media (max-width: 767px) {
  .home-about-us::after {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .home-about-us::after {
    top: 50px;
    height: calc(100% - 48px);
  }
}

.about-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  counter-increment: about;
  position: relative;
  z-index: 1;
  height: 350px;
}
@media (max-width: 767px) {
  .about-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.about-section:not(:last-of-type) {
  margin-bottom: 24px;
}
.about-section .image {
  width: 440px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1199px) {
  .about-section .image {
    width: 340px;
  }
}
@media (max-width: 991px) {
  .about-section .image {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .about-section .image {
    width: 100%;
  }
}
.about-section .image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
}
.about-section .content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 40px;
  border-radius: 15px;
  background: #FFFFFF;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
  border-radius: 15px;
}
@media (max-width: 991px) {
  .about-section .content {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .about-section .content {
    margin: -60px 24px 0;
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .about-section .content {
    margin: -40px 12px 0;
    padding: 20px;
  }
}
.about-section .content::before {
  content: counter(about);
  font-size: 300px;
  font-weight: 600;
  line-height: 1.2;
  color: #F0F0F0;
  font-family: myanmar;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  vertical-align: middle;
}
@media (max-width: 1199px) {
  .about-section .content::before {
    font-size: 240px;
  }
}
@media (max-width: 991px) {
  .about-section .content::before {
    font-size: 200px;
  }
}
.about-section .main-heading {
  position: relative;
  z-index: 1;
}
.about-section .main-heading .heading {
  font-size: 37px;
}
@media (max-width: 991px) {
  .about-section .main-heading .heading {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
.about-section .main-heading .description {
  font-size: 16px;
  line-height: 25px;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .about-section .main-heading .description {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (min-width: 768px) {
  .about-section:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.about-section:nth-of-type(even) .content {
  background: -webkit-gradient(linear, right top, left top, color-stop(29.82%, #3B4F93), to(#243058));
  background: linear-gradient(270deg, #3B4F93 29.82%, #243058 100%);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.about-section:nth-of-type(even) .content::before {
  color: rgba(255, 255, 255, 0.1490196078);
}
.about-section:nth-of-type(even) .main-heading .heading,
.about-section:nth-of-type(even) .main-heading .description {
  color: white;
}

/******************** End style Home about ************************/
/*********************************************************************
************************* Style to About us **************************
*********************************************************************/
/******************** Start style about **********************/
.main-about-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  counter-increment: about;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .main-about-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}
.main-about-section:not(:last-of-type) {
  margin-bottom: 24px;
}
.main-about-section .image {
  width: 440px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .main-about-section .image {
    border-radius: 16px 16px 0 0;
  }
}
@media (max-width: 1199px) {
  .main-about-section .image {
    width: 340px;
  }
}
@media (max-width: 991px) {
  .main-about-section .image {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .main-about-section .image {
    width: 100%;
  }
}
.main-about-section .image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .main-about-section .image img {
    border-radius: 16px 16px 0 0;
  }
}
.main-about-section .content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 100px;
  border-radius: 15px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 15px;
  background: linear-gradient(45deg, #3B4F93 29.82%, #243058 100%);
}
@media (max-width: 1399px) {
  .main-about-section .content {
    padding: 60px;
  }
}
@media (max-width: 1199px) {
  .main-about-section .content {
    padding: 60px;
  }
}
@media (max-width: 991px) {
  .main-about-section .content {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .main-about-section .content {
    margin-top: -30px;
    padding: 40px;
    border-radius: 0 0 16px 16px;
    background-color: white;
  }
}
@media (max-width: 575px) {
  .main-about-section .content {
    margin-top: -20px;
    padding: 24px;
  }
}
.main-about-section .main-heading {
  position: relative;
  z-index: 1;
  /*color: white;*/
}
.main-about-section .main-heading .heading {
  font-size: 37px;
  color: white;
}
@media (max-width: 991px) {
  .main-about-section .main-heading .heading {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
.main-about-section .main-heading .description {
  font-size: 16px;
  line-height: 25px;
  color: white;
}
@media (max-width: 991px) {
  .main-about-section .main-heading .description {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (min-width: 768px) {
  .main-about-section:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.main-about-section:nth-of-type(even) .image {
  -webkit-box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
}
.main-about-section:nth-of-type(even) .content {
  background: #FFFFFF;
  -webkit-box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 13px 14px 15px -1px rgba(0, 0, 0, 0.0901960784);
}
.main-about-section:nth-of-type(even) .main-heading .heading {
  color: var(--second-color);
}
.main-about-section:nth-of-type(even) .main-heading .description {
  color: #A0A0A0;
}

/******************** End style about ************************/
/******************** Start style features **********************/
.about-features {
  border-top: 2px dashed #C1C1C1;
  border-bottom: 2px dashed #C1C1C1;
}
@media (max-width: 767px) {
  .about-features {
    border: none;
  }
}
.about-features .features-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .about-features .features-box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-features .feature {
  padding: 10px;
  height: 320px;
}
@media (max-width: 1199px) {
  .about-features .feature {
    height: 280px;
  }
}
@media (max-width: 991px) {
  .about-features .feature {
    padding: 6px;
  }
}
@media (max-width: 767px) {
  .about-features .feature {
    padding: 0;
  }
  .about-features .feature:not(:last-child) {
    margin-bottom: 16px;
  }
}
.about-features .feature .content {
  padding: 24px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-image: url(../images/features-main-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991px) {
  .about-features .feature .content {
    padding: 12px;
  }
}
.about-features .feature .heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: var(--second-color);
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .about-features .feature .heading {
    font-size: 24px;
  }
}
.about-features .feature .heading:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .about-features .feature .heading:not(:last-child) {
    margin-bottom: 10px;
  }
}
.about-features .feature p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .about-features .feature p {
    font-size: 16px;
    line-height: 22px;
  }
}
.about-features .feature.spacial {
  border-left: 2px dashed #C1C1C1;
  border-right: 2px dashed #C1C1C1;
}
@media (max-width: 767px) {
  .about-features .feature.spacial {
    border: none;
  }
}
.about-features .feature.spacial .content {
  background: linear-gradient(281.62deg, #26247B -23.35%, #426FB6 123.68%);
  position: relative;
}
.about-features .feature.spacial .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/features-second-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.about-features .feature.spacial .heading,
.about-features .feature.spacial p {
  position: relative;
  z-index: 1;
  color: white;
}

/******************** End style features ************************/
/******************** Start style shareholders **********************/
.shareholders-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shareholders-box .image {
  width: 20%;
  text-align: center;
  padding: 24px;
  border-right: 2px dashed #C1C1C1;
  border-bottom: 2px dashed #C1C1C1;
}
.shareholders-box .image:nth-of-type(5), .shareholders-box .image:nth-of-type(10) {
  border-right: none;
}
.shareholders-box .image:nth-of-type(n+6) {
  border-bottom: none;
}
@media (max-width: 991px) {
  .shareholders-box .image {
    width: 33.3333333333%;
  }
  .shareholders-box .image:nth-of-type(5) {
    border-right: 2px dashed #C1C1C1;
  }
  .shareholders-box .image:nth-of-type(n+6) {
    border-bottom: 2px dashed #C1C1C1;
  }
  .shareholders-box .image:nth-of-type(3), .shareholders-box .image:nth-of-type(6), .shareholders-box .image:nth-of-type(9) {
    border-right: none;
  }
  .shareholders-box .image:nth-of-type(10) {
    border-bottom: none;
    border-left: 2px dashed #C1C1C1;
    border-right: 2px dashed #C1C1C1;
  }
}
@media (max-width: 575px) {
  .shareholders-box .image {
    width: 50%;
    padding: 16px;
  }
  .shareholders-box .image:nth-of-type(3), .shareholders-box .image:nth-of-type(6), .shareholders-box .image:nth-of-type(9) {
    border-right: 2px dashed #C1C1C1;
  }
  .shareholders-box .image:nth-of-type(2), .shareholders-box .image:nth-of-type(4), .shareholders-box .image:nth-of-type(6), .shareholders-box .image:nth-of-type(8), .shareholders-box .image:nth-of-type(10) {
    border-right: none;
    border-left: none;
  }
  .shareholders-box .image:nth-of-type(9), .shareholders-box .image:nth-of-type(10) {
    border-bottom: 0;
  }
}
.shareholders-box .image img {
  width: 200px;
}

/******************** End style shareholders ************************/
/*********************************************************************
************************ Style to contact us *************************
*********************************************************************/
.map {
  width: 100%;
  height: 400px;
}
@media (max-width: 575px) {
  .map {
    height: 300px;
  }
}

/****************** Start style contacts-methods ********************/
.contacts-methods {
  margin-top: -64px;
  position: relative;
  z-index: 1;
}
.contacts-methods .methods-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 64px;
}
@media (max-width: 1199px) {
  .contacts-methods .methods-box {
    gap: 24px;
    padding: 0 16px;
  }
}
@media (max-width: 991px) {
  .contacts-methods .methods-box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .contacts-methods .methods-box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

.contact-section {
  background-color: white;
  -webkit-box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
  border-radius: 25px;
  padding: 32px;
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.contact-section:hover {
  -webkit-box-shadow: 13px 14px 35px -1px rgba(0, 0, 0, 0.1764705882);
          box-shadow: 13px 14px 35px -1px rgba(0, 0, 0, 0.1764705882);
}
.contact-section .icon {
  font-size: 40px;
  color: var(--main-color);
  margin-bottom: 20px;
}
.contact-section .heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--main-color);
  text-transform: uppercase;
}
.contact-section .heading:not(:last-child) {
  margin-bottom: 10px;
}
.contact-section .link {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--second-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.contact-section .link:hover {
  color: var(--text-color);
}
.contact-section .link:not(:last-child) {
  margin-bottom: 10px;
}
.contact-section p.link:hover {
  color: white;
}
.contact-section.special {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(29.82%, #26247B), to(#426FB6));
  background: linear-gradient(180deg, #26247B 29.82%, #426FB6 100%);
  -webkit-box-shadow: 13px 14px 25px -1px rgba(38, 36, 123, 0.1019607843);
          box-shadow: 13px 14px 25px -1px rgba(38, 36, 123, 0.1019607843);
}
.contact-section.special:hover {
  -webkit-box-shadow: 13px 14px 35px -1px rgba(37, 36, 123, 0.2117647059);
          box-shadow: 13px 14px 35px -1px rgba(37, 36, 123, 0.2117647059);
}
@media (min-width: 576px) and (max-width: 991px) {
  .contact-section.special {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
}
.contact-section.special .icon,
.contact-section.special .link {
  color: white;
}
.contact-section.special .link.phone-contactus {
  direction: ltr;
}
.contact-section.special .link:hover {
  color: var(--text-color);
}
.contact-section.special p.link:hover {
  color: white;
}

/****************** End style contacts-methods **********************/
/****************** Start style contact section ********************/
.contact-form {
  max-width: 1025px;
  margin: auto;
}
.contact-form .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 575px) {
  .contact-form .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.contact-form .input-field {
  margin-bottom: 30px;
  width: 100%;
}
@media (max-width: 575px) {
  .contact-form .input-field {
    margin-bottom: 20px;
  }
}
.contact-form .input-field label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--text-color);
  text-transform: capitalize;
  margin: 0 30px 10px;
}
.contact-form .input-field label.focus {
  color: var(--main-color);
}
@media (max-width: 575px) {
  .contact-form .input-field label {
    margin: 0 20px 8px;
  }
}
.contact-form .input-field input,
.contact-form .input-field textarea {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--black-color);
  caret-color: var(--main-color);
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 30px 25px;
  border: 1px solid #959595;
  border-radius: 10px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .contact-form .input-field input,
  .contact-form .input-field textarea {
    padding: 20px;
  }
}
.contact-form .input-field input:focus,
.contact-form .input-field textarea:focus {
  outline: none;
  border-color: var(--main-color);
}
.contact-form .input-field input:focus ~ label,
.contact-form .input-field textarea:focus ~ label {
  color: var(--main-color);
}
.contact-form .input-field input:focus::-webkit-input-placeholder, .contact-form .input-field textarea:focus::-webkit-input-placeholder {
  color: var(--main-color);
}
.contact-form .input-field input:focus::-moz-placeholder, .contact-form .input-field textarea:focus::-moz-placeholder {
  color: var(--main-color);
}
.contact-form .input-field input:focus:-ms-input-placeholder, .contact-form .input-field textarea:focus:-ms-input-placeholder {
  color: var(--main-color);
}
.contact-form .input-field input:focus::-ms-input-placeholder, .contact-form .input-field textarea:focus::-ms-input-placeholder {
  color: var(--main-color);
}
.contact-form .input-field input:focus::placeholder,
.contact-form .input-field textarea:focus::placeholder {
  color: var(--main-color);
}
.contact-form .input-field input::-webkit-input-placeholder, .contact-form .input-field textarea::-webkit-input-placeholder {
  color: var(--text-color);
}
.contact-form .input-field input::-moz-placeholder, .contact-form .input-field textarea::-moz-placeholder {
  color: var(--text-color);
}
.contact-form .input-field input:-ms-input-placeholder, .contact-form .input-field textarea:-ms-input-placeholder {
  color: var(--text-color);
}
.contact-form .input-field input::-ms-input-placeholder, .contact-form .input-field textarea::-ms-input-placeholder {
  color: var(--text-color);
}
.contact-form .input-field input::placeholder,
.contact-form .input-field textarea::placeholder {
  color: var(--text-color);
}
.contact-form .input-field textarea {
  height: 314px;
}
@media (max-width: 575px) {
  .contact-form .input-field textarea {
    height: 180px;
  }
}

/****************** End style contact section **********************/
/*********************************************************************
************************** Style to Awards ***************************
*********************************************************************/
/****************** Start style awards slider ********************/
.awards-box {
  padding: 40px 60px;
  -webkit-box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
  border-radius: 25px;
}
@media (max-width: 991px) {
  .awards-box {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .awards-box {
    padding: 30px 16px;
    border-radius: 15px;
  }
}

.certificat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media (max-width: 575px) {
  .certificat {
    gap: 16px;
  }
}
.certificat:not(:last-child) {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 2px dashed #C1C1C1;
}
@media (max-width: 575px) {
  .certificat:not(:last-child) {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.certificat .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.certificat .icon svg {
  width: 24px;
}
.certificat .date {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: var(--main-color);
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .certificat .date {
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 6px;
  }
}
.certificat .heading {
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
  color: var(--second-color);
}
@media (max-width: 575px) {
  .certificat .heading {
    font-size: 14px;
    line-height: 22px;
  }
}

/****************** End style awards slider **********************/
/*********************************************************************
************************** Style to network **************************
*********************************************************************/
/****************** Start style networks section ********************/
.networks-section {
  margin: 120px 0;
}
@media (max-width: 991px) {
  .networks-section {
    margin: 80px 0;
  }
}
@media (max-width: 575px) {
  .networks-section {
    margin: 48px 0;
  }
}
.networks-section .network-box {
  border: 1px solid #E6E6E6;
  border-radius: 25px;
  padding: 80px 56px;
}
@media (max-width: 1199px) {
  .networks-section .network-box {
    padding: 56px 24px;
  }
}
@media (max-width: 575px) {
  .networks-section .network-box {
    padding: 40px 20px;
    border-radius: 15px;
  }
}

.networks-slider {
  overflow-y: visible;
}
.networks-slider .swiper-wrapper {
  width: calc(100% - 4px);
}
@media (max-width: 575px) {
  .networks-slider .swiper-wrapper {
    width: 100%;
  }
}
.networks-slider .swiper-slide {
  width: calc(25% + 1px);
  text-align: center;
  padding: 0 24px;
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  text-align: center;
  position: relative;
  padding: 48px 16px 24px;
}
@media (max-width: 1199px) {
  .networks-slider .swiper-slide {
    padding: 24px 12px 16px;
  }
}
@media (max-width: 991px) {
  .networks-slider .swiper-slide {
    width: calc(33.33% + 1px);
  }
}
@media (max-width: 575px) {
  .networks-slider .swiper-slide {
    width: 100%;
    padding: 12px 8px;
  }
}
.networks-slider .swiper-slide:not(:last-child) {
  border-right: 2px dashed #C1C1C1;
}
@media (max-width: 575px) {
  .networks-slider .swiper-slide:not(:last-child) {
    border-right: none;
  }
}
.networks-slider .swiper-slide img {
  max-width: 100%;
  height: 90px;
}
.networks-slider .swiper-slide .network-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--second-color);
  text-transform: capitalize;
}
.networks-slider .swiper-pagination {
  margin-bottom: -140px;
}
@media (max-width: 1199px) {
  .networks-slider .swiper-pagination {
    margin-bottom: -110px;
  }
}
@media (max-width: 575px) {
  .networks-slider .swiper-pagination {
    margin-bottom: -80px;
  }
}
.networks-slider .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 4px;
  border-radius: 10px;
  background-color: rgba(38, 36, 123, 0.4588235294);
  opacity: 1;
  margin: 0 3px;
}
@media (max-width: 575px) {
  .networks-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
  }
}
.networks-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  background-color: var(--second-color);
}
@media (max-width: 575px) {
  .networks-slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
  }
}

.networks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .networks {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.networks .item {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  text-align: center;
  position: relative;
  padding: 48px 16px 24px;
}
@media (max-width: 1199px) {
  .networks .item {
    padding: 24px 12px 16px;
  }
}
@media (max-width: 575px) {
  .networks .item {
    padding: 12px 4px;
  }
}
.networks .item:not(:last-child)::after {
  content: "";
  height: 100%;
  border: 1px dashed #C1C1C1;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .networks .item:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .networks .item:nth-child(odd):after {
    display: block;
    right: -9px;
  }
  .networks .item:nth-child(n+3)::before {
    content: "";
    width: 100%;
    border: 1px dashed #C1C1C1;
    position: absolute;
    right: 0;
    top: -8px;
  }
}
.networks .item img {
  max-width: 100%;
  height: 90px;
}
.networks .item .network-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--second-color);
  text-transform: capitalize;
}

.distance-line {
  width: 56px;
  margin: auto;
  position: relative;
  border: 1px solid var(--main-color);
  display: block;
}
.distance-line::before, .distance-line::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 5px solid;
}
.distance-line::before {
  left: -2px;
  border-color: transparent transparent transparent var(--main-color);
}
.distance-line::after {
  right: -2px;
  border-color: transparent var(--main-color) transparent transparent;
}

/****************** End style networks section **********************/
/*********************************************************************
*************************** Style to team ****************************
*********************************************************************/
/****************** Start style executive-officers ********************/
.executive-officers {
  margin: 120px 0;
}
@media (max-width: 991px) {
  .executive-officers {
    margin: 80px 0;
  }
}
@media (max-width: 575px) {
  .executive-officers {
    margin: 48px 0;
  }
}
.executive-officers .officers-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .executive-officers .officers-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.executive-officers .content {
  -webkit-box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
  background-color: white;
  border-radius: 25px;
  padding: 90px 40px;
  margin-left: -90px;
  width: 505px;
  max-width: calc(100% - 24px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1199px) {
  .executive-officers .content {
    padding: 64px 32px;
    width: 435px;
    margin-left: -64px;
  }
}
@media (max-width: 991px) {
  .executive-officers .content {
    margin-left: 0;
    margin-top: -64px;
    width: 650px;
  }
}
@media (max-width: 767px) {
  .executive-officers .content {
    width: 435px;
  }
}
@media (max-width: 575px) {
  .executive-officers .content {
    padding: 40px 20px;
    border-radius: 16px;
  }
}

/****************** End style executive-officers **********************/
/****************** Start style team section ********************/
.team-section {
  background-image: url("../images/header-line-background.webp");
  background-size: cover;
  background-position: top center;
  padding-top: 64px;
}

.member-popup .modal-body {
  padding: 15px;
}
@media (max-width: 575px) {
  .member-popup .modal-body {
    padding: 56px 12px 24px;
  }
}
.member-popup .member-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}
@media (max-width: 767px) {
  .member-popup .member-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.member-popup .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 767px) {
  .member-popup .image {
    width: 100%;
    text-align: center;
  }
}
.member-popup .image img {
  width: 340px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .member-popup .image img {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .member-popup .image img {
    width: 340px;
  }
}
.member-popup .content {
  padding: 30px;
}
@media (max-width: 575px) {
  .member-popup .content {
    padding: 0;
    margin-top: 30px;
  }
}

/****************** End style team section **********************/
/*********************************************************************
************************* Style to careers ***************************
*********************************************************************/
/****************** Start style careers section ********************/
.careers-section .careers-box {
  padding: 80px 100px;
  border: 1px solid #E6E6E6;
  border-radius: 25px;
}
@media (max-width: 1199px) {
  .careers-section .careers-box {
    padding: 80px 60px;
  }
}
@media (max-width: 767px) {
  .careers-section .careers-box {
    padding: 64px 32px;
  }
}
@media (max-width: 575px) {
  .careers-section .careers-box {
    padding: 40px 16px;
    border-radius: 16px;
  }
}

.career-job:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 60px;
  border-bottom: 1px solid #EFE5D1;
}
@media (max-width: 575px) {
  .career-job .main-button {
    font-size: 12px;
    line-height: 15px;
    padding: 9px;
    gap: 4px;
  }
  .career-job .main-button img {
    width: 22px;
  }
}
.career-job .main-button::after {
  width: 75px;
}
@media (max-width: 575px) {
  .career-job .main-button::after {
    width: 52px;
  }
}
.career-job .main-button:hover::after {
  width: 100%;
}

.job-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: var(--second-color);
}
@media (max-width: 991px) {
  .job-title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .job-title {
    font-size: 16px;
    line-height: 24px;
  }
}

.spacial-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--main-color);
  margin-bottom: 9px;
}
@media (max-width: 575px) {
  .spacial-date {
    font-size: 12px;
    line-height: 17px;
  }
}
.spacial-date svg {
  font-size: 24px;
}
@media (max-width: 575px) {
  .spacial-date svg {
    font-size: 20px;
  }
}

.job-popup .modal-dialog {
  width: 1080px;
}
.job-popup .modal-body {
  padding: 100px;
}
@media (max-width: 991px) {
  .job-popup .modal-body {
    padding: 64px 48px;
  }
}
@media (max-width: 575px) {
  .job-popup .modal-body {
    padding: 36px 24px;
  }
}
@media (max-width: 991px) {
  .job-popup .box-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .job-popup .job-title {
    font-size: 19px;
    line-height: 30px;
  }
}
.job-popup hr {
  border: 1px solid #B48B2F;
  opacity: 0.3;
  margin: 36px 0;
}
@media (max-width: 575px) {
  .job-popup hr {
    margin: 24px 0;
  }
}
.job-popup .popup-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 40px;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 575px) {
  .job-popup .popup-heading {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 36px;
  }
}
.job-popup .popup-heading .note {
  font-size: 16px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .job-popup .popup-heading .note {
    font-size: 12px;
  }
}
.job-popup .popup-heading::after {
  content: "";
  width: 72px;
  height: 5px;
  background-color: var(--main-color);
  position: absolute;
  bottom: -15px;
  border-radius: 5px;
  left: 0;
}
.job-popup ul, .job-popup ol {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  color: var(--black-color);
  list-style-position: inside;
}
.job-popup ul li:not(:last-child), .job-popup ol li:not(:last-child) {
  margin-bottom: 10px;
}
.job-popup ul ul, .job-popup ul ol, .job-popup ol ul, .job-popup ol ol {
  padding-left: 30px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .job-popup ul ul, .job-popup ul ol, .job-popup ol ul, .job-popup ol ol {
    padding-left: 16px;
  }
}
.job-popup ul ul li:not(:last-child), .job-popup ul ol li:not(:last-child), .job-popup ol ul li:not(:last-child), .job-popup ol ol li:not(:last-child) {
  margin-bottom: 5px;
}
.job-popup ul {
  list-style-type: disc;
}
.job-popup ul ul {
  list-style-type: " - ";
}
.job-popup ul ul ul {
  list-style-type: disc;
}

form.career-form .input-file .input {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black-color);
  min-height: 48px;
  position: relative;
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #A0A0A0;
  border-radius: 8px;
}
form.career-form .input-file .label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #A0A0A0;
  text-transform: capitalize;
  position: absolute;
  top: 0;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: white;
  padding: 4px;
}
form.career-form .input-file input[type=file] {
  display: none;
}
form.career-form .input-file label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  padding: 8px 36px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: white;
  text-transform: capitalize;
  background-color: var(--second-color);
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
form.career-form .input-file label:hover {
  opacity: 0.8;
}
form.career-form .input-field {
  position: relative;
  margin-bottom: 20px;
}
form.career-form .input-field input {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black-color);
  caret-color: var(--main-color);
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 13px 16px;
  border: 1px solid #A0A0A0;
  border-radius: 8px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
form.career-form .input-field input:focus {
  outline: none;
  border-color: var(--main-color);
}
form.career-form .input-field input:focus ~ label {
  color: var(--second-color);
}
form.career-form .input-field input[type=number] {
  -moz-appearance: textfield;
}
form.career-form .input-field input[type=number]::-webkit-inner-spin-button, form.career-form .input-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
form.career-form .input-field label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #A0A0A0;
  text-transform: capitalize;
  position: absolute;
  top: 0;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: white;
  padding: 4px;
}

/****************** End style careers section **********************/
/*********************************************************************
******************* Style to products & programs *********************
*********************************************************************/
/****************** Start style product ********************/
.products-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 40px) / 3) 20px calc((100% - 40px) / 3) 20px calc((100% - 40px) / 3);
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
  gap: 30px 20px;
  padding: 40px;
  border-radius: 25px;
  background-image: url(../images/products-background.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media (max-width: 1199px) {
  .products-box {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .products-box {
    -ms-grid-columns: (calc((100% - 20px) / 2))[2];
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
  }
}
@media (max-width: 767px) {
  .products-box {
    padding: 32px 16px;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .products-box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    border-radius: 15px;
  }
}
.products-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(118.71deg, rgba(38, 36, 123, 0) -3.69%, #26247B 81.93%);
  border-radius: inherit;
}
.products-box > * {
  position: relative;
  z-index: 1;
}

.product {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(38, 36, 123, 0.16)), to(rgba(38, 36, 123, 0.16))), -webkit-gradient(linear, left bottom, left top, from(rgba(251, 251, 252, 0.15)), to(rgba(251, 251, 252, 0.15)));
  background: linear-gradient(0deg, rgba(38, 36, 123, 0.16), rgba(38, 36, 123, 0.16)), linear-gradient(0deg, rgba(251, 251, 252, 0.15), rgba(251, 251, 252, 0.15));
  border: 1px solid rgba(38, 36, 123, 0.1607843137);
  -webkit-box-shadow: 8px 8px 24px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 8px 8px 24px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 15px;
  padding: 48px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 1399px) {
  .product {
    padding: 32px;
  }
}
@media (max-width: 1199px) {
  .product {
    padding: 20px;
  }
}
.product .heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: white;
  margin-bottom: 40px;
  position: relative;
  text-transform: capitalize;
}
.product .heading.large-margin {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .product .heading {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .product .heading {
    font-size: 21px;
    line-height: 28px;
  }
  .product .heading.large-margin {
    margin-bottom: 60px;
  }
}
.product .heading::after {
  content: "";
  width: 70px;
  height: 3px;
  border-radius: 100px;
  background-color: var(--main-color);
  position: absolute;
  bottom: -20px;
  left: 0;
}
.product .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}
.product .main-button {
  padding: 12px 16px;
  margin: 0;
  margin-top: auto;
}
.product .main-button::after {
  width: 60px;
}
.product .main-button:hover::after {
  width: 100%;
}
.product:hover {
  background: white;
}
.product:hover .heading {
  color: var(--second-color);
}
.product:hover .description {
  color: var(--black-color);
}
.product:hover .main-button {
  color: var(--second-color);
}

/****************** End style product **********************/
/****************** Start style program content ********************/
.program-content .content-box {
  padding: 96px;
  border-radius: 25px;
  background-image: url(../images/products-background.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
}
@media (max-width: 1199px) {
  .program-content .content-box {
    padding: 64px;
  }
}
@media (max-width: 991px) {
  .program-content .content-box {
    padding: 48px;
  }
}
@media (max-width: 575px) {
  .program-content .content-box {
    padding: 32px 24px;
  }
}
.program-content .content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(118.71deg, rgba(38, 36, 123, 0) -3.69%, #26247B 81.93%);
  border-radius: inherit;
}
.program-content .content-box > * {
  position: relative;
  z-index: 1;
}
.program-content .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 9px;
}
@media (max-width: 575px) {
  .program-content .title {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 6px;
  }
}
.program-content .heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .program-content .heading {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.program-content hr {
  margin: 30px 0;
  border: 1px solid #B48B2F;
}
@media (max-width: 575px) {
  .program-content hr {
    margin: 20px 0;
  }
}
.program-content .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 575px) {
  .program-content .description {
    font-size: 14px;
    line-height: 22px;
  }
}

/****************** End style program content **********************/

/****************** Start style testimonials ********************/
.testimonials {
  overflow: hidden;
}

.testimonials-slider {
  overflow: visible;
}

.testimonial-section {
  width: 340px;
  max-width: 100%;
  border: 1px dashed #B48B2F;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin: 0 10px;
  max-height: 500px;
  height: unset;
  overflow-y: auto;
  scrollbar-color: var(--main-color) transparent;
  scrollbar-track-color: transparent;
  scrollbar-width: thin;
}
.testimonial-section::-webkit-scrollbar {
  width: 6px;
}
@media (max-width: 575px) {
  .testimonial-section::-webkit-scrollbar {
    width: 4px;
  }
}
.testimonial-section::-webkit-scrollbar-track {
  background: transparent;
}
.testimonial-section::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 100px;
  cursor: pointer;
}
.testimonial-section::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}
@media (max-width: 575px) {
  .testimonial-section {
    width: 300px;
    padding: 30px 20px;
  }
}
.testimonial-section:first-of-type {
  margin-left: 0;
}
.testimonial-section:last-of-type {
  margin-right: 0;
}
.testimonial-section img, .testimonial-section iframe, .testimonial-section video {
  max-width: 100%;
}
.testimonial-section .avater {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 15px;
}
.testimonial-section .avater img {
  width: 100%;
  height: 100%;
}
.testimonial-section .name {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: var(--black-color);
  margin-bottom: 5px;
}
.testimonial-section .title {
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
  color: var(--text-color);
  font-family: "cairo", "Montserrat", sans-serif;
  margin-bottom: 15px;
}
.testimonial-section .comment {
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  color: #121113;
  font-family: "cairo", "Montserrat", sans-serif;
  margin-bottom: 15px;
}
.testimonial-section .rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonial-section .rate svg {
  font-size: 14px;
  color: var(--main-color);
}

/****************** End style testimonials **********************/


/*********************************************************************
************************** Style to Events ***************************
*********************************************************************/
/****************** Start style events-layout ********************/
.events-container {
  -webkit-box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 13px 14px 25px -1px rgba(0, 0, 0, 0.1019607843);
  background-color: #fff;
  padding: 100px 40px;
  border-radius: 25px;
}
@media (max-width: 1199px) {
  .events-container {
    padding: 48px 24px;
  }
}
@media (max-width: 575px) {
  .events-container {
    padding: 30px 8px;
    border-radius: 15px;
  }
}

.events-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .events-navbar {
    margin-bottom: 30px;
  }
}
.events-navbar .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #A0A0A0;
  text-transform: capitalize;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .events-navbar .nav-link {
    font-size: 16px;
  }
}
.events-navbar .nav-link svg {
  font-size: 24px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .events-navbar .nav-link svg {
    font-size: 20px;
  }
}
.events-navbar .nav-link.active, .events-navbar .nav-link:hover {
  color: var(--second-color);
}
.events-navbar .nav-link.active svg, .events-navbar .nav-link:hover svg {
  color: var(--main-color);
}

/****************** End style events-layout **********************/
/****************** Start style previous events ********************/
.previous-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  background-color: var(--second-color);
  border-radius: 25px;
  padding: 30px;
}
@media (max-width: 991px) {
  .previous-event {
    padding: 20px;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .previous-event {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .previous-event {
    padding: 0;
    gap: 0;
  }
}
.previous-event:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .previous-event:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.previous-event .image {
  width: 330px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1199px) {
  .previous-event .image {
    width: 280px;
  }
}
@media (max-width: 991px) {
  .previous-event .image {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .previous-event .image {
    width: 100%;
  }
}
.previous-event .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .previous-event .image img {
    border-radius: 15px 15px 0 0;
    max-height: 350px;
  }
}
@media (max-width: 767px) {
  .previous-event .content {
    padding: 24px 16px;
  }
}
.previous-event .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .previous-event .box {
    gap: 10px;
  }
}
.previous-event .info {
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  color: var(--second-color);
}
@media (max-width: 575px) {
  .previous-event .info {
    padding: 10px 16px;
    border-radius: 6px;
  }
}
.previous-event .info svg {
  color: var(--main-color);
  font-size: 16px;
}
.previous-event .info.special {
  background-color: #FF0000;
  color: #fff;
}
.previous-event .info.special svg {
  color: #fff;
}
.previous-event .heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .previous-event .heading {
    margin-bottom: 10px;
  }
}
.previous-event .description {
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.6196078431);
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .previous-event .description {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 20px;
  }
}
.previous-event .main-button {
  margin: 0;
}
.previous-event .main-button::after {
  width: 72px;
}
.previous-event .main-button:hover::after {
  width: 100%;
}

/****************** End style previous events **********************/
/****************** Start style event information ********************/
.event-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media (max-width: 575px) {
  .event-grid {
    gap: 20px;
  }
}

.event-info {
  background: #F5F5F5;
  border-radius: 25px;
  padding: 40px;
}
@media (max-width: 991px) {
  .event-info {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .event-info {
    padding: 16px 16px 24px;
    border-radius: 15px;
  }
}
.event-info .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .event-info .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 575px) {
  .event-info .box {
    gap: 24px;
    margin-bottom: 30px;
  }
}
.event-info .image {
  width: 500px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1399px) {
  .event-info .image {
    width: 430px;
  }
}
@media (max-width: 991px) {
  .event-info .image {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .event-info .image {
    width: 100%;
  }
}
.event-info .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.event-info .info-box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 30px;
}
@media (max-width: 1199px) {
  .event-info .info-box {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .event-info .info-box {
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .event-info .info-box {
    gap: 10px;
  }
}
.event-info .info {
  min-width: 220px;
  width: calc((100% - 30px) / 2);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  color: var(--second-color);
  position: relative;
}
@media (max-width: 575px) {
  .event-info .info {
    border-radius: 10px;
  }
}
.event-info .info svg {
  color: var(--main-color);
  font-size: 20px;
}
.event-info .info .end {
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  color: #fff;
  background-color: #FF0000;
  width: 72px;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
  text-align: center;
}
.event-info .heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--second-color);
  text-transform: uppercase;
}
.event-info .heading:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .event-info .heading:not(:last-child) {
    margin-bottom: 16px;
  }
}
.event-info .description {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--black-color);
  max-width: 800px;
}
.event-info .description:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .event-info .description {
    font-size: 12px;
    line-height: 19px;
  }
}
.event-info hr {
  margin: 40px 0;
  border: 1px solid #E7E7E7;
  opacity: 1;
}
@media (max-width: 575px) {
  .event-info hr {
    margin: 30px 0;
  }
}
.event-info .download-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--black-color);
}
.event-info .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: var(--black-color);
  text-decoration: underline;
  text-transform: capitalize;
  padding: 4px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.event-info .download:hover {
  text-decoration: none;
  color: var(--second-color);
}
.event-info .download img {
  width: 24px;
}
@media (max-width: 575px) {
  .event-info .box-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.event-info .main-button::after {
  width: 72px;
}
.event-info .main-button:hover:after {
  width: 100%;
}

.gallery-slider .swiper-slide {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  margin: 0 10px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 575px) {
  .gallery-slider .swiper-slide {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin: 0 6px;
  }
}
.gallery-slider .swiper-slide::after {
  content: "";
  width: 0;
  height: 0;
  border-radius: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.gallery-slider .swiper-slide:hover::after {
  width: 100%;
  height: 100%;
}
.gallery-slider .swiper-slide:first-of-type {
  margin-left: 0;
}
.gallery-slider .swiper-slide:last-of-type {
  margin-right: 0;
}
.gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

/****************** End style event information **********************/
/****************** Start style up coming layout ********************/
.up-coming-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(100% - 440px - 25px) 25px 440px;
  grid-template-columns: calc(100% - 440px - 25px) 440px;
  gap: 25px;
}
@media (max-width: 1399px) {
  .up-coming-layout {
    -ms-grid-columns: calc(100% - 340px - 25px) 340px;
    grid-template-columns: calc(100% - 340px - 25px) 340px;
  }
}
@media (max-width: 991px) {
  .up-coming-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .up-coming-layout {
    gap: 20px;
  }
}
.up-coming-layout .box {
  margin-top: -40px;
  margin-left: -40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .up-coming-layout .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .up-coming-layout .box {
    margin-top: -16px;
    margin-left: -16px;
  }
}
@media (max-width: 767px) {
  .up-coming-layout .box {
    margin-top: 0;
    margin-left: 0;
  }
}
.up-coming-layout .image {
  width: 380px;
  min-height: 380px;
}
@media (max-width: 1399px) {
  .up-coming-layout .image {
    width: 350px;
    min-height: 350px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .up-coming-layout .image {
    width: 100%;
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .up-coming-layout .image {
    width: 100%;
    min-height: auto;
  }
}
.up-coming-layout .image img {
  border-radius: 15px 0;
}
.up-coming-layout .info-box {
  gap: 10px;
}

@media (min-width: 1200px) {
  .sidebar .end-section {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.event-popup .modal-dialog {
  width: 800px;
}
.event-popup .modal-body {
  background-image: url("../images/event-popup-line.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 80px 40px 60px;
}
@media (max-width: 767px) {
  .event-popup .modal-body {
    padding: 40px 16px;
  }
}
.event-popup .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 55px;
}
@media (max-width: 991px) {
  .event-popup .box {
    gap: 0 30px;
  }
}
@media (max-width: 575px) {
  .event-popup .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.event-popup hr {
  border: 1px solid #E7E7E7;
  margin: 40px auto;
  max-width: 500px;
  opacity: 1;
}
@media (max-width: 575px) {
  .event-popup hr {
    margin: 30px auto;
  }
}
.event-popup .input-field {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .event-popup .input-field {
    margin-bottom: 30px;
  }
}
.event-popup .input-field label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--main-color);
  text-transform: capitalize;
  margin: 0 30px 16px;
}
@media (max-width: 575px) {
  .event-popup .input-field label {
    margin: 0 16px 8px;
  }
}
.event-popup .input-field input {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--second-color);
  caret-color: var(--main-color);
  background-color: #F6F1E6;
  border-radius: 15px;
  padding: 18px 30px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}
@media (max-width: 575px) {
  .event-popup .input-field input {
    border-radius: 10px;
    padding: 15px 20px;
  }
}
.event-popup .input-field input[type=number] {
  -moz-appearance: textfield;
}
.event-popup .input-field input[type=number]::-webkit-inner-spin-button, .event-popup .input-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.event-popup .main-button::after {
  width: 72px;
}
.event-popup .main-button:hover:after {
  width: 100%;
}

.gallery-popup .modal-dialog {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
}
.gallery-popup .modal-content {
  padding: 0;
  border-radius: 0;
  position: relative;
  height: 100%;
  background: rgba(0, 0, 0, 0.6509803922);
}
.gallery-popup .modal-body {
  padding: 16px;
  height: 100%;
}
.gallery-popup .btn-close {
  border-color: #fff;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/9px auto no-repeat;
}

.full-gallery-slider {
  height: 100%;
}
.full-gallery-slider .swiper-wrapper {
  width: 100%;
}
.full-gallery-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.full-gallery-slider .swiper-wrapper img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.full-gallery-slider .swiper-pagination {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .full-gallery-slider .swiper-pagination {
    margin-bottom: 40px;
  }
}
.full-gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 5px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 3px;
}
.full-gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  background-color: #fff;
}

.team-member .content .name { text-shadow: 0px 0px 2px #000; }
.modal-video
{
    margin: 7px !important;
    margin-top: 55px !important;
    text-align: center !important;
}
.iframe-video
{
    border: 0 !important;
    width: 100% !important;
    border-radius: 0 0 30px 30px !important;
}



/****************** End style up coming layout **********************/
