@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  font-size: 16px;
}

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

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

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

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

p {
  margin: 0;
  color: #1A3863;
}

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

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

a {
  color: #1A3863;
}

a:hover {
  color: #CFBE7D;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
}

body {
  font-weight: 400;
  line-height: 1.5;
  background-color: #ffffff;
  color: #1A3863;
  font-family: "Poppins", sans-serif;
}

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

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

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

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

.form-group {
  margin-bottom: 20px;
}
.form-group .form-label {
  font-weight: 400;
  font-size: 14px;
}

.form-control {
  height: 50px;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #DBE1EC;
  border-radius: 0px;
  box-shadow: none;
  padding: 5px 5px;
  font-size: 1rem;
  color: #1C1C1C;
}

.form-control:focus {
  box-shadow: none;
  background-color: #fff;
  border-color: #CFBE7D;
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.main-content {
  padding: 60px 0px;
}

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

::-moz-placeholder {
  color: #1A3863 !important;
  font-size: 1rem !important;
}

::placeholder {
  color: #1A3863 !important;
  font-size: 1rem !important;
}

::-moz-placeholder {
  color: #1A3863 !important;
  font-size: 1rem !important;
}

::-ms-placeholder {
  color: #1A3863 !important;
  font-size: 1rem !important;
}

::-o-placeholder {
  color: #1A3863 !important;
  font-size: 1rem !important;
}

::-webkit-placeholder {
  color: #1A3863 !important;
  font-size: 1rem !important;
}

.btn {
  padding: 16px 30px;
  font-size: 18px;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.btn-primary {
  color: #fff;
  background: #CFBE7D;
  border-color: #CFBE7D;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #1A3863;
}
.btn-primary img {
  transition: filter 0.3s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  border-color: #CFBE7D;
  background-color: #CFBE7D !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}
.btn-primary:hover img, .btn-primary:focus img {
  filter: brightness(0) invert(1);
}

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

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

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

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

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

.btn-outline-white {
  color: #fff;
  background: transparent;
  border-color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-outline-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #CFBE7D;
}
.btn-outline-white img {
  transition: filter 0.4s ease-in-out;
}
.btn-outline-white:hover, .btn-outline-white:focus {
  color: #000 !important;
  border-color: #FFF;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #FFF !important;
}
.btn-outline-white:hover img, .btn-outline-white:focus img {
  filter: brightness(0) invert(1);
}
.btn-outline-white:hover::before, .btn-outline-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: #1A3863;
  background: transparent;
  border-color: #CFBE7D;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-outline-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #CFBE7D;
}
.btn-outline-primary img {
  transition: filter 0.4s ease-in-out;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #000 !important;
  border-color: #CFBE7D;
  background-color: #FFF !important;
  box-shadow: none !important;
  color: #FFF !important;
}
.btn-outline-primary:hover img, .btn-outline-primary:focus img {
  filter: brightness(0) invert(1);
}
.btn-outline-primary:hover::before, .btn-outline-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.pagination .page-item {
  margin: 0px 6px;
}
.pagination .page-item .page-link {
  color: #CFBE7D;
  border-radius: 50%;
  background-color: #FFF;
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border: 1px solid #CFBE7D;
  width: 60px;
  line-height: 1;
}
@media (max-width: 991px) {
  .pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: #1A3863 !important;
}
.pagination .page-item .page-link.active .page-link {
  color: #fff;
  background-color: #1A3863 !important;
}

.m-checkbox {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
}

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

/* Create a custom checkbox */
.m-checkbox .checkmark {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #CFBE7D;
  background-color: #FFF;
  left: 0px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
}

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

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

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

.m-checkbox .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #CFBE7D;
  width: 8px;
  height: 8px;
  background-color: #CFBE7D;
  font-size: 12px;
}

.m-radio {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
}
@media (max-width: 991px) {
  .m-radio {
    font-size: 12px;
    margin-bottom: 7px;
  }
}

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

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

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

/* Show the checkmark when checked */
.m-radio input:checked ~ .checkmark {
  border-color: #CFBE7D;
  border-width: 3px;
}

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

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

html[dir=rtl] .m-checkbox {
  padding-right: 25px;
}
html[dir=rtl] .m-checkbox .checkmark {
  right: 0px;
}
html[dir=rtl] .m-radio {
  padding-right: 25px;
}
html[dir=rtl] .m-radio .checkmark {
  right: 0px;
}

html[dir=ltr] .m-checkbox {
  padding-left: 25px;
}
html[dir=ltr] .m-checkbox .checkmark {
  left: 0px;
}
html[dir=ltr] .m-radio {
  padding-left: 25px;
}
html[dir=ltr] .m-radio .checkmark {
  left: 0px;
}

.breadcrumb {
  background: transparent;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 0;
}
.breadcrumb .breadcrumb-item {
  color: #676767;
  font-size: 16px;
}
.breadcrumb .breadcrumb-item a {
  color: #676767;
  transition: color 0.2s ease-in-out;
}
.breadcrumb .breadcrumb-item:hover, .breadcrumb .breadcrumb-item.active {
  color: #CFBE7D;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-inline-start: 0.5rem;
  padding-inline-end: 0px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #676767;
  padding-inline-end: var(--bs-breadcrumb-item-padding-x);
}

.main-header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 10px 0;
}
.main-header .navbar .navbar-collapse .nav-link {
  display: block;
  padding: 9px 25px;
  font-size: 18px;
  color: #1A3863;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.main-header .navbar .navbar-collapse .nav-submenu {
  top: 100%;
  background-color: #fff;
  z-index: 1;
}
@media (min-width: 992px) {
  .main-header .navbar .navbar-collapse .nav-submenu {
    min-width: 200px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.168627451);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse .nav-submenu {
    padding: 0px 15px 10px;
    display: none;
  }
  .main-header .navbar .navbar-collapse .nav-submenu li a {
    color: #1A3863;
    font-size: 13px;
  }
}
.main-header .navbar .navbar-collapse .nav-submenu li:not(:last-of-type) a {
  border-bottom: 1px solid #eee;
}
.main-header .navbar .navbar-collapse .nav-submenu li a {
  display: block;
  padding: 10px 20px;
}
.main-header .navbar .navbar-collapse .nav-item:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
}
.main-header .navbar .navbar-collapse .nav-item.active .nav-link, .main-header .navbar .navbar-collapse .nav-item:hover .nav-link {
  color: #CFBE7D;
}
.main-header .navbar .navbar-collapse .link-mobile {
  display: inline-flex;
  align-items: center;
}
.main-header .navbar .navbar-collapse .link-mobile .icon {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #CFBE7D;
  transition: background-color 0.2s ease-in-out;
}
.main-header .navbar .navbar-collapse .link-mobile .icon img {
  transition: filter 0.2s ease-in-out;
}
.main-header .navbar .navbar-collapse .link-mobile:hover .nav-link {
  color: #100048;
}
.main-header .navbar .navbar-collapse .link-mobile:hover .icon {
  background-color: #100048;
}
.main-header .navbar .navbar-collapse .link-mobile:hover .icon img {
  filter: brightness(0) invert(1);
}
.main-header .navbar .navbar-collapse .link-mobile .nav-link {
  padding: 4px 20px;
}
@media (min-width: 992px) {
  .main-header .navbar .navbar-collapse .link-mobile .nav-link {
    border-right: 1px solid #CFBE7D;
  }
}
@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }
  .main-header .navbar-toggler {
    border: 0 !important;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
  .main-header .navbar .navbar-collapse .nav-link {
    color: #1A3863;
    font-size: 14px;
  }
  .main-header .navbar-collapse {
    position: fixed;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-end: -100%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  .main-header .navbar-collapse .navbar-nav {
    padding: 20px 20px 0;
  }
  .main-header .navbar-collapse.show {
    inset-inline-end: 0%;
  }
}

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

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 12px;
    font-size: 14px;
  }
}
.dropdown-lang .btn-lang {
  display: flex;
  align-items: center;
  padding: 18px 13px;
  border: 1px solid #fffdf8;
  border-radius: 20px;
  border: 0 !important;
}

.dropdown-lang .dropdown-menu {
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  margin: 0;
  inset-inline-end: 0;
  background-color: rgb(255, 255, 255);
}

@media (min-width: 992px) {
  .dropdown-lang .dropdown-menu {
    opacity: 0;
    display: block;
    visibility: hidden;
  }
}
.dropdown-lang .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .container {
    width: 90%;
    max-width: 100%;
  }
}
.section {
  padding: 40px 0px;
}

.section-home {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 60px;
}
.section-home .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .section-home .swiper-slide {
  
  }
}
@media (min-width: 992px) {
  .section-home .swiper-slide {
    
  }
}
.section-home .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
@media (min-width: 992px) {
  .section-home {
    padding-top: 100px;
  }
  .section-home .swiper-slide {
    
  }
  .section-home .home-title {
    font-size: 4.375rem;
    line-height: 70px;
  }
  .section-home .home-text {
    font-size: 1.625rem;
  }
}
.section-home .swiper-slide .home-title,
.section-home .swiper-slide .home-text,
.section-home .swiper-slide .home-action {
  opacity: 0;
}
.section-home .home-title {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.section-home .home-text {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.section-home .home-action {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}
.section-home .swiper-slide.swiper-slide-active .home-title,
.section-home .swiper-slide.swiper-slide-active .home-text,
.section-home .swiper-slide.swiper-slide-active .home-action {
  opacity: 1;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.swiper-pagination-home {
  width: auto;
  color: #FFF;
}

.swiper-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.swiper-action .swiper-next,
.swiper-action .swiper-prev {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 1px solid #CFBE7D;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  margin-inline-end: 20px;
}
.swiper-action .swiper-next.swiper-button-disabled,
.swiper-action .swiper-prev.swiper-button-disabled {
  opacity: 0.7;
}
.swiper-action .swiper-next:hover,
.swiper-action .swiper-prev:hover {
  background-color: #CFBE7D;
  color: #fff;
}
.swiper-action .swiper-next:hover img,
.swiper-action .swiper-prev:hover img {
  filter: brightness(0) invert(1);
}

.home-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.home-video .swiper-action {
  position: absolute;
  bottom: 120px;
  inset-inline-start: 9.2%;
  z-index: 1;
}

.home-video::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.2;
  background-color: #000;
}

.home-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fixed-social-media {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 30px;
  z-index: 2;
  width: 20px;
  text-align: center;
}
@media (max-width: 991px) {
  .fixed-social-media {
    display: none;
  }
}
.fixed-social-media li {
  margin-bottom: 30px;
}
.fixed-social-media li a {
  color: #fff;
  font-size: 1.25rem;
  transition: color 0.2s ease-in-out;
}
.fixed-social-media li a:hover {
  color: #CFBE7D;
}

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

.section-project {
  background-color: #f0f0f0;
}

.widget_item-project {
  position: relative;
  overflow: hidden;
}
.widget_item-project::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(26, 56, 99, 0) 0%, #1a3863 100%);
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.widget_item-project .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 127%;
}
@media (max-width: 991px) {
  .widget_item-project .widget_item-image {
    padding-top: 100%;
  }
}
.widget_item-project .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-project .widget_item-content {
  position: absolute;
  width: 100%;
  padding: 35px 25px;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.widget_item-project .widget_item-description {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.widget_item-project .widget_item-description li {
  color: #fff;
  margin-top: 13px;
  display: flex;
  align-items: center;
}
.widget_item-project .widget_item-description .widget_item-icon {
  width: 30px;
  flex: 0 0 auto;
  margin-inline-end: 15px;
  display: inline-block;
  text-align: center;
}
.widget_item-project .widget_item-title {
  font-weight: 500;
}
.widget_item-project:hover .widget_item-description {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
}
.widget_item-project:hover::before {
  height: 100%;
}

.tabs {
  position: relative;
  border-bottom: 1px solid #CFBE7D;
}
.tabs .nav-item .nav-link {
  color: #1a3863;
  position: relative;
  padding-bottom: 20px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .tabs .nav-item .nav-link {
    padding: 9px;
    font-size: 0.8rem;
  }
}
@media (min-width: 992px) {
  .tabs .nav-item .nav-link {
    font-size: 1.125rem;
  }
}
.tabs .nav-item .nav-link.active {
  color: #CFBE7D;
  background-color: transparent;
}
.tabs .nav-item .nav-link.active::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #CFBE7D;
  content: "";
}

.section-service .section-content {
  background-color: #1a3863;
  position: relative;
  z-index: 1;
  padding: 60px;
}
.section-service .section-content::before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/service/bg-service.png);
  mix-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .section-service .section-content {
    padding: 15px;
  }
}
.section-service.bg-none .section-content::before {
  content: unset;
}

.widget_item-service {
  padding: 60px 30px;
}
.widget_item-service .widget_item-title {
  min-height: 50px;
}

.swiper-action-service,
.swiper-action-brand,
.swiper-action-blog-image,
.swiper-action-timeline,
.swiper-action-team {
  position: absolute;
  width: 116%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  top: 50%;
}

.section-service-2 {
  margin: 40px 0;
}
.section-service-2 .section-content {
  border: 1px solid #ebebeb;
  background-color: #fdfdfd;
  position: relative;
}
@media (min-width: 992px) {
  .section-service-2 .section-content {
    padding: 115px 0;
  }
  .section-service-2 .section-content.py-75 {
    padding: 75px 0;
  }
  .section-service-2 .section-content .image img {
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .section-service-2 .section-content {
    padding: 20px;
  }
  .section-service-2 .section-content .image {
    text-align: center;
  }
  .section-service-2 .section-content .image img {
    width: 220px;
  }
}

.section-blog {
  background-color: #f8f8f8;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.widget_item-blog .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 71%;
  overflow: hidden;
}
.widget_item-blog .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease-in-out;
}
.widget_item-blog .widget_item-image img:hover {
  transform: scale(1.1);
}
.widget_item-blog .widget_item-title {
  height: 56px;
  overflow: hidden;
}
.widget_item-blog .widget_item-title a {
  color: #1a3863;
}
.widget_item-blog .widget_item-title a:hover {
  color: #CFBE7D;
}

.widget_item-brand {
  padding: 20px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget_item-brand .widget_item-image img {
  max-height: 100px;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  opacity: 1;
  margin: 0px 8px !important;
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid #fff;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #CFBE7D;
}

.section-help .section-content {
  background-color: #CFBE7D;
  position: relative;
  z-index: 1;
  padding: 60px;
}
.section-help .section-content::before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  background: url(../images/logo-small.svg);
  background-position: 3% 50%;
  background-repeat: no-repeat;
  background-size: 15%;
  opacity: 0.3;
}
@media (max-width: 991px) {
  .section-help .section-content {
    padding: 15px;
  }
}

.icon-white {
  filter: brightness(0) invert(1);
}

.page-title .page-content {
  background-color: #1a3863;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 991px) {
  .page-title .page-content {
    padding: 20px 0;
  }
}
.page-title .page-content::before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg-page-title.png);
  mix-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title .page-content::after {
  z-index: -1;
  position: absolute;
  content: "";
  width: 220px;
  height: 100%;
  bottom: 0;
  inset-inline-end: 10%;
  background: url(../images/z-bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 90%;
}
@media (max-width: 991px) {
  .page-title .page-content::after {
    inset-inline-end: -7%;
    background-size: 60%;
  }
}
.page-title .page-content .title {
  font-size: 2rem;
  font-weight: 600;
}
.page-title .page-content .logo img {
  width: 30px;
}

.breadcrumb .breadcrumb-item a {
  color: #CFBE7D;
}

.widget_item-rapor {
  border: 2px solid #f0f0f0;
  background-color: #fdfdfd;
  padding: 25px 35px;
  transition: border 0.2s ease-in-out;
}
.widget_item-rapor .widget_item-title {
  transition: color 0.2s ease-in-out;
}
.widget_item-rapor:hover {
  border-color: #CFBE7D;
}
.widget_item-rapor:hover .widget_item-title {
  color: #CFBE7D;
}

.widget_item-faq {
  border: 2px solid #f0f0f0;
  padding: 0px 35px;
  transition: border-color 0.2s ease-in-out;
}
.widget_item-faq .widget_item-head {
  padding: 25px 0px;
  cursor: pointer;
}
.widget_item-faq .widget_item-head:not(.collapsed) .fa-plus::before {
  content: "\f068";
}
.widget_item-faq .widget_item-description {
  border-top: 1px solid #e1e1e1;
  padding: 30px 0px;
}
.widget_item-faq:hover {
  border-color: #CFBE7D;
}

.widget_item-contact {
  border: 1px solid #ebebeb;
  padding: 37px 80px;
}

.mapping {
  width: 100%;
  height: 600px;
}

.gm-style .gm-style-iw-c {
  background: #ffffff;
  box-shadow: 0px 9px 24px rgba(8, 25, 39, 0.12);
  border-radius: 0px;
  padding: 0;
}

.gm-style .gm-style-iw-d {
  overflow: unset !important;
}

.gm-style-iw-chr {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: 1;
}

.widget_item-info-content img {
  max-width: 100%;
}
.widget_item-info-content .widget_item-image img {
  height: 130px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-info-content .widget_item-link .icon {
  width: 34px;
  height: 34px;
}
.widget_item-info-content .widget_item-link .icon img {
  filter: brightness(0);
  width: 20px;
}

.swiper-pagination-border-black .swiper-pagination-bullet::before {
  border-color: #1a3863;
}

.swiper-action-border-black .swiper-prev,
.swiper-action-border-black .swiper-next {
  border-color: #1a3863;
}

.blog-single-content {
  border-bottom: 1px solid #CFBE7D;
  padding: 40px 0;
}

.social-media.social-media-style-black li a {
  background-color: #1a3863;
}

.blog-single-action-black .icon {
  width: 50px;
  height: 50px;
  border: 1px solid #1a3863;
}

.swiper-pagination--custom {
  position: relative;
  z-index: 2;
}
.swiper-pagination--custom .swiper-slide {
  cursor: pointer;
}
.swiper-pagination--custom .swiper-slide.active .swiper-pagination-switch::after {
  position: absolute;
  content: "";
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: #cfbe7d;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.swiper-pagination--custom::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  bottom: 25px;
  left: 0;
}
.swiper-pagination--custom .swiper-pagination-switch {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}
.swiper-pagination--custom .swiper-pagination-switch::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #1a3863;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.widget_item-proje {
  border: 1px solid #d1d1d1;
  padding: 20px;
}

.social-website {
  position: fixed;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 20px;
}
.social-website li {
  margin-bottom: 12px;
}
.social-website li a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background-color: #1a3863;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: background-color 0.2s ease-in-out;
}
.social-website li a:hover {
  background-color: #CFBE7D;
}

.bg-content-style {
  background-color: #fbfbfb;
  border: 1px solid #eeeeee;
}

.bg-content-style-2 {
  background-color: #f8f8f8;
  border: 1px solid #f3f3f3;
}

.bg-content-style-3 {
  background-color: #fafafa;
  border: 1px solid #ebebeb;
}

.swiper-action.bg-btn-style-black .swiper-next,
.swiper-action.bg-btn-style-black .swiper-prev {
  border-color: #1a3863;
}
.swiper-action.bg-btn-style-black .swiper-next:hover,
.swiper-action.bg-btn-style-black .swiper-prev:hover {
  background-color: #1a3863;
}

.text-primary-black {
  color: #1a3863;
}

.swiper-proje .switch-title {
  color: #8D939C;
  font-size: 20px;
  font-weight: 600;
}
.swiper-proje .swiper-slide.active .switch-title {
  color: #1A3863;
}

.swiper-tarih::before {
  top: 35px;
  bottom: unset;
}
.swiper-tarih .switch-title {
  height: 115px;
  font-size: 2.2rem;
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateX(50%);
  left: 50%;
  position: relative;
}
.swiper-tarih .swiper-pagination-switch {
  margin-top: 50px;
  margin-bottom: 0;
}
.swiper-tarih.swiper-pagination--custom .swiper-pagination-switch::before {
  bottom: unset;
  top: -22px;
}
.swiper-tarih.swiper-pagination--custom .swiper-slide.active .swiper-pagination-switch::after {
  top: -28px;
  bottom: unset;
}
.swiper-tarih .swiper-slide.active .switch-title {
  color: #CFBE7D;
}

.widget_item-hedef {
  border: 1px solid #d1d1d1;
  padding: 60px;
}

.widget_item-team {
  padding: 30px;
  border: 1px solid #eaeaea;
}

.widget_item-goals {
  border: 1px solid #d1d1d1;
  padding: 50px 50px;
}
.widget_item-goals .widget_item-icon {
  height: 80px;
}
.widget_item-goals .widget_item-icon img {
  max-height: 70px;
}

.swiper-action.swiper-action-tarih {
  top: 20%;
}

.tolbar-website {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 10px;
  z-index: 3;
}
.tolbar-website .btn-call .tolbar-btn {
  background-color: #1a3863;
}
.tolbar-website .btn-menu .tolbar-btn {
  background-color: #CFBE7D;
}
.tolbar-website .btn-menu .tolbar-btn .tolbar-btn-text {
  color: #CFBE7D;
}
.tolbar-website .btn-menu .tolbar-btn:hover .tolbar-btn-text {
  color: #1A3863;
}
.tolbar-website .tolbar-btn {
  width: 40px;
  height: 40px;
  white-space: nowrap;
  transition: width 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 30px;
  padding-inline-end: 10px;
}
.tolbar-website .tolbar-btn .tolbar-btn-icon {
  flex: 0 0 auto;
}
.tolbar-website .tolbar-btn .tolbar-btn-text {
  transition: all 0.4s ease-in-out;
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  flex: 1 0 0%;
  text-align: center;
}
.tolbar-website .tolbar-btn:hover {
  width: 150px;
}
.tolbar-website .tolbar-btn:hover .tolbar-btn-text {
  opacity: 1;
  visibility: visible;
  font-size: 1rem;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.text-copyRight {
  color: #B4B4B4;
}

.main-footer .footer-top {
  padding: 50px 0 50px;
}
.main-footer .footer-bottom {
  border-top: 1px solid #E0D3B2;
  padding: 30px 0;
}
.main-footer .footer-menu .footer-menu-title {
  margin-bottom: 30px;
  position: relative;
}
.main-footer .footer-menu .footer-menu-title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #CFBE7D;
  bottom: -20px;
  inset-inline-start: 0;
}
.main-footer .footer-menu a {
  display: inline-block;
  font-size: 16px;
  padding: 3px 0px;
  position: relative;
  transition: color 200ms;
}
.main-footer .footer-menu a:hover {
  color: #A36F7E !important;
}

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

.social-media li:not(:last-of-type) {
  margin-inline-end: 7px;
}
.social-media li a {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background-color 0.3s ease-in-out;
  background-color: #CFBE7D;
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
}
.social-media li a:hover {
  color: #fff;
  background-color: #CFBE7D;
  border-color: #CFBE7D;
}

@media (max-width: 991px) {
  .section {
    padding: 30px 0px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1024px) and (min-width: 767px) {
  html {
    font-size: 13px;
  }
}
html[dir=rtl] body {
  font-family: "Cairo";
}

html[dir=rtl] .swiper-action .swiper-prev img, html[dir=rtl] .swiper-action .swiper-next img,
html[dir=rtl] .btn img {
  transform: scaleX(-1);
}

@media (min-width: 992px) {
  html[dir=rtl] .main-header .navbar .navbar-collapse .link-mobile .nav-link {
    border-left: 1px solid #CFBE7D;
    border-right: 0;
  }
}/*# sourceMappingURL=main.css.map */


img.slide-back {
 
  max-width: 100%;
  z-index: 0;
  width: 100%;
}

.row.w-100.content-row {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  z-index: 2;

}
.swiper-slide {
 
  align-self: stretch;
}

.slider-video{
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

 
  .swiper-content {
  height: 100% !important
  }

.grecaptcha-badge {
    display: none !important;
}
footer.main-footer {
  background: #F8F8F8;
}