@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/* Constant styles  */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
  transition: all 0.4s ease-in;
  font-family: "Manrope", sans-serif;
}

body {
  font-family: "Manrope", sans-serif;
  line-height: normal !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0 !important;
}

.clear {
  clear: both;
}

img {
  max-width: 100%;
}

a,
button {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

/* // Constant Styles */
ul {
  margin-bottom: 0;
}

.form-control {
  border-radius: 7px;
  background-color: rgba(245, 247, 250, 0.386);
}
.form-control:focus {
  outline: 0 !important;
  box-shadow: none !important;
  background-color: rgba(255, 255, 255, 0.2);
}

p {
  font-size: 1.1rem;
  color: #000;
}

/* Main Style */
.btn_style {
  display: inline-flex;
  height: 50px;
  padding: 15px 42px;
  justify-content: center;
  align-items: center;
  background-color: #082eb5;
  border: 1px solid #082eb5;
  border-radius: 11px;
  color: #fff;
}
.btn_style:hover {
  color: #082eb5;
  background-color: #fff;
}

.card_img {
  height: 100vh;
  position: relative;
}
.card_img .img_parent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card_img .img_parent img,
.card_img .img_parent video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.section_header {
  margin: 20px 0;
}
.section_header h5 {
  font-size: 2rem;
  text-transform: uppercase;
}

body.modal-open {
  padding-right: 0 !important;
}

body.modal-open .mm-slideout {
  z-index: auto;
}

.pd-100 {
  padding: 0 300px;
}

@media (max-width: 1920px) {
  .pd-100 {
    padding: 0 100px;
  }
}
@media (max-width: 1440px) {
  .pd-100 {
    padding: 0 70px;
  }
}
@media (max-width: 1024px) {
  .pd-100 {
    padding: 0 50px;
  }
}
@media (max-width: 600px) {
  .pd-100 {
    padding: 0 20px;
  }
}
.splashoverlay {
  display: flex;
}

.splashoverlay {
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.splashoverlay .splach_box {
  position: fixed;
  width: 25%;
  height: 100%;
  background-color: #fff;
}
.splashoverlay .splach_box.first_box {
  right: 0;
}
.splashoverlay .splach_box.second_box {
  right: 25%;
}
.splashoverlay .splach_box.third_box {
  left: 25%;
}
.splashoverlay .splach_box.fourth_box {
  left: 0;
}
.splashoverlay .splash_spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #eee;
  border-top: 3px solid #363b3e;
  border-radius: 100%;
  margin: 20px auto 0 auto;
  animation: loader 1s infinite linear;
}
@keyframes loader {
  100% {
    transform: rotate(360deg);
  }
}
.splashoverlay .overlay_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.splashoverlay .overlay_logo img {
  width: 150px;
}
.splashoverlay .loding_gif {
  text-align: center;
  width: 160px;
}
.splashoverlay .loding_gif video {
  margin: auto;
  width: 100%;
}

/* ================================================================ */
.open_modal {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.active_open_modal {
  opacity: 1;
  visibility: visible;
}

/* ================================================================ */
.custom_navbar {
  position: fixed;
  width: 100%;
  z-index: 99;
  padding: 25px 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.4);
  transition: all 0.3s ease-in-out;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 10px 19px rgba(0, 0, 0, 0.08);
}
.custom_navbar .logo img {
  width: 120px;
  transition: all 0.3s ease-in-out;
}
.custom_navbar .list_item {
  margin: 0 16px;
}
.custom_navbar .list_item .list_link {
  font-size: 1rem;
  color: #333333;
  font-weight: 400;
}
.custom_navbar .list_item.active .list_link {
  color: #243770;
  font-weight: 600;
}
.custom_navbar .list_item:hover .list_link {
  color: #243770;
}
.custom_navbar .contact_btn {
  text-align: right;
}
.custom_navbar .contact_btn a {
  border: 1px solid #243770;
  padding: 9px 20px;
  border-radius: 6px;
  display: block;
  color: #243770;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.custom_navbar .contact_btn a:hover {
  background-color: #fff;
  color: #000;
}

.inner_page_custom_navbar {
  background-color: #fff !important;
  position: sticky;
  top: 0;
  border-bottom: 0;
}

.carrers_page_custom_navbar {
  background-color: #fff !important;
  border-bottom: 0;
}

.contact_page_custom_navbar {
  background-color: #fff !important;
  border-bottom: 0;
  position: fixed !important;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .custom_navbar {
    background-color: rgb(255, 255, 255);
  }
}
/* ================================================================ */
.header_slider_parent .header_slider {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.header_slider_parent .header_slider .slick-arrow {
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.header_slider_parent .header_slider .card_img img {
  -o-object-position: center;
     object-position: center;
}
.header_slider_parent .header_slider .slick-next {
  right: 50px;
}
.header_slider_parent .header_slider .slick-next::before {
  content: url("../images/Icons/Fillarrow.svg");
}
.header_slider_parent .header_slider .slick-prev {
  left: 50px;
}
.header_slider_parent .header_slider .slick-prev::before {
  transform: rotate(180deg);
  display: block;
  content: url("../images/Icons/Fillarrow.svg");
}
.header_slider_parent .news_type {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.7rem;
}
.header_slider_parent .date_text {
  display: flex;
  align-items: flex-start;
}
.header_slider_parent .date_text .line {
  display: inline-flex;
  background-color: #fff;
  width: 100px;
  height: 1px;
  margin: 0 10px;
  margin-top: 10px;
}
.header_slider_parent .date_text .date {
  color: #e5e5e5;
}
.header_slider_parent .date_text p {
  width: 100% !important;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .header_slider_parent .news_type {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.16);
  }
}
.header_slider_about {
  margin-bottom: 0 !important;
}
.header_slider_about .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.header_slider_about .card_img .header_content {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 5;
  padding-bottom: 50px;
}
.header_slider_about .card_img .header_content h5 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 500;
}
.header_slider_about .card_img .header_content p {
  color: #fff;
}
.header_slider_about .slick-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header_slider_about .slick-dots li {
  margin: 0;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  border-radius: 50%;
}
.header_slider_about .slick-dots li button {
  margin: 0;
  width: 100%;
  height: 100%;
}
.header_slider_about .slick-dots li button::before {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.header_slider_about .slick-dots {
  bottom: 30px;
}
.header_slider_about .slick-arrow {
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.header_slider_about .slick-next {
  right: 50px;
}
.header_slider_about .slick-next::before {
  content: url("../images/Icons/Fillarrow.svg");
}
.header_slider_about .slick-prev {
  left: 50px;
}
.header_slider_about .slick-prev::before {
  transform: rotate(180deg);
  display: block;
  content: url("../images/Icons/Fillarrow.svg");
}
.header_slider_about .slick-dots {
  padding: 0 300px;
}
@media (max-width: 1920px) {
  .header_slider_about .slick-dots {
    padding: 0 100px;
  }
}
@media (max-width: 1440px) {
  .header_slider_about .slick-dots {
    padding: 0 70px;
  }
}
@media (max-width: 1024px) {
  .header_slider_about .slick-dots {
    padding: 0 50px;
  }
}
@media (max-width: 600px) {
  .header_slider_about .slick-dots {
    padding: 0 20px;
  }
}

.inner_header .card_img .header_content {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 5;
  padding-bottom: 50px;
}
.inner_header .card_img .header_content h5 {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 500;
}
.inner_header .card_img .header_content p {
  color: #fff;
  font-size: 1rem;
}
.inner_header .card_img .logo_head {
  background-color: rgba(255, 255, 255, 0.16);
  width: 206px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  margin-left: auto;
  padding: 20px;
}
.inner_header .card_img .logo_head img {
  width: 60%;
}

.custom_inner_header .header_content {
  align-items: center !important;
  justify-content: center;
  text-align: center;
}
.custom_inner_header .header_content p {
  color: #e5e5e5 !important;
  font-size: 0.7rem;
  margin-top: 15px;
}
.custom_inner_header .news_type {
  text-align: center;
  margin: auto;
  margin-bottom: 15px;
}
.custom_inner_header .carrers_form {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 5;
  position: relative;
}
.custom_inner_header .carrers_form .wrap {
  width: 100%;
}
.custom_inner_header .carrers_form h5,
.custom_inner_header .carrers_form h6 {
  color: #fff;
  font-size: 2rem;
}
.custom_inner_header .carrers_form h6 {
  font-weight: 300;
}
.custom_inner_header .carrers_form h5 {
  text-transform: uppercase;
  font-weight: 700;
}
.custom_inner_header .carrers_form p {
  color: #fff;
  font-size: 1.1rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.custom_inner_header .carrers_form p::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.custom_inner_header .carrers_form form {
  width: 100%;
  height: 65px;
  margin-top: 70px;
}
.custom_inner_header .carrers_form form .form-group {
  height: 65px;
  position: relative;
}
.custom_inner_header .carrers_form form .form-group img {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate(0, -50%);
  z-index: 2;
}
.custom_inner_header .carrers_form form .form-group .form-control {
  height: 100%;
  border-radius: 0;
  background-color: #fff;
  border: 0;
  padding-left: 65px;
}
.custom_inner_header .carrers_form form .form-group .form-control::-moz-placeholder {
  color: rgba(27, 27, 27, 0.4);
}
.custom_inner_header .carrers_form form .form-group .form-control::placeholder {
  color: rgba(27, 27, 27, 0.4);
}
.custom_inner_header .carrers_form form .form-group .custom-select {
  width: 100%;
  float: none;
  padding-left: 65px;
  border: 0;
  height: 100%;
  background-color: #f1f2f2;
  border-radius: 0;
  line-height: 65px;
}
.custom_inner_header .carrers_form form .form-group .custom-select .list {
  width: 100%;
}
.custom_inner_header .carrers_form form .btn {
  background-color: #243770;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  border: 0;
}
.custom_inner_header .carrers_form form .btn:hover {
  background-color: #1b1b1b;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .header_slider_parent .slick-next,
  .header_slider_parent .slick-prev {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.16);
  }
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .inner_header .logo_head {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.16);
  }
}
/* ================================================================ */
.about_atta_holding {
  padding: 120px 0;
}
.about_atta_holding .section_header {
  margin-bottom: 70px;
}
.about_atta_holding .section_header h5 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.about_atta_holding .about_navs .nav-link {
  text-align: left;
  padding: 40px 0;
  background-color: transparent;
  border-radius: 0;
  border-top: 1px solid #9d9d9c;
  font-size: 1.3rem;
  font-weight: 500;
  color: #9d9d9c;
}
.about_atta_holding .about_navs .nav-link.active {
  background-color: transparent;
  color: #fff;
  border-top-color: #fff;
}
.about_atta_holding .about_navs .about_icon {
  border-top: 1px solid #fff;
  padding-top: 32px;
}
.about_atta_holding .about_navs .about_icon .icon_card {
  text-align: center;
}
.about_atta_holding .about_navs .about_icon .icon_card h5 {
  color: #fff;
  font-size: 0.8rem;
  margin-top: 16px;
}
.about_atta_holding .about_navs .text_pargr {
  margin: 32px 0 45px 0;
}
.about_atta_holding .about_navs .text_pargr p {
  font-size: 1.2rem;
  color: #9d9d9c;
}
.about_atta_holding .about_navs .ab_link a {
  background-color: #ffffff;
  border: 40px;
  padding: 20px 48px 20px 48px;
  color: #000;
  font-weight: 500;
  border: 1px solid #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
}
.about_atta_holding .about_navs .ab_link a:hover {
  background-color: transparent;
  color: #fff;
}

/* ================================================================ */
.what_we_do {
  background-color: #fff;
  padding: 110px 0 106px 0;
  border-bottom: 1px solid #404040;
}
.what_we_do .section_header {
  margin: 0;
  text-align: center;
  position: relative;
}
.what_we_do .section_header .big_word {
  position: absolute;
  z-index: 4;
  text-align: center;
  width: 100%;
  top: 50px;
}
.what_we_do .section_header .big_word h5 {
  margin: 0;
  color: #243770;
  font-size: 5rem;
  text-transform: capitalize;
  font-weight: 500;
  text-transform: uppercase;
}
.what_we_do .section_header h5 {
  margin: 0;
  color: #808080;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: capitalize;
}
.what_we_do .card_img {
  width: 440px;
  height: 480px;
  max-width: 100%;
}
.what_we_do .what_cont p {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.8);
  line-height: 30px;
  position: relative;
  z-index: 9;
}
.what_we_do .what_cont a {
  background-color: #243770;
  border: 40px;
  margin-top: 48px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 48px 20px 48px;
  color: #000;
  font-weight: 500;
  border: 1px solid #243770;
  border-radius: 40px;
  color: #fff;
}
.what_we_do .what_cont a:hover {
  background-color: transparent;
  color: #243770;
}

.opsite_what_we_do .card_img {
  margin-left: auto;
}

.arrow_circle {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.1137254902);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .arrow_circle {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.1137254902);
  }
}
/* ================================================================ */
.what_happening {
  background-image: linear-gradient(to right, #3c3535, #221f1f);
  padding: 120px 0;
}
.what_happening .section_header {
  margin: 0;
  margin-bottom: 40px;
}
.what_happening .section_header h5 {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
}
.what_happening .section_header h5 span {
  color: #e5c058;
  font-weight: 700;
}
.what_happening .section_header .link_to h6 {
  color: #e5c058;
  margin: 0;
  text-transform: uppercase;
  margin-right: 15px;
}
.what_happening .nav .nav-item .nav-link {
  color: #fff;
  padding: 0;
  margin-right: 32px;
  font-weight: 500;
}
.what_happening .nav .nav-item .nav-link.active {
  color: #e5c058;
  background-color: transparent;
}
.what_happening .what_happen_slider {
  padding-left: 300px;
}
@media (max-width: 1920px) {
  .what_happening .what_happen_slider {
    padding-left: 100px;
  }
}
@media (max-width: 1440px) {
  .what_happening .what_happen_slider {
    padding-left: 70px;
  }
}
@media (max-width: 1024px) {
  .what_happening .what_happen_slider {
    padding-left: 50px;
  }
}
@media (max-width: 600px) {
  .what_happening .what_happen_slider {
    padding-left: 20px;
  }
}

.what_happen_card {
  background-color: rgba(255, 255, 255, 0.1019607843);
  margin-right: 64px;
  margin-top: 32px;
}
.what_happen_card .card_img {
  height: 280px;
  width: 100%;
}
.what_happen_card .card_body {
  padding: 14px 20px;
}
.what_happen_card .card_body .date {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5843137255);
}
.what_happen_card .card_body .card_title {
  color: #fff;
  -webkit-line-clamp: 2 !important;
  width: 90%;
}
.what_happen_card .card_body .card_text {
  color: rgba(255, 255, 255, 0.5843137255);
  font-size: 1rem;
  -webkit-line-clamp: 3 !important;
}
.what_happen_card .card_body hr {
  color: #e5e5e5;
}
.what_happen_card .card_body a {
  color: #e5c058;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.what_happen_card .card_body a img {
  margin-left: 10px;
}

.white_what_happening {
  background-image: none;
  background-color: #fff;
}
.white_what_happening .section_header h5 {
  color: #221f1f;
}
.white_what_happening .section_header h5 span {
  color: #0d7375;
}
.white_what_happening .section_header .link_to h6 {
  color: #0d7375;
}
.white_what_happening .section_header .link_to .arrow_circle {
  background-color: rgba(156, 156, 156, 0.2);
  border: 1px solid rgba(156, 156, 156, 0.2);
}
.white_what_happening .nav .nav-item .nav-link {
  color: #9c9c9c;
}
.white_what_happening .nav .nav-item .nav-link.active {
  color: #0d7375;
}
.white_what_happening .what_happen_card .date {
  color: rgba(34, 31, 31, 0.6);
}
.white_what_happening .what_happen_card .card_title {
  color: #221f1f;
}
.white_what_happening .what_happen_card .card_text {
  color: rgba(34, 31, 31, 0.6);
}
.white_what_happening .what_happen_card hr {
  color: #9c9c9c;
}
.white_what_happening .what_happen_card a {
  color: #0d7375;
}

.skycolor_what_happening {
  background-image: none;
  background-color: #fff;
}
.skycolor_what_happening .section_header h5 {
  color: #221f1f;
}
.skycolor_what_happening .section_header h5 span {
  color: #52a9dc;
}
.skycolor_what_happening .section_header .link_to h6 {
  color: #52a9dc;
}
.skycolor_what_happening .section_header .link_to .arrow_circle {
  background-color: rgba(156, 156, 156, 0.2);
  border: 1px solid rgba(156, 156, 156, 0.2);
}
.skycolor_what_happening .nav .nav-item .nav-link {
  color: #9c9c9c;
}
.skycolor_what_happening .nav .nav-item .nav-link.active {
  color: #52a9dc;
}
.skycolor_what_happening .what_happen_card .date {
  color: rgba(34, 31, 31, 0.6);
}
.skycolor_what_happening .what_happen_card .card_title {
  color: #221f1f;
}
.skycolor_what_happening .what_happen_card .card_text {
  color: rgba(34, 31, 31, 0.6);
}
.skycolor_what_happening .what_happen_card hr {
  color: #9c9c9c;
}
.skycolor_what_happening .what_happen_card a {
  color: #52a9dc;
}

.blue_what_happening {
  background-image: none;
  background-color: #fff;
}
.blue_what_happening .section_header h5 {
  color: #252525;
  font-weight: 300;
}
.blue_what_happening .section_header h5 span {
  color: #243770;
  font-weight: 600;
}
.blue_what_happening .section_header .link_to h6 {
  color: #243770;
}
.blue_what_happening .section_header .link_to .arrow_circle {
  background-color: rgba(156, 156, 156, 0.2);
  border: 1px solid rgba(156, 156, 156, 0.2);
}
.blue_what_happening .nav .nav-item .nav-link {
  color: #9c9c9c;
}
.blue_what_happening .nav .nav-item .nav-link.active {
  color: #243770;
}
.blue_what_happening .what_happen_card {
  box-shadow: 0 10px 7px rgba(0, 0, 0, 0.07);
  margin-bottom: 50px;
}
.blue_what_happening .what_happen_card .date {
  color: rgba(34, 31, 31, 0.6);
}
.blue_what_happening .what_happen_card .card_title {
  color: #221f1f;
}
.blue_what_happening .what_happen_card .card_text {
  color: rgba(34, 31, 31, 0.6);
}
.blue_what_happening .what_happen_card hr {
  color: #9c9c9c;
}
.blue_what_happening .what_happen_card a {
  color: #243770;
}

/* ================================================================ */
.get_toutch {
  padding: 145px 0;
  background-position: top !important;
  border-bottom: 3px solid #fff;
}
.get_toutch .section_header {
  margin: 0;
}
.get_toutch .section_header h5 {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
}
.get_toutch .section_header p {
  font-size: 1.2rem;
  color: #9c9c9c;
}
.get_toutch .section_header .form-group {
  width: 589px;
  background-color: #fff;
  border-radius: 60px;
  height: 65px;
  position: relative;
  margin-top: 45px;
  max-width: 100%;
}
.get_toutch .section_header .form-group .btn {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translate(0, -50%);
  background-color: #404040;
  border-radius: 60px;
  height: 85%;
  width: 25%;
  color: #fff;
}
.get_toutch .section_header .form-group .btn:hover {
  color: #000;
  background-color: #fff;
}
.get_toutch .section_header .form-group .from-control {
  height: 100%;
  width: 75%;
  border-radius: 60px;
  border: 1px solid #fff;
  padding-left: 32px;
}
.get_toutch .btn_see_all {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 40px;
  margin-top: 50px;
  padding: 20px 48px 20px 48px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  color: #000;
}
.get_toutch .btn_see_all img {
  margin-left: 10px;
}
.get_toutch .btn_see_all:hover {
  background-color: transparent;
  color: #fff;
}

/* ================================================================ */
.contact_us_section {
  background-color: #1d1f22;
  padding: 144px 0;
  padding-bottom: 80px;
}
.contact_us_section .section_header h6 {
  font-size: 1rem;
  color: #fff;
}
.contact_us_section .section_header h5 {
  font-size: 1.9rem;
  color: #fff;
  text-transform: capitalize;
}
.contact_us_section .contact_info {
  margin-top: 120px;
}
.contact_us_section .contact_info h6 {
  color: #808080;
  font-size: 0.8rem;
}
.contact_us_section .contact_info a {
  display: block;
  color: #fff;
  font-size: 1.9rem;
}
.contact_us_section form .form-group {
  margin-bottom: 50px;
}
.contact_us_section form .form-group .form-control {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #404040;
  padding-left: 0;
  padding-bottom: 15px;
  color: #fff;
}
.contact_us_section form textarea {
  resize: none;
  height: 100px;
}
.contact_us_section form .btn_submit button {
  padding: 9px 16px;
  color: #000;
  border: 1px solid #fff;
  border-radius: 6px;
  font-weight: 500;
}
.contact_us_section form .btn_submit button:hover {
  color: #fff;
  background-color: transparent;
}

/* ================================================================ */
.about_what_we_do .section_header h5 {
  color: #243770;
  font-size: 2.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ================================================================ */
.our_company {
  background-color: #fff;
  padding: 120px 0;
}
.our_company .section_header {
  margin: 0;
  margin-bottom: 70px;
  text-align: center;
}
.our_company .section_header h5 {
  color: #243770;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.company_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
/* ================================================================ */
.mobilevew {
  display: none;
}

.prand_forumla_purpose {
  background-color: #fff;
}
.prand_forumla_purpose hr {
  color: #404040;
  margin: 0;
}
.prand_forumla_purpose .wrapper {
  padding: 120px 0;
}
.prand_forumla_purpose .section_header {
  margin: 0;
  margin-top: 40px;
}
.prand_forumla_purpose .section_header h5 {
  text-transform: uppercase;
  color: #333333;
  font-weight: 300;
}
.prand_forumla_purpose .section_header h5 span {
  color: #243770;
  font-weight: 500;
}
.prand_forumla_purpose .top_section_header {
  margin-bottom: 70px;
  text-align: center;
}
.prand_forumla_purpose .top_section_header h5 {
  color: #243770;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.prand_forumla_purpose .card_text p {
  color: #9c9c9c;
  font-weight: 400;
  line-height: 30px;
  font-size: 1.2rem;
}
.prand_forumla_purpose .card_img {
  height: 550px;
}
.prand_forumla_purpose .prand_card {
  width: 95%;
}
.prand_forumla_purpose .our_values {
  margin-top: 70px;
}
.prand_forumla_purpose .our_values .our_values_cont h5 {
  margin-bottom: 30px;
}
.prand_forumla_purpose .our_values ul li {
  margin-bottom: 10px;
}
.prand_forumla_purpose .our_values ul li p {
  color: #9c9c9c;
}
.prand_forumla_purpose .our_values .our_values_img .card_img {
  height: 280px;
}

/* ================================================================ */
.our_journy {
  background-color: #ffffff;
  padding: 120px 0 100px 0;
}
.our_journy .section_header {
  text-align: center;
  margin-bottom: 85px;
}
.our_journy .section_header h5 {
  color: #243770;
  text-transform: uppercase;
  font-size: 3rem;
}
.our_journy .year_card {
  text-align: center;
  position: relative;
}
.our_journy .year_card .number {
  font-size: 1.3rem;
  color: #333333;
  font-weight: 500;
}
.our_journy .year_card::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 8px;
  left: 0;
  height: 1px;
  z-index: -1;
  border: 1px dotted rgba(29, 31, 34, 0.2);
}
.our_journy .year_card .pullet {
  position: relative;
  width: 16px;
  height: 16px;
  background-color: #333333;
  border-radius: 50%;
  margin: auto;
  margin-top: 8px;
}
.our_journy .year_card .pullet .small_bullet {
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.our_journy .swiper_years_slider {
  margin-bottom: 100px;
}
.our_journy .swiper_years_slider .swiper-slide-active .year_card .number {
  color: #243770;
}
.our_journy .swiper_years_slider .swiper-slide-active .year_card .pullet {
  background-color: #243770;
}
.our_journy .swiper_years_slider .swiper-slide-active .year_card .pullet .small_bullet {
  background-color: white;
}
.our_journy .swiper-button-next,
.our_journy .swiper-button-prev {
  background-image: unset;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our_journy .swiper-button-prev img {
  transform: rotate(180deg);
}
.our_journy .swiper_years_img_slider .swiper-slide {
  width: 560px;
  height: 400px;
}
.our_journy .swiper_years_img_slider .swiper-slide .card_img {
  width: 100%;
  height: 100%;
}

/* ================================================================ */
.about_ceo_messages {
  background-color: #ffffff;
  padding: 120px 0 140px 0;
}
.about_ceo_messages .header_tit {
  font-size: 1.2rem;
  color: rgba(51, 51, 51, 0.8);
  font-weight: 500;
  text-align: center;
}
.about_ceo_messages .header_tit2 {
  font-size: 3.1rem;
  font-weight: 500;
  text-align: center;
  color: #243770;
}
.about_ceo_messages .ce_img {
  margin-top: 65px;
  margin-bottom: 45px;
}
.about_ceo_messages .ce_img .card_img {
  width: 125px;
  height: 125px;
  margin: auto;
}
.about_ceo_messages .card_text {
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}
.about_ceo_messages .card_text p {
  color: rgba(51, 51, 51, 0.8);
  text-align: center;
}
.about_ceo_messages .slag {
  text-align: center;
  color: #243770;
  font-size: 1.2rem;
}
.about_ceo_messages .foot {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(29, 31, 34, 0.8);
}

/* ================================================================ */
.our_location {
  background-color: #fff;
  padding: 120px 0;
}
.our_location .section_header {
  margin: 0;
  text-align: center;
  margin-bottom: 75px;
}
.our_location .section_header h6 {
  color: #333333;
}
.our_location .section_header h5 {
  color: #243770;
  font-size: 3.2rem;
  margin-top: 35px;
}

.location_card {
  text-align: center;
}
.location_card .card_icon {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location_card h5 {
  color: #333333;
  font-size: 1rem;
  margin-top: 24px;
}
.location_card p {
  margin-top: 16px;
  font-size: 1rem;
  color: #243770;
  text-decoration: underline;
  text-transform: uppercase;
}

/* ================================================================ */
.chirman_ceo {
  background-color: #fff;
}
.chirman_ceo .hr_line {
  padding-top: 50px;
}
.chirman_ceo .hr_line hr {
  color: #404040;
  margin: 0;
}

.leader_box {
  margin-bottom: 70px;
}
.leader_box .section_header {
  margin: 0;
  margin-bottom: 70px;
}
.leader_box .section_header h5 {
  margin: 0;
  text-align: center;
  color: #243770;
  font-size: 2rem;
  font-weight: 700;
}
.leader_box.chirman_box {
  padding-top: 180px;
}
.leader_box.ceo_box {
  padding-top: 80px;
}
.leader_box .leader_box_info {
  box-shadow: 0 20px 17px rgba(0, 0, 0, 0.08);
}
.leader_box .leader_box_info .card_img {
  min-width: 100%;
  max-width: 100%;
  height: 100%;
}
.leader_box .card_body {
  background-color: #fff;
  padding: 40px 32px;
  min-height: 100%;
}
.leader_box .card_body h5 {
  text-align: left !important;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.leader_box .card_body h6 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
}
.leader_box .card_body p {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 16px;
  color: #404040;
}
.leader_box .card_body .bi_quto p {
  width: 90%;
  font-size: 1rem;
  margin: auto;
  color: #404040;
}
.leader_box .card_body .bi_quto .bi_quto2 {
  text-align: right;
}

/* ================================================================ */
.leadership {
  background-color: #fff;
  padding: 65px 0 80px 0;
}
.leadership .section_header {
  margin: 0;
  text-align: center;
  margin-bottom: 70px;
}
.leadership .section_header h6 {
  color: #fff;
}
.leadership .section_header h5 {
  margin: 0;
  color: #243770;
  font-weight: 700;
  margin-top: 30px;
}
.leadership .section_header p {
  margin-top: 40px;
  color: #9d9d9c;
}

.team_card {
  margin-bottom: 32px;
}
.team_card .card_img {
  height: 312px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team_card .card_img img {
  -o-object-position: top;
     object-position: top;
}
.team_card .contetn {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-bottom: 25px;
  position: relative;
  width: 100%;
}
.team_card .contetn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to bottom, rgba(217, 217, 217, 0), #221f1f);
}
.team_card .contetn h5,
.team_card .contetn p {
  color: #fff;
}
.team_card .contetn h5 {
  font-size: 1.3rem;
  margin: 0;
}
.team_card .contetn p {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
}

/* ================================================================ */
.breadcrumb {
  background-color: #1d1f22;
  padding: 35px 0;
  margin: 0;
}
.breadcrumb li {
  margin-right: 21px;
  position: relative;
}
.breadcrumb li a {
  color: #9c9c9c;
  font-size: 0.8rem;
  color: rgba(51, 51, 51, 0.4);
}
.breadcrumb li::after {
  content: "\f105";
  position: absolute;
  left: -14px;
  top: 6px;
  color: rgba(51, 51, 51, 0.4);
  font-size: 0.8rem;
}
.breadcrumb li.active a {
  color: #243770;
}
.breadcrumb li:first-child::after {
  content: "";
}

.white_breadcrumb {
  background-color: #fff;
}
.white_breadcrumb li a {
  color: rgba(51, 51, 51, 0.4);
}

.skycolor_breadcrumb {
  background-color: #fff;
}
.skycolor_breadcrumb li a {
  color: rgba(51, 51, 51, 0.4);
}

.gold_breadcrumb {
  background-color: #fff;
}
.gold_breadcrumb li a {
  color: rgba(51, 51, 51, 0.4);
}

.alansar {
  background-color: #1d1f22;
  padding: 78px 0;
}
.alansar .section_header {
  margin: 0;
  text-align: center;
  margin-bottom: 65px;
}
.alansar .section_header h5 {
  margin: 0;
  color: #e5c058;
  font-size: 2rem;
  font-weight: 700;
}
.alansar p {
  margin: 0;
  margin-bottom: 40px;
  color: rgba(51, 51, 51, 0.7);
  line-height: 27.32px;
  font-size: 1.2rem;
  text-align: center;
}

.white_alnasar {
  background-color: #fff;
}
.white_alnasar .section_header h5 {
  color: #0d7375;
}
.white_alnasar p {
  color: rgba(51, 51, 51, 0.7);
}
.white_alnasar hr {
  color: #9c9c9c;
}

.alansar_card {
  margin-top: 64px;
  text-align: center;
  border-right: 1px solid rgba(156, 156, 156, 0.4);
}
.alansar_card h5 {
  color: #0d7375;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.alansar_card p {
  color: rgba(64, 64, 64, 0.8);
  font-size: 1.2rem;
}
.alansar_card.last_alansar_card {
  border-right: 0;
}

.skycolor_alnasar {
  background-color: #fff;
}
.skycolor_alnasar .section_header h5 {
  color: #52a9dc;
}
.skycolor_alnasar p {
  color: #404040;
  margin-bottom: 30px !important;
}

.blue_alnasar {
  background-color: #fff;
}
.blue_alnasar .section_header h5 {
  color: #243770;
}
.blue_alnasar p {
  color: #404040;
  margin-bottom: 30px !important;
}

/* ================================================================ */
.company_videos {
  min-height: 830px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.company_videos .content {
  position: relative;
  z-index: 5;
  padding-bottom: 70px;
}
.company_videos .content h5 {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}
.company_videos .content p {
  color: #fff;
  font-size: 1.2rem;
}
.company_videos::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(29, 31, 34, 0.4), rgba(64, 64, 64, 0.6));
}
.company_videos .play_btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  cursor: pointer;
}

.our_services_section {
  padding: 120px 0;
  background-color: #fff;
  border-top: 1px solid rgba(64, 64, 64, 0.2);
}
.our_services_section .section_header {
  text-align: center;
}
.our_services_section .section_header h5 {
  color: #243770;
  font-size: 3rem;
  font-weight: 500;
}
.our_services_section .section_header p {
  color: #9c9c9c;
  font-size: 1.2rem;
  margin-top: 48px;
}
.our_services_section .btn_all {
  text-align: center;
}
.our_services_section .btn_all a {
  padding: 24px 48px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #243770;
  color: #243770;
  border-radius: 40px;
}
.our_services_section .btn_all a:hover {
  background-color: #243770;
  color: #fff;
}

.our_servcard {
  width: 90%;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  box-shadow: 0 17px 13px rgba(0, 0, 0, 0.08);
}
.our_servcard .card_img {
  height: 328px;
  overflow: hidden;
}
.our_servcard .card_img img {
  transition: all 0.3s ease-in-out;
}
.our_servcard h5 {
  margin-top: 32px;
  text-align: center;
  color: #243770;
  font-size: 1.3rem;
}
.our_servcard:hover img {
  transform: scale(1.1) rotate(3deg);
}

.white_our_services_section {
  background-image: none;
  background-color: #fff;
}
.white_our_services_section .section_header h5 {
  color: #0d7375;
}
.white_our_services_section .our_servcard {
  box-shadow: 0 20px 10px 5px rgba(0, 0, 0, 0.05);
  padding: 0;
  position: relative;
  padding-bottom: 70px;
  display: block;
}
.white_our_services_section .our_servcard .card_img {
  width: 90%;
  border-radius: 0 10px 10px 0;
  height: 240px;
}
.white_our_services_section .our_servcard .card_img img {
  border-radius: 0 10px 10px 0;
}
.white_our_services_section .our_servcard .tringle {
  position: absolute;
  top: 0;
  right: 0;
}
.white_our_services_section .our_servcard .card_body {
  padding: 30px;
}
.white_our_services_section .our_servcard h5 {
  color: rgba(34, 31, 31, 0.802);
  text-align: left;
  font-size: 1.2rem;
  -webkit-line-clamp: 1 !important;
}
.white_our_services_section .our_servcard p {
  color: #404040;
  font-size: 1rem;
  font-weight: 300;
  line-height: 27px;
  -webkit-line-clamp: 2 !important;
}

.skycolor_our_services_section {
  background-image: none;
  background-color: #fff;
}
.skycolor_our_services_section .section_header h5 {
  color: #52a9dc;
}
.skycolor_our_services_section .our_servcard {
  box-shadow: 0 20px 10px 5px rgba(0, 0, 0, 0.05);
  padding: 0;
  position: relative;
  padding-bottom: 70px;
  display: block;
}
.skycolor_our_services_section .our_servcard .card_img {
  width: 90%;
  border-radius: 0 10px 10px 0;
  height: 240px;
}
.skycolor_our_services_section .our_servcard .card_img img {
  border-radius: 0 10px 10px 0;
}
.skycolor_our_services_section .our_servcard .tringle {
  position: absolute;
  top: 0;
  right: 0;
}
.skycolor_our_services_section .our_servcard .card_body {
  padding: 30px;
}
.skycolor_our_services_section .our_servcard h5 {
  color: rgba(34, 31, 31, 0.802);
  text-align: left;
  font-size: 1.2rem;
  -webkit-line-clamp: 1 !important;
}
.skycolor_our_services_section .our_servcard p {
  color: #404040;
  font-size: 1rem;
  font-weight: 300;
  line-height: 27px;
  -webkit-line-clamp: 2 !important;
}

.principles {
  padding: 80px 0 120px 0;
}
.principles .section_header {
  text-align: center;
}
.principles .section_header h5 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.principles .section_header p {
  color: #221f1f;
  font-size: 1rem;
  margin-bottom: 40px;
}
.principles .icon_img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.principles .icon_img img {
  height: 100px;
}
.principles .custom_progress_arrows {
  display: flex;
  align-items: center;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  opacity: 0.6;
}
.principles .custom_progress_arrows img {
  width: 20px;
}
.principles .custom_progress_arrows:hover {
  opacity: 1;
}
.principles .custom_progress_arrows .custom_arrow_next {
  margin-right: 10px;
  cursor: pointer;
}
.principles .custom_progress_arrows .custom_arrow_next img {
  transform: rotate(180deg);
}
.principles .custom_progress_arrows .custom_arrow_prev {
  margin-left: 10px;
  cursor: pointer;
}
.principles .our_produc_design_success_slider_progressbar {
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  background: #d9d9d9;
  background-image: linear-gradient(to right, #221f1f, #221f1f);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.4s ease-in-out;
  border-radius: 4px;
  margin-top: 4px;
}
.principles .our_produc_design_success_slider_progressbar .sr-only {
  position: absolute;
  border-radius: 5px;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.white_principles .section_header h5 {
  color: #0d7375;
}
.white_principles .our_produc_design_success_slider_progressbar {
  background-image: linear-gradient(to right, #76bfcd, #76bfcd);
}

.certifications_licence {
  padding: 120px 0;
  background-image: linear-gradient(to right bottom, #3c3535, #221f1f);
}
.certifications_licence .section_header {
  text-align: center;
}
.certifications_licence .section_header h6 {
  color: #9c9c9c;
  font-size: 1.2rem;
}
.certifications_licence .section_header h5 {
  color: #e5c058;
  font-size: 3rem;
  font-weight: 500;
}
.certifications_licence p {
  color: #9c9c9c;
  font-size: 1.2rem;
  text-align: center;
  width: 90%;
  margin: auto;
  margin-top: 32px;
  line-height: 30px;
}
.certifications_licence .slick-arrow {
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.certifications_licence .slick-next {
  right: 0px;
}
.certifications_licence .slick-next::before {
  content: url("../images/Icons/Fillarrow.svg");
}
.certifications_licence .slick-prev {
  left: 0px;
}
.certifications_licence .slick-prev::before {
  transform: rotate(180deg);
  display: block;
  content: url("../images/Icons/Fillarrow.svg");
}

.cert_card {
  padding: 24px;
  width: 380px;
  margin: auto;
  margin-top: 72px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cert_card .card_img {
  height: 477px;
}

.white_certifications_licence {
  background-color: #fff;
  background-image: unset;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}
.white_certifications_licence .section_header {
  text-align: center;
}
.white_certifications_licence .section_header h6 {
  color: #333333;
  font-size: 1.2rem;
}
.white_certifications_licence .section_header h5 {
  color: #243770;
  font-size: 3rem;
  font-weight: 500;
}
.white_certifications_licence .cert_card {
  box-shadow: 0 17px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .certifications_licence .slick-arrow {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
    background-color: rgba(51, 51, 51, 0.4);
  }
}
/* ================================================================ */
.other_sector {
  padding: 120px 0;
  background-image: url("../images/othersector.png");
}
.other_sector .section_header {
  text-align: center;
  margin-bottom: 45px;
}
.other_sector .section_header h6 {
  color: #9c9c9c;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 300;
}
.other_sector .section_header h5 {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
}
.other_sector .sector_cards .sectio_card {
  background-color: rgba(255, 255, 255, 0.1);
}
.other_sector .sector_cards .sectio_card .card_img {
  height: 240px;
}
.other_sector .sector_cards .sectio_card .card_title {
  padding: 26px 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  color: #fff;
}
.other_sector .btn_all {
  text-align: center;
}
.other_sector .btn_all a {
  padding: 24px 48px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #243770;
  color: #243770;
  border-radius: 40px;
}
.other_sector .btn_all a:hover {
  background-color: transparent;
  color: #fff;
}

.white_other_sector {
  background-image: none;
  background-color: #c2dbdb;
}
.white_other_sector .section_header h5 {
  color: #221f1f;
}
.white_other_sector .sectio_card {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 10px rgba(0, 0, 0, 0.05);
}
.white_other_sector .sectio_card .card_title {
  color: #221f1f !important;
}
.white_other_sector .btn_all {
  text-align: center;
}
.white_other_sector .btn_all a {
  color: #0d7375;
  border: 1px solid #0d7375;
}

.our_portofilio {
  padding: 70px 0;
  overflow: hidden;
  border-bottom: 4px solid #e5c058;
}
.our_portofilio .section_header {
  margin-top: 0;
}
.our_portofilio .content h6 {
  color: #1b1b1b;
  font-size: 1.1rem;
  margin: 0;
}
.our_portofilio .section_header {
  margin-bottom: 0;
}
.our_portofilio .section_header h5 {
  margin: 0;
  text-transform: uppercase;
  margin-right: 25px;
  font-size: 2.1rem;
  font-family: 300;
  color: #243770;
}
.our_portofilio .section_header h5 span {
  font-weight: 300;
  color: #000;
}
.our_portofilio .download_btn {
  text-align: right;
  margin-left: 25px;
}
.our_portofilio .download_btn a {
  padding: 24px 48px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #243770;
  color: #243770;
  background-color: #243770;
  border-radius: 60px;
}
.our_portofilio .download_btn a span {
  margin-left: 16px;
  font-size: 1.1rem;
  color: #fff;
}
.our_portofilio .download_btn a img {
  filter: brightness(0) invert(1);
}
.our_portofilio .download_btn a:hover {
  background-color: rgba(46, 85, 164, 0.9);
  border-color: rgba(46, 85, 164, 0.9);
}

.sky_our_portofilio {
  border-bottom: 4px solid #c2dbdb;
}
.sky_our_portofilio .download_btn a {
  background-color: #c2dbdb;
  border-color: #c2dbdb;
}
.sky_our_portofilio .download_btn a:hover {
  background-color: transparent;
}

.blue_our_portofilio {
  border-bottom: 4px solid #52a9dc;
}
.blue_our_portofilio .download_btn a {
  background-color: #52a9dc;
  border-color: #52a9dc;
}
.blue_our_portofilio .download_btn a span {
  color: white;
}
.blue_our_portofilio .download_btn a img {
  fill: #fff;
  filter: brightness(0) invert(1);
}
.blue_our_portofilio .download_btn a:hover {
  background-color: transparent;
}

/* ================================================================ */
.metal_our_services {
  padding: 120px 0;
  background-color: #fff;
}
.metal_our_services .section_header {
  text-align: center;
  margin-bottom: 65px;
}
.metal_our_services .section_header h6 {
  color: #9c9c9c;
  font-size: 1.2rem;
}
.metal_our_services .section_header h5 {
  color: #243770;
  font-size: 3rem;
  font-weight: 500;
}
.metal_our_services .note {
  margin-top: 65px;
}
.metal_our_services .note .note_content {
  display: flex;
  align-items: flex-start;
}
.metal_our_services .note .note_content p {
  margin: 0;
  margin-left: 25px;
  color: #243770;
  font-size: 1.7rem;
}
.metal_our_services .note .note_content img {
  margin-top: 15px;
}

.mt_service_card {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
}
.mt_service_card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.mt_service_card .card_img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt_service_card .card_img .cont {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  z-index: 4;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.mt_service_card .card_img .cont h5 {
  font-size: 1.1rem;
  color: #000;
  margin: 0;
}
.mt_service_card .card_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background-color: rgba(193, 193, 193, 0.6);
}
.mt_service_card:hover::after {
  background-color: #243770;
}
.mt_service_card:hover .cont {
  border-bottom-color: #243770;
}
.mt_service_card:hover .card_img::after {
  opacity: 0;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .mt_service_card .cont {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.1);
  }
}
/* ================================================================ */
.agency_of_future {
  background-color: #252525;
  position: relative;
}
.agency_of_future .agency_of_future_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.agency_of_future .agency_of_future_img .card_img {
  height: 100%;
}
.agency_of_future .agency_of_future_content {
  padding: 120px 0;
  padding-right: 30px;
}
.agency_of_future .agency_of_future_content .type {
  background-image: linear-gradient(to right, #347375, #76bfcd);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1.1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.agency_of_future .agency_of_future_content h5 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 72px;
  margin-bottom: 50px;
}
.agency_of_future .agency_of_future_content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 30px;
  margin-bottom: 20px;
}

.skycolor_agency_of_future .agency_of_future_content .type {
  background-image: linear-gradient(to right, #315375, #28aae1);
}
.skycolor_agency_of_future .agency_of_future_content h5 {
  position: relative;
}
.skycolor_agency_of_future .agency_of_future_content h5::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  width: 60%;
  left: 0;
  background-image: linear-gradient(to left, #315375, #28aae1);
}

/* ================================================================ */
.pupular_topics .what_happening {
  padding: 0 !important;
  padding-top: 50px !important;
}
.pupular_topics .nav .nav-item .nav-link {
  color: #9c9c9c;
}
.pupular_topics .nav .nav-item .nav-link.active {
  color: #e5c058;
}
.pupular_topics .what_happen_card .date {
  color: rgba(34, 31, 31, 0.6);
}
.pupular_topics .what_happen_card .card_title {
  color: #221f1f;
}
.pupular_topics .what_happen_card .card_text {
  color: rgba(34, 31, 31, 0.6);
}
.pupular_topics .what_happen_card hr {
  color: #9c9c9c;
}
.pupular_topics .what_happen_card {
  width: 100%;
  margin-bottom: 32px;
}
.pupular_topics .what_happen_card a span {
  color: #243770;
}
.pupular_topics hr {
  color: #9c9c9c;
}

.pagination_custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pagination_custom .nextprev {
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.pagination_custom .nextprev span {
  color: #221f1f;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 9px;
}
.pagination_custom .nextprev img {
  width: 15px;
  margin-left: 5px;
}
.pagination_custom .nextprev.prev img {
  transform: rotate(180deg);
  margin-left: 0px;
}
.pagination_custom .nextprev.prev span {
  margin-right: 9px;
}
.pagination_custom .nextprev:hover {
  opacity: 1;
}
.pagination_custom .nextprev:hover span {
  color: #221f1f;
}
.pagination_custom nav li {
  margin: 0 5px;
}
.pagination_custom nav li a {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 8px !important;
  border: 0;
  color: #b4b4b4;
}
.pagination_custom nav li.active a {
  background: #243770;
  color: #fff;
}

/* ================================================================ */
.article_strip {
  padding: 250px 0;
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 4px solid #243770;
}
.article_strip .type {
  position: relative;
  background-color: rgba(255, 255, 255, 0.17);
  padding: 5px 18px;
  z-index: 4;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  margin: auto;
}
.article_strip .type h5 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}
.article_strip .title {
  font-size: 2.1rem;
  color: #fff;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 32px;
}
.article_strip .text {
  color: #9c9c9c;
  font-size: 1.2rem;
}
.article_strip .line {
  background-color: #fff;
  height: 1px;
  width: 30px;
  display: block;
  margin: auto;
  margin-bottom: 20px;
}
.article_strip .date {
  color: #ffffff;
  font-size: 0.8rem;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .article_strip .type {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.1);
  }
}
/* ================================================================ */
.editors_pick {
  background-image: linear-gradient(to right bottom, #3c3535, #221f1f);
  padding: 120px 0;
  border-bottom: 4px solid #fff;
}
.editors_pick .section_header {
  margin: 0;
  color: #fff;
  margin-bottom: 70px;
}
.editors_pick .section_header h5 {
  font-size: 2.1rem;
  text-transform: capitalize;
}

.news_editors_pick {
  background-image: none;
  background-color: #fff;
  border-top: 1px solid rgba(64, 64, 64, 0.2);
}
.news_editors_pick .section_header h5 {
  color: #1D1F22;
}

.editors_card {
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  padding-bottom: 22px;
  position: relative;
}
.editors_card .types {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.editors_card .types li {
  position: relative;
  background-color: rgba(255, 255, 255, 0.17);
  padding: 5px 18px;
  z-index: 4;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  margin: auto;
  margin-left: 12px;
}
.editors_card .types li a {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}
.editors_card .date {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
}
.editors_card .card_title {
  color: white;
  font-size: 1.1rem;
  position: relative;
  z-index: 3;
}
.editors_card .card_text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 300;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}
.editors_card::after {
  content: "";
  background-color: rgba(52, 58, 64, 0.5);
}

/* ================================================================ */
.news_content {
  padding: 120px 0;
}
.news_content .news_date {
  display: flex;
  align-items: center;
}
.news_content .news_date span {
  color: #243770;
  font-size: 1rem;
}
.news_content .news_date .line {
  width: 35px;
  height: 1px;
  background-color: #221f1f;
  margin: 0 10px;
}
.news_content .news_parg p {
  color: rgba(34, 31, 31, 0.7);
  line-height: 36px;
  font-size: 1.2rem;
  margin-bottom: 27px;
}
.news_content .news_parg h5 {
  color: rgba(36, 55, 112, 0.7);
  font-size: 2.3rem;
  line-height: 50px;
  margin-bottom: 27px;
}
.news_content .news_parg .tags {
  margin-top: 90px;
}
.news_content .news_parg .tags li a {
  border: 1px solid #9c9c9c;
  padding: 5px 10px;
  color: #9c9c9c;
  font-size: 0.8rem;
  margin-right: 12px;
}
.news_content .news_parg .hr_line {
  margin-top: 50px;
}
.news_content .news_parg .hr_line hr {
  color: #9c9c9c;
}
.news_content .autor {
  padding-top: 50px;
}
.news_content .autor .autor_info {
  display: flex;
  align-items: center;
}
.news_content .autor .autor_info .card_img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border-radius: 50%;
}
.news_content .autor .autor_info .card_img img {
  border-radius: 50%;
}
.news_content .autor .autor_info .card_body h5,
.news_content .autor .autor_info .card_body p {
  margin: 0;
  line-height: normal;
}
.news_content .autor .autor_info .card_body h5 {
  font-size: 1.1rem;
  color: #000;
}
.news_content .autor .autor_info .card_body p {
  color: #9c9c9c;
  font-size: 1rem;
  font-weight: 300;
}
.news_content .autor .autor_social li {
  margin-left: 20px;
}
.news_content .autor .autor_social a {
  color: #221f1f;
}

/* ================================================================ */
.blog_page {
  padding-bottom: 60px;
}
.blog_page .section_header {
  margin-bottom: 50px;
  margin-top: 50px;
}
.blog_page .recent_blogs .recent_blog_head {
  margin-bottom: 24px;
  background: #373737;
  padding: 13px 0px 13px 32px;
}
.blog_page .recent_blogs .recent_blog_head h5 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 32px;
  /* 133.333% */
}
.blog_page .our_vision_strip {
  margin-top: 72px;
  padding: 80px 0;
  background-color: #404040;
}
.blog_page .our_vision_strip .categries li {
  margin-right: 40px;
  position: relative;
}
.blog_page .our_vision_strip .categries li a {
  color: rgba(255, 255, 255, 0.713);
  font-size: 1.1rem;
  font-weight: 400;
}
.blog_page .our_vision_strip .categries li::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 0;
  left: 0;
  background: #fff;
  bottom: -10px;
  transition: all 0.3s ease-in-out;
}
.blog_page .our_vision_strip .categries li:hover::after {
  width: 100%;
}
.blog_page .our_vision_strip .categries li:hover a {
  color: #fff;
}
.blog_page .our_vision_strip .categries li.active::after {
  width: 100%;
}
.blog_page .our_vision_strip .categries li.active a {
  color: #fff;
}
.blog_page .our_vision_strip .stripfilter {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: end;
}
.blog_page .our_vision_strip .stripfilter > span {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
.blog_page .our_vision_strip .stripfilter .select_filters {
  display: flex;
  align-items: center;
  justify-content: end;
}
.blog_page .our_vision_strip .stripfilter .nice-select {
  width: auto;
  height: auto;
  border: 0;
  margin: 0;
  line-height: auto;
  border-radius: 0;
  background-color: transparent;
}
.blog_page .our_vision_strip .stripfilter .nice-select .current {
  color: #fff;
}
.blog_page .our_vision_strip .stripfilter .nice-select::before {
  display: none;
}
.blog_page .our_vision_strip .stripfilter .nice-select:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
}
.blog_page .categories_cards {
  margin-top: 120px;
}

.recent_blog_card .card_img {
  height: 456px;
  margin-bottom: 32px;
}
.recent_blog_card span {
  color: #243770;
  font-size: 0.9rem;
  font-weight: 600;
}
.recent_blog_card .link {
  margin: 10px 0;
}
.recent_blog_card .link h5 {
  color: var(--gray-900, #101828);
  font-size: 1.3rem;
  font-weight: 600;
  -webkit-line-clamp: 2 !important;
}
.recent_blog_card p {
  margin: 0;
  color: var(--gray-500, #667085);
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  -webkit-line-clamp: 2 !important;
}
.recent_blog_card .type {
  margin-top: 24px;
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  background: rgba(34, 31, 31, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  color: #9c9c9c;
  font-size: 0.9rem;
  font-weight: 500;
}

.wide_card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}
.wide_card .card_img {
  width: 320px;
  height: 200px;
  max-width: 100%;
  flex: none;
  margin-right: 20px;
}
.wide_card span {
  color: #243770;
  font-size: 0.9rem;
  font-weight: 600;
}
.wide_card .link {
  margin: 10px 0;
}
.wide_card .link h5 {
  color: var(--gray-900, #101828);
  font-size: 1rem;
  font-weight: 600;
  -webkit-line-clamp: 2 !important;
}
.wide_card p {
  margin: 0;
  color: var(--gray-500, #667085);
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  -webkit-line-clamp: 2 !important;
}
.wide_card .type {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  background: rgba(34, 31, 31, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  color: #9c9c9c;
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 10px;
}
.wide_card .type.type2 {
  color: #9c9c9c;
}

.news_strip_card {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.news_strip_card .news_slag {
  background: rgba(34, 31, 31, 0.1);
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  margin-right: 50px;
}
.news_strip_card .news_slag span {
  color: #9c9c9c;
  font-size: 14px;
  font-weight: 500;
}
.news_strip_card h5 {
  color: #252525;
  font-size: 1rem;
  font-weight: 700;
  line-height: 25px;
  /* 216.125% */
  -webkit-line-clamp: 2 !important;
}

.categry_card {
  margin-bottom: 50px;
}
.categry_card .card_img {
  height: 250px;
  margin-bottom: 32px;
}
.categry_card .card_img .img_parent {
  position: unset;
}
.categry_card .card_img .img_parent img {
  -o-object-fit: unset;
     object-fit: unset;
}
.categry_card span {
  color: #243770;
  font-size: 0.9rem;
  font-weight: 600;
}
.categry_card .link {
  margin: 10px 0;
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.categry_card .link h5 {
  color: var(--gray-900, #101828);
  font-size: 1rem;
  font-weight: 600;
  -webkit-line-clamp: 2 !important;
}
.categry_card p {
  margin: 0;
  color: var(--gray-500, #667085);
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  -webkit-line-clamp: 2 !important;
}
.categry_card .type {
  margin-top: 24px;
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  background: rgba(34, 31, 31, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  color: #9c9c9c;
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 10px;
}
.categry_card .type.type2 {
  color: var(--pink-700, #c11574);
}

/* ================================================================ */
.event_details {
  padding-bottom: 70px;
}
.event_details .section_header h5 {
  text-transform: capitalize;
}
.event_details .event_details_img {
  margin-top: 32px;
}
.event_details .event_details_img .card_img {
  height: 650px;
}
.event_details .card_text {
  margin-top: 32px;
}
.event_details .card_text p {
  color: rgba(27, 27, 27, 0.8);
  font-size: 1.15rem;
  line-height: 30px;
}
.event_details .hr_line {
  padding: 30px 0;
}
.event_details .hr_line hr {
  color: #1b1b1b;
}
.event_details .event_gallery h5 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 300;
}
.event_details .event_gallery h5 span {
  font-weight: 500;
}
.event_details .event_gallery .gallery_cards_slider .slick-list {
  margin: 0 -12px;
}
.event_details .event_gallery .gallery_cards_slider .slick-next {
  bottom: -60px;
  right: 10px;
  top: unset;
  z-index: 4;
}
.event_details .event_gallery .gallery_cards_slider .slick-prev {
  top: unset;
  bottom: -60px;
  left: 10px;
}

.arrow_style .slick-arrow {
  top: -50px;
}
.arrow_style .slick-arrow::before {
  content: "";
  background-image: url("../images/arrowline.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block;
}
.arrow_style .slick-next {
  right: 0;
}
.arrow_style .slick-prev {
  right: 40px;
  left: unset;
  z-index: 2;
}
.arrow_style .slick-prev:before {
  transform: rotate(180deg);
}

.dots_style .slick-dots {
  bottom: -50px;
}
.dots_style .slick-dots li {
  margin: 0;
  width: 40px;
  height: 3px;
  margin: 0 6px;
  transition: all 0.3s ease-in-out;
}
.dots_style .slick-dots li button {
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: #243770;
  border-radius: 6px;
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
}
.dots_style .slick-dots li button:before {
  content: "";
  margin: 0;
  width: 100%;
  height: 100%;
}
.dots_style .slick-dots li.slick-active {
  width: 121px;
}
.dots_style .slick-dots li.slick-active button {
  opacity: 1;
}

.gallery_card {
  margin-top: 30px;
  margin: 0 12px;
  cursor: pointer;
}
.gallery_card .card_img {
  height: 300px !important;
}
.gallery_card .card_img .video_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery_modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(27, 27, 27, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.gallery_modal .gallery_modal_wrapper {
  position: relative;
  transform: translateY(200px);
  transition: all 0.3s ease-in-out;
}
.gallery_modal .gallery_modal_wrapper .close_modal {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 6;
  background: rgba(0, 0, 0, 0.25);
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.gallery_modal .gallery_modal_wrapper .close_modal:hover {
  background-color: rgba(0, 0, 0, 0.55);
}

.gallery_modal_wrapper {
  width: 85%;
  height: 798px;
  margin: auto;
  max-width: 100%;
}
.gallery_modal_wrapper .card_img {
  height: 798px;
}

.active_gallery_modal {
  overflow: hidden;
}
.active_gallery_modal #gallery_modal_img {
  opacity: 1 !important;
  z-index: 999;
}
.active_gallery_modal #gallery_modal_img .gallery_modal_wrapper {
  transform: translateY(0px) !important;
}

.project_img_slider {
  overflow: hidden;
}
.project_img_slider .slick-list {
  margin: 0 0 !important;
}
.project_img_slider .slick-arrow {
  bottom: 6px;
  top: unset;
  opacity: 0;
  z-index: 3;
}
.project_img_slider .slick-arrow::before {
  width: 24px;
  height: 24px;
}
.project_img_slider .slick-prev {
  right: unset;
  left: 15px;
}
.project_img_slider .slick-next {
  right: 20px;
}
.project_img_slider .slick-dots {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  bottom: 0;
  padding: 10px 0 18px 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(30px);
}
.project_img_slider:hover .slick-arrow {
  opacity: 1;
}
.project_img_slider:hover .slick-dots {
  opacity: 1;
  transform: translateY(0px);
}

/* ================================================================ */
.avalible_jobs {
  background-color: #f6f6f6;
}
.avalible_jobs .avilible_wrapper {
  background-color: #f6f6f6;
  padding: 65px 88px;
  margin-top: -150px;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(55, 55, 55, 0.2);
}
.avalible_jobs .avilible_wrapper .section_header h5 {
  text-transform: capitalize;
  font-size: 1.5rem;
}
.avalible_jobs .all_cacancies {
  text-align: center;
  margin-top: 65px;
}
.avalible_jobs .all_cacancies .btn {
  background-color: #243770;
  padding: 27px 103px;
  border-radius: 0;
  color: #fff;
}

.vacancy_card {
  background-color: #fff;
  padding: 32px;
  margin-top: 40px;
}
.vacancy_card .card_title h5 {
  color: #1e1e1e;
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.vacancy_card .card_text p {
  margin: 0;
}
.vacancy_card .card_text img {
  margin-right: 16px;
}
.vacancy_card .card_text span {
  font-size: 1rem;
  color: rgba(55, 55, 55, 0.7);
  font-weight: 300;
}
.vacancy_card .hr_line {
  padding: 10px 0;
}
.vacancy_card .hr_line hr {
  color: rgba(55, 55, 55, 0.2);
}

/* ================================================================ */
.vacancy_details {
  background-color: #f6f6f6;
}
.vacancy_details .apply_job {
  box-shadow: 0 5px 45px rgba(0, 0, 0, 0.08);
  padding: 30px 17px;
}
.vacancy_details .apply_job .apply {
  width: 100%;
  padding: 25px;
  margin-bottom: 30px;
  background-color: #243770;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #243770;
}
.vacancy_details .apply_job .apply:hover {
  background-color: transparent;
  color: #373737;
}
.vacancy_details .apply_job .linkedin_apply {
  background-color: transparent;
  border: 1px solid #373737;
  color: #373737;
}
.vacancy_details .apply_job .linkedin_apply:hover {
  background-color: #373737;
  color: #fff;
}
.vacancy_details .apply_job h6 {
  font-size: 0.9rem;
  margin: 0;
}
.vacancy_details .apply_job h5 {
  font-size: 1.1rem;
  margin-top: 65px;
  margin-bottom: 15px;
}
.vacancy_details .apply_job li {
  margin-right: 25px;
}
.vacancy_details .vacancy_details_wrapper {
  background-color: #f6f6f6;
  padding: 65px 88px;
  margin-top: -150px;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(55, 55, 55, 0.2);
}
.vacancy_details .details_content {
  padding-right: 30px;
}
.vacancy_details .solgan span {
  font-weight: 700;
}
.vacancy_details .cont {
  margin-top: 72px;
}
.vacancy_details .cont h5 {
  font-weight: 700;
  margin-bottom: 32px;
  font-size: 1.4rem;
}
.vacancy_details .cont p {
  font-size: 1rem;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #373737;
}
.vacancy_details .cont p span {
  font-weight: 700;
}
.vacancy_details .intersting .section_header {
  margin-bottom: 0 !important;
  margin-top: 70px;
}
.vacancy_details .intersting .section_header h5 {
  margin: 0;
  margin-bottom: 0 !important;
  font-size: 1.4rem;
}

.apply_jop_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 1344px;
  max-width: 100%;
  padding: 70px 42px;
  z-index: 10 !important;
  max-height: 90%;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}
.apply_jop_modal .close {
  position: absolute;
  top: 64px;
  right: 48px;
  cursor: pointer;
}
.apply_jop_modal .modal_header {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 45px;
}
.apply_jop_modal .modal_header span {
  font-weight: 600;
}
.apply_jop_modal .form-control {
  height: 56px;
  border-radius: 0;
  border: 1px solid rgba(34, 31, 31, 0.3);
  background-color: #fff;
  margin-bottom: 40px;
}
.apply_jop_modal .form-control::-moz-placeholder {
  font-size: 0.9rem;
  color: rgba(34, 31, 31, 0.6);
}
.apply_jop_modal .form-control::placeholder {
  font-size: 0.9rem;
  color: rgba(34, 31, 31, 0.6);
}
.apply_jop_modal textarea.form-control {
  height: 340px;
  resize: none;
}
.apply_jop_modal .condiotn {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.apply_jop_modal .condiotn label {
  color: rgba(27, 27, 27, 0.6);
  margin-left: 20px;
  font-size: 1.1rem;
}
.apply_jop_modal .par p {
  color: rgba(27, 27, 27, 0.6);
  font-size: 1.1rem;
}
.apply_jop_modal .par p a {
  color: #221f1f;
  text-decoration: underline;
}
.apply_jop_modal .btn_submit .btn {
  background-color: #221f1f;
  border: 1px solid #221f1f;
  width: 100%;
  padding: 18px;
  text-align: center;
  color: #fff;
  border-radius: 0;
}
.apply_jop_modal .btn_submit .btn img {
  margin-right: 20px;
}
.apply_jop_modal .btn_submit .btn:hover {
  background-color: rgba(34, 31, 31, 0.8117647059);
}
.apply_jop_modal .form-group {
  position: relative;
}
.apply_jop_modal .form-group .imageInput_label {
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  bottom: 27px;
  right: 25px;
}
.apply_jop_modal .form-group .imageInput_label span {
  color: #252525;
  font-size: 1.1rem;
  font-weight: 500;
}
.apply_jop_modal .form-group #imageInput {
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.apply_jop_modal .form-group .file_link {
  border: 1px solid rgba(34, 31, 31, 0.06);
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(34, 31, 31, 0.06);
}
.apply_jop_modal .file_name {
  font-size: 0.9rem !important;
  display: block !important;
  margin-top: 5px !important;
}

.active_apply_jop_modal {
  transform: translate(-50%, -50%) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.notice_prefers {
  margin-top: 100px;
}
.notice_prefers .notice_prefers_wrapper {
  background-color: #1b1b1b;
  padding: 45px 32px;
}
.notice_prefers .notice_prefers_wrapper h5 {
  color: #fff;
  font-size: 1.4rem;
}
.notice_prefers .notice_prefers_wrapper p {
  color: rgba(241, 242, 242, 0.8);
}
.notice_prefers .btn {
  background-color: #fff;
  padding: 30px 102px;
  text-align: center;
  border-radius: 0;
  font-weight: 700;
  font-size: 1.1rem;
}
.notice_prefers .btn:hover {
  background-color: transparent;
  color: #fff;
}

.contact_us_page .contact_us_section {
  padding-top: 0;
  padding-top: 200px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}
.contact_us_page .contact_us_section .contact_us_contnet h5 {
  color: #252525;
  /* headtitle bold */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.contact_us_page .contact_us_section .contact_us_contnet .content {
  margin-bottom: 45px;
}
.contact_us_page .contact_us_section .contact_us_contnet .content h6 {
  color: #252525;
  font-size: 1.1rem;
  font-weight: 500;
}
.contact_us_page .form_style .section_header h5 {
  color: #000;
  margin-bottom: 80px;
  font-size: 2.5rem;
}
.contact_us_page .form_style .form-group {
  margin-bottom: 30px;
}
.contact_us_page .form_style label {
  color: #252525;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.contact_us_page .form_style .form-control {
  border: 1px solid rgba(37, 37, 37, 0.202) !important;
  height: 56px;
  background-color: transparent;
}
.contact_us_page .form_style textarea.form-control {
  height: 170px;
  resize: none;
}
.contact_us_page .form_style .conditions {
  margin-top: 30px;
}
.contact_us_page .form_style .conditions label {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
}
.contact_us_page .form_style .conditions p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
}
.contact_us_page .form_style .conditions p span {
  font-weight: 500;
}
.contact_us_page .form_style .btn_submit {
  margin-top: 32px;
}
.contact_us_page .form_style .btn_submit .btn_style {
  width: 279px;
  height: 56px;
  border-radius: 0;
  background: #243770;
  border: 1px solid #243770;
  width: 100%;
}
.contact_us_page .form_style .btn_submit .btn_style:hover {
  background-color: #fff;
  color: #243770;
}
.contact_us_page .form_style .imageInput_label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contact_us_page .form_style .imageInput_label span {
  color: #252525;
  font-size: 1.1rem;
  font-weight: 500;
}
.contact_us_page .form_style #imageInput {
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.contact_us_page .form_style .file_link {
  border: 1px solid #252525;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  border-radius: 10px;
}
.contact_us_page .contact_us_section {
  position: relative;
}
.contact_us_page .contact_us_section .contact_us_img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

/* ================================================================ */
.our_offices {
  background-color: #1d1f22;
  padding: 120px 0;
}
.our_offices .section_header {
  margin-bottom: 64px;
}
.our_offices .section_header h5 {
  color: #fff;
  text-transform: capitalize;
}
.our_offices .office_place {
  color: rgba(255, 255, 255, 0.711);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
  min-height: 40px;
}

.ofice_card {
  background: #373737;
  margin-bottom: 48px;
}
.ofice_card .card_header {
  padding: 20px 32px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.06);
}
.ofice_card .card_header h5 {
  color: #fff;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}
.ofice_card .card_body {
  padding: 32px;
}
.ofice_card .card_body h6 {
  color: #fff;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 600;
}
.ofice_card .card_body p {
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  line-height: normal !important;
  margin-top: 40px;
}
.ofice_card .card_body a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  display: block;
  margin-top: 10px;
}

/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
.upper_footer {
  background-color: #1d1f22;
  padding-top: 0;
  margin: 0;
}
.upper_footer hr {
  color: #404040;
  margin: 0;
}
.upper_footer .wrapper {
  padding: 50px 0;
}
.upper_footer .upper_footer_h5 {
  text-align: center;
}
.upper_footer .upper_footer_h5 h5 {
  font-size: 1.9rem;
  color: #9c9c9c;
  margin: 0;
}
.upper_footer .social li {
  margin-left: 10px;
}
.upper_footer .social li a {
  color: #808080;
}

/* ================================================================ */
.footer {
  background-color: #1d1f22;
  padding: 32px 0 0px 0;
}
.footer .footer_links h5 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: #fff;
  font-size: 400;
  text-transform: uppercase;
}
.footer .footer_links li {
  margin-bottom: 12px;
}
.footer .footer_links a {
  color: #9c9c9c;
  font-size: 1rem;
}
.footer hr {
  color: #404040;
  margin: 0;
  margin-top: 120px;
}

.copy_right {
  background-color: #1d1f22;
  padding: 16px 0 70px 0;
  overflow: hidden;
}
.copy_right .section_header {
  margin: 0;
}
.copy_right .section_header h5,
.copy_right .section_header h6 {
  color: #808080;
  font-size: 0.8rem;
}
.copy_right .copy_title {
  text-align: center;
}
.copy_right .copy_title h5 {
  font-size: 11.4rem;
  margin: 0;
}

.developed_by {
  background-color: #FFFFFF;
  padding: 22px 0;
  text-align: center;
}
.developed_by h5 {
  margin: 0;
  color: #9C9C9C;
  font-size: 1.1rem;
  font-weight: 500;
}
.developed_by a {
  font-weight: 700;
  color: #243770;
  text-decoration: underline;
}

/* ================================================================ */
@media (max-width: 1500px) {
  .news_content .news_date span {
    font-size: 0.8rem;
  }
}
@media (max-width: 1350px) {
  .what_we_do .section_header .big_word {
    opacity: 0.2;
  }
  .copy_right .copy_title h5 {
    font-size: 10rem;
  }
}
@media (max-width: 1100px) {
  html {
    font-size: 14px;
  }
  .custom_navbar .logo img {
    width: 90px;
  }
  .custom_navbar {
    padding: 15px 0;
  }
  .custom_navbar .list_item {
    margin: 0 12px;
  }
  .custom_navbar .list_item .list_link {
    font-size: 0.9rem;
  }
  .header_slider_parent .header_slider .slick-prev,
  .header_slider_parent .header_slider .slick-next {
    width: 55px;
    height: 55px;
  }
  .copy_right .copy_title h5 {
    font-size: 8.5rem;
  }
  .avalible_jobs .avilible_wrapper {
    padding: 65px 30px;
  }
  .vacancy_card {
    padding: 25px;
  }
  .editors_card {
    padding: 20px;
  }
  .editors_card .wrap {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .custom_navbar .links,
  .custom_navbar .contact_btn {
    display: none;
  }
  .what_we_do .card_img {
    width: 100%;
    margin-top: 70px;
    height: 300px;
    margin-bottom: 20px;
  }
  .contact_us_section form {
    margin-top: 90px;
  }
  .upper_footer .upper_footer_h5 {
    text-align: right;
  }
  .footer .footer_links {
    margin-top: 30px;
  }
  .copy_right .copy_title h5 {
    font-size: 6.5rem;
  }
  .what_we_do .what_cont p {
    margin-top: 20px;
  }
  .what_we_do .section_header .big_word {
    top: 0;
  }
  .prand_forumla_purpose .card_img {
    height: 400px;
    margin-bottom: 15px;
  }
  .desktopimg {
    display: none !important;
  }
  .mobilevew {
    display: block !important;
  }
  .our_journy .swiper_years_img_slider .swiper-slide {
    width: 450px;
    height: 350px;
  }
  .contact_us_page .contact_us_section {
    padding-top: 0;
  }
  .contact_us_page .contact_us_section .contact_us_img {
    position: unset;
    height: 300px;
    margin-bottom: 50px;
  }
  .contact_us_page .contact_us_section form.form_style {
    margin-top: 0 !important;
  }
  .our_offices {
    padding-bottom: 0;
  }
  .blog_page_wrapper .recent_blogs .col-lg-6 {
    margin-bottom: 15px;
  }
  .blog_page .our_vision_strip ul {
    overflow: auto;
    padding-bottom: 18px;
  }
  .blog_page .our_vision_strip ul li {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .blog_page .our_vision_strip .stripfilter {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .inner_header .card_img .logo_head {
    width: 160px;
  }
  .agency_of_future .agency_of_future_img {
    position: unset;
    width: 100%;
    height: 300px;
  }
  .alansar_card {
    border-right: 0;
    border-bottom: 1px solid rgba(156, 156, 156, 0.4);
  }
  .agency_of_future .agency_of_future_content {
    padding-right: 0;
  }
  .agency_of_future .agency_of_future_content {
    padding-top: 60px;
  }
  .company_videos {
    min-height: 650px;
  }
  .company_videos .play_btn {
    width: 70px;
    height: 70px;
  }
  .our_services_section {
    padding: 80px 0;
  }
  .news_content {
    padding-top: 40px;
  }
  .news_content .news_date {
    margin-bottom: 20px;
  }
  .news_content .news_date span {
    font-size: 1rem;
  }
  .editors_card {
    margin-bottom: 15px;
  }
  .leader_box .leader_box_info .card_img {
    height: 300px;
    min-width: 50%;
    width: 50%;
    margin: auto;
  }
  .leader_box_info {
    background-color: #d9d9d9;
  }
  .vacancy_details .vacancy_details_wrapper {
    padding: 50px 30px;
  }
  .notice_prefers .notice_prefers_wrapper {
    flex-direction: column;
  }
  .notice_prefers .button {
    width: 100%;
  }
  .notice_prefers .btn {
    padding: 20px 30px;
    margin-top: 20px;
    width: 100%;
    display: block;
  }
}
/* ================================================================ */
@media (max-width: 600px) {
  .mobilevew {
    display: block !important;
  }
  .upper_footer {
    text-align: center;
  }
  .upper_footer .logo {
    text-align: center;
  }
  .upper_footer .logo img,
  .upper_footer .logo a {
    display: block;
    margin: auto;
  }
  .upper_footer .social ul {
    justify-content: center !important;
    margin-top: 15px;
  }
  .upper_footer .social ul i {
    font-size: 1.2rem;
  }
  .upper_footer .upper_footer_h5 h5 {
    margin-top: 30px;
    text-align: center;
  }
  .copy_right .copy_title h5 {
    font-size: 4rem;
  }
  .what_happen_card {
    margin-right: 25px;
  }
  .what_happening .section_header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .what_happening .section_header h5 {
    margin-bottom: 30px;
  }
  .what_happening .section_header .arrow_circle {
    width: 50px;
    height: 50px;
  }
  .header_slider_parent .header_slider .slick-prev {
    left: 10px;
    top: unset;
    bottom: 0;
  }
  .header_slider_parent .header_slider .slick-next {
    right: 10px;
    top: unset;
    bottom: 0;
  }
  .copy_right {
    padding-bottom: 40px;
  }
  .what_we_do .section_header .big_word h5 {
    font-size: 4rem;
  }
  .footer .footer_links h5 {
    font-size: 1.2rem;
  }
  .header_slider_about .card_img .header_content h5 {
    font-size: 2rem;
  }
  .header_slider_about .slick-prev {
    left: 10px;
    width: 55px;
    height: 55px;
  }
  .header_slider_about .slick-next {
    right: 10px;
    width: 55px;
    height: 55px;
  }
  .our_journy .swiper_years_img_slider .swiper-slide {
    width: 350px;
    height: 300px;
  }
  .our_journy .swiper-button-next,
  .our_journy .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
  .location_card {
    margin-bottom: 40px;
  }
  .location_card .card_icon img {
    width: 70px;
  }
  .our_journy {
    padding-top: 20px;
  }
  .prand_forumla_purpose .card_img {
    height: 300px;
  }
  .avalible_jobs .avilible_wrapper {
    margin-top: 0;
  }
  .custom_inner_header .carrers_form form .btn {
    padding: 18px;
  }
  .avalible_jobs .avilible_wrapper {
    padding: 20px 0;
  }
  .custom_inner_header .carrers_form h6 {
    font-size: 1rem;
  }
  .custom_inner_header .carrers_form h5 {
    font-size: 1.4rem;
  }
  .wide_card {
    flex-direction: column;
    margin-top: 20px;
  }
  .wide_card .card_img {
    margin-bottom: 15px;
  }
  .header_slider_parent .date_text {
    flex-direction: column;
  }
  .inner_header .card_img .header_content h5 {
    font-size: 2rem;
  }
  .white_our_services_section .our_servcard {
    width: 100%;
  }
  .our_portofilio .content {
    text-align: center;
    margin-bottom: 10px;
  }
  .our_portofilio .content h5 {
    margin-right: 0 !important;
  }
  .our_portofilio .download_btn {
    margin-left: 0 !important;
  }
  .inner_header .card_img .header_content {
    padding-bottom: 30px;
  }
  .alansar {
    padding: 30px 0;
  }
  .our_servcard {
    width: 100%;
  }
  .inner_header .card_img .header_content {
    flex-direction: column-reverse;
  }
  .inner_header .card_img .header_content {
    align-items: flex-start;
  }
  .inner_header .card_img .header_content h5 {
    margin-top: 10px;
    font-size: 1.7rem;
  }
  .our_servcard {
    padding: 10px;
  }
  .our_servcard h5 {
    margin-top: 20px;
  }
  .company_videos .content h5 {
    font-size: 1.8rem;
  }
  .other_sector .section_header h5 {
    font-size: 2.5rem;
  }
  .cert_card {
    max-width: 100%;
  }
  .certifications_licence p {
    width: 100%;
  }
  .metal_our_services .note .note_content {
    flex-direction: column;
  }
  .metal_our_services .note .note_content p {
    margin-left: 0;
    margin-top: 10px;
  }
  .metal_our_services .note .note_content img {
    display: none;
  }
  .dots_style .slick-dots li {
    width: 25px;
  }
  .dots_style .slick-dots li.slick-active {
    width: 60px;
  }
  .leader_box .leader_box_info .card_img {
    height: 300px;
    min-width: 100%;
    width: 100%;
    margin: auto;
  }
  .vacancy_details .vacancy_details_wrapper {
    padding: 50px 15px;
  }
  .vacancy_details .solgan {
    font-size: 1.3rem;
  }
}
@media (max-width: 400px) {
  .copy_right .copy_title h5 {
    font-size: 3rem;
  }
}
.fixNav {
  padding: 10px 0;
}
.fixNav .logo img {
  width: 80px;
}

/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* Shared styles  */
.about_atta_holding, .get_toutch, .about_ceo_messages, .company_videos, .other_sector, .article_strip, .editors_card {
  background-position: center;
  background-size: cover;
}

.breadcrumb li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.editors_card::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.what_happen_card .card_body .card_title, .what_happen_card .card_body .card_text, .white_our_services_section .our_servcard h5, .white_our_services_section .our_servcard p, .skycolor_our_services_section .our_servcard h5, .skycolor_our_services_section .our_servcard p, .recent_blog_card .link h5, .recent_blog_card p, .wide_card .link h5, .wide_card p, .news_strip_card h5, .categry_card .link h5, .categry_card p {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}/*# sourceMappingURL=style.css.map */