/**************************************** Start Global */

body {
  background-color: var(--dark-3);
}

:root {
  --dark-1: #012c3d;
  --dark-2: #002331;
  --dark-3: #011923;
  --white: #ffffff;
  --offwhite: #f8f8f8;
  --transWhite: #ffffff6a;

  --gradient-1: linear-gradient(90deg, #43dfc4 20%, #5abbe5 100%);

  --text-white: #ffffff;
  --red-accent: #f96d6d;
  --green-accent: #18c8a9;
  --green-accent-lighter: #43dfc4;
  --blue-accent: #299cce;
  --blue-accent-lighter: #5abbe5;
  --golden-accent: #ebac2d;
}
.padding-0 {
  padding-right: 0;
  padding-left: 0;
}

a[href='http://www.amcharts.com'] {
  display: none !important;
}

/**************************************** End Global */

/**************************************** Start Page Fonts */

/* Heading font family */
@font-face {
  font-family: Almarai-Bold;
  src: url("../fonts/title/Almarai-Bold.ttf");
}
@font-face {
  font-family: Almarai-ExtraBold;
  src: url("../fonts/title/Almarai-ExtraBold.ttf");
}
@font-face {
  font-family: Almarai-Light;
  src: url("../fonts/title/Almarai-Light.ttf");
}
@font-face {
  font-family: Almarai-Regular;
  src: url("../fonts/title/Almarai-Regular.ttf");
}

/* Text font family */

@font-face {
  font-family: Dubai-Bold;
  src: url("../fonts/text/Dubai-Bold.otf");
}
@font-face {
  font-family: Dubai-Light;
  src: url("../fonts/text/Dubai-Light.otf");
}
@font-face {
  font-family: Dubai-Medium;
  src: url("../fonts/text/Dubai-Medium.otf");
}
@font-face {
  font-family: Dubai-Regular;
  src: url("../fonts/text/Dubai-Regular.otf");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Almarai-Regular;
}

/**************************************** End Page Fonts */

/**************************************** Start Top Bar */

.top_bar {
  height: 80px;
  background-color: var(--dark-2);
}

.top_bar .container {
  height: 100%;
}
.top_bar .logo_holder {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.top_bar .logo_holder .logo_1 {
  margin-top: -10px;
  width: 70px;
  height: auto;
}
.top_bar .logo_holder .logo_2 {
  width: 100px;
  height: auto;
  margin-top: -10px;
}
.top_bar .logo_holder .logo_3 {
  width: 115px;
  margin-top: 3px;
  margin-left: 15px;
}
.top_bar .logo_holder .logo_4 {
  width: 90px;
  margin-top: 10px;
}
/**************************************** End Top Bar */

/**************************************** Start Nav Bar */

.nav_bar {
  height: 50px;
  background: var(--gradient-1);
  position: relative;
  transition: all 0.5s ease-in-out;
  z-index: 10;
}
.nav_bar .container {
  height: 100%;
}
.nav_bar .nav_list {
  display: flex;
  justify-content: center;
  list-style-type: none;
  height: 100%;
  padding: 0;
  transition: all 0.5s ease-in-out;
}
.nav_bar .nav_list li {
  margin-left: 40px;
  font-size: 16px;
  padding: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: Almarai-Regular
}

.nav_bar .nav_list li a {
  color: #fff;
}

.nav_bar .nav_list .more-dropdown-holder {
  position: relative;
  display: inline-block;
}
.nav_bar .nav_list .more-dropdown-holder li.btn-more {
  height: 100%;
}
.nav_bar .nav_list .more-dropdown-holder li.btn-more i {
  color: #002331;
  margin-left: 10px;
  margin-top: 3px;
  font-size: 22px;
}
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content {
  display: none;
  top: 90%;
  position: absolute;
  background-color: var(--dark-1);
  min-width: 180px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 5px 0;
  z-index: 20;
  border-radius: 5px;
  list-style-type: none;
}
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content li,
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content li a {
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
  margin: 0;
  padding: 12px;
  text-align: right;
  max-width: 200px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
}
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content li:last-of-type {
  border: none;
}
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content li a {
  padding: 0;
}
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content li a i {
  color: var(--green-accent);
}
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content li:hover {
  background-color: var(--green-accent);
  color: #fff !important;
}
.nav_bar .nav_list .more-dropdown-holder ul.more-dropdown-content li:hover i {
  color: #fff !important;
}
.nav_bar .nav_list .more-dropdown-holder:hover .more-dropdown-content {
  display: block;
}
.nav_bar .menu_btn {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav_bar .menu-icon {
  height: 27px;
  cursor: pointer;
  width: 36px;
  position: relative;
}
.nav_bar .menu-icon .bar {
  width: 100%;
  height: 3px;
  background-color: var(--dark-1);
  border-radius: 20px;
}
.nav_bar .menu-icon .bar-1 {
  position: absolute;
  top: 0px;
  left: 0;
}
.nav_bar .menu-icon .bar-2 {
  position: absolute;
  top: 10px;
  left: 0;
}
.nav_bar .menu-icon .bar-3 {
  position: absolute;
  top: 20px;
  left: 0;
}

.nav_bar .menu-icon.menu-icon-5 {
  margin-right: 10px;
  margin-top: 5px;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.nav_bar .menu-icon.menu-icon-5 .bar {
  -webkit-transition: all 0.2s linear 0.2s;
  transition: all 0.2s linear 0.2s;
}
.nav_bar .menu-icon.menu-icon-5.opened {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.nav_bar .menu-icon.menu-icon-5.opened .bar-2 {
  opacity: 0;
}
.nav_bar .menu-icon.menu-icon-5.opened .bar-1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 17px;
  left: 0;
}
.nav_bar .menu-icon.menu-icon-5.opened .bar-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 17px;
  left: 0;
}

.nav_bar .theme_mode_btn {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 9px;
  left: 9px;
  width: 133px;
  height: 32px;
  background-color: rgba(67, 223, 196, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 2px 6px;
  font-size: 14px;
}
.nav_bar .theme_mode_btn > div {
  width: 48%;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.nav_bar .theme_mode_btn > div i.fa-check-circle {
  visibility: hidden;
}
.nav_bar .theme_mode_btn .dark {
  background-color: #011923;
  color: #fff;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 2px 6px 2px 2px;
  box-shadow: 10px 0 10px 0 rgba(1, 64, 59, 0.22);
}
.nav_bar .theme_mode_btn .light {
  background-color: #ffffff;
  color: var(--green-accent-lighter);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 2px 2px 2px 6px;
  box-shadow: -10px 0 10px 0 rgba(1, 64, 59, 0.22);
}
.nav_bar .theme_mode_btn .active i.fa-check-circle {
  visibility: visible !important;
}
.nav_bar .theme_mode_btn .light.active {
  box-shadow: none;
}
.nav_bar .theme_mode_btn .dark.active {
  box-shadow: none;
}
/**************************************** End Nav Bar */

/**************************************** Start Header */

header.page_header {
  position: relative;
  height: calc(100vh - 130px);
  background-image: url("../images/backgrounds/header-bakground-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.page_header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #5abbe5, #43dfc4 50%);
  opacity: 0.15;
  z-index: 1;
}

header.page_header::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #43dfc4 50%, #5abbe5);
  opacity: 0.15;
}
header.page_header .overlay_1 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
header.page_header img.markers_bg {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 80%;
}
header.page_header .overlay_2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background: linear-gradient(180deg, #43dfc4, #48d7cb, #4bd2d0, #4eced4, #5abbe5);
}

header.page_header .header_title {
  position: relative;
  padding: 20px 0;
  z-index: 1;
  height: 150px;
  background: linear-gradient(180deg, rgba(24, 200, 169, 0.18), rgba(12, 100, 85, 0.18));
  text-align: center;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

header.page_header .header_title::before {
  content: "";
  height: 2px;
  width: 30%;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green-accent);
  box-shadow: 0 5px 20px 2px var(--green-accent);
}

header.page_header .header_title::after {
  content: "";
  height: 2px;
  width: 90%;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--green-accent);
  box-shadow: 0 -5px 20px 2px var(--green-accent);
}

header.page_header .header_title h1 {
  font-weight: bold;
  color: #fff;
}

header.page_header img.dot_grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
header.page_header .scroll_down {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green-accent-lighter);
  box-shadow: 0px 8px 20px 1px var(--green-accent-lighter);
}
/**************************************** End Header */

/****************************************  Start Footer Section */

footer {
  height: 350px !important;
  background-image: url("../images/backgrounds/footer.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 0.5px solid rgba(67, 223, 196, 0.42);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
}
footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #002a3c47;
}

footer .social_box {
  padding: 10px;
}

footer p {
  color: var(--text-white);
}
footer .logo_holder {
  text-align: left;
}
footer .logo_holder img:first-of-type {
  width: 104px;
  height: 80px;
  margin-left: 25px;
}
footer .logo_holder img:nth-of-type(2) {
  width: 128px;
  height: 74px;
}

footer .social_box .social_icon {
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  width: 30px;
  height: 30px;
  color: var(--green-accent);
  font-weight: bold;
  font-size: 18px;
  padding: 0px 5px;
  margin-left: 10px;
  text-align: center;
  border: 1px solid var(--blue-accent-lighter);
}

footer div.scroll-top {
  display: none;
  position: fixed;
  bottom: 50px;
  left: 50px;
  background: var(--green-accent);
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 40px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  -webkit-box-shadow: 0 10px 35px 0px rgba(24, 200, 169, 0.37);
  box-shadow: 0 10px 35px 0px rgba(24, 200, 169, 0.37);
  z-index: 10;
  cursor: pointer;
}

/****************************************  End Footer Section */

/***************************************** Start Media */

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
  .nav_bar .nav_list {
    justify-content: space-between;
  }
  .nav_bar .nav_list li {
    margin-left: 5px;
  }
  .nav_bar .theme_mode_btn {
    top: 60px;
  }
  header.page_header .header_title h1 {
    font-size: 32px;
  }
  header.page_header .header_title {
    height: 120px;
  }
  header.page_header .scroll_down {
    width: 50px;
    height: 50px;
  }
  header.page_header .scroll_down img {
    width: 10px;
  }

  footer .social_box,
  footer p,
  footer .logo_holder {
    text-align: center;
  }
  footer .logo_holder {
    margin-bottom: 30px;
  }
  footer .logo_holder img:first-of-type {
    width: 150px;
    height: auto;
  }
  footer .logo_holder img:nth-of-type(2) {
    width: 170px;
    height: auto;
  }
  footer .social_box {
    margin-bottom: 20px;
  }
  footer .social_box .social_icon {
    font-size: 26px;
    padding: 3px 4px;
    width: 50px;
    height: 50px;
  }
}



/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
  
  .top_bar {
    height: 65px;
  }
  .top_bar .logo_holder .logo_1 {
    width: 55px;
  }
  .top_bar .logo_holder .logo_2 {
    width: 80px;
  }
  .top_bar .logo_holder .logo_3 {
    width: 80px;
  }
  .top_bar .logo_holder .logo_4 {
    width: 70px;
  }
  .nav_bar .nav_list {
    /* display: none; */
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--gradient-1);
    overflow: hidden;
  }
  .nav_bar .nav_list.opened {
    height: 320px;
    overflow: auto;
    padding: 20px 20px 30px;
  }
  .nav_bar .nav_list .more-dropdown-holder {
    display: flex;
  }

  .nav_bar .theme_mode_btn {
    top: 9px;
  }
  header.page_header .header_title h1 {
    font-size: 24px;
  }
  header.page_header .header_title {
    height: 100px;
  }
  header.page_header img.markers_bg {
    top: 40%;
  }
}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  header.page_header .header_title {
    padding: 20px 0 5px;
    width: 80%;
    height: 120px;
  }
  header.page_header .header_title h1 {
    line-height: 1.4;
    font-size: 26px;
  }
}
@media (max-width: 476px) {
  footer .logo_holder img:first-of-type {
    width: 120px;
  }
  footer .logo_holder img:nth-of-type(2) {
    width: 140px;
  }
}

@media (max-width: 380px) {
  .top_bar .logo_holder .logo_1 {
    width: 40px;
}
.top_bar .logo_holder .logo_2 {
  width: 70px;
}
.top_bar .logo_holder .logo_3 {
  width: 70px;
}
.top_bar .logo_holder .logo_4 {
  width: 55px;
}
}

/****************************************** End Media **/
/**   my custom columns */
.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-2dot4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (min-width: 540px) {
  .col-sm-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 720px) {
  .col-md-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 960px) {
  .col-lg-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 1140px) {
  .col-xl-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/*******************************************************************************************************/

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
