/* Fonts */
:root {
  --font-default: "IBM Plex Sans Arabic", sans-serif;
  --font-primary: "IBM Plex Sans Arabic", sans-serif;
  --font-secondary: "IBM Plex Sans Arabic", sans-serif;
}

/* Colors */
:root {
  --color-default: #ffffff;
  --color-primary: #CCA35F;
  --color-secondary: #8D8D8D;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html{
  overflow-x: hidden;
}
body {
  font-family: var(--font-default);
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}



.section-header h2 {
  font-size: 56px;
  font-weight: 500;
  font-style: normal;
  color: #8d8d8d;
  font-family: var(--font-default);
  margin-bottom: 30px;
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: #000;
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: var(--color-secondary);
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: lineincrease 1000ms ease-in-out 0s forwards;
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: var(--color-secondary);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-animation: linemove 1200ms linear 0s infinite;
  animation: linemove 1200ms linear 0s infinite;
  -webkit-animation-delay: 2000ms;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  -webkit-animation: preloaderfinish 300ms ease-in-out 500ms forwards;
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@-webkit-keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@-webkit-keyframes linemove {
  0% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes linemove {
  0% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-webkit-keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
    -o-transition-delay: 0 !important;
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  background: transparent;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.sticked {
  background-color: #000000;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 16px;
  color: #fff;
  background: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-book-a-table:hover {
  color: var(--color-primary);
}

.logo {
  width: 260px;
  max-width: 100%;
  height: auto;
}

.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lang-btn {
  padding-right: 20px;
  color: #fff;
}

.lang-btn a {
  color: #fff;
}

.lang-btn a:hover {
  color: var(--color-primary);
}
.lang-btn a.lang-active{
  color: var(--color-primary);
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/


@media (min-width: 991.99px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    margin: 0 0px;
    overflow: hidden;
    border-right: 1px solid #fff;
  }

  .navbar>ul>li:first-child {
    border-right: 0;
  }

  .navbar a,
  .navbar a:focus {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: var(--font-secondary);
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: var(--color-default);
    padding: 0px 8px;
    line-height: 14px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }



  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 991.99px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }

  .mobile-nav-menu {
    display: none;
  }
  .mobile-lang-btn{
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1400.99px) and (min-width: 991.99px) {

  .navbar a,
  .navbar a:focus {
    padding: 0px 8px;
    font-size: 14px;
  }

  .logo {
    width: 220px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0 0;
}

.hero-sliders {
  position: relative;
}

.hero-sliders div[data-animate="bottom"] {
  position: relative;
  z-index: 3;
}

.hero-sliders::before {
  content: "";
  position: absolute;
  background-image: url(../img/hero-before.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 710px;
  height: 520px;
  left: 0px;
  bottom: 60px;
  z-index: 3;
}

.animeslide-slide {
  position: relative;
  padding: 200px 0 200px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  min-height: 800px;
  background-color: #000;
}

.animeslide-slide .container {
  position: relative;
  z-index: 2;
}

.animeslide-slide.swiper-slide-active [data-animate] {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.animeslide-slide.swiper-slide-active .animeslide-heading {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.animeslide-slide.swiper-slide-active .animeslide-desc {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.animeslide-heading {
  margin-bottom: 25px;
  -webkit-transition-delay: 3s;
  -o-transition-delay: 3s;
  transition-delay: 3s;
  font-size: 108px;
  font-weight: bold;
  font-style: normal;
  color: #ffffff;
  position: relative;
  z-index: 5;
}



.animeslide-desc {
  padding: 15px 22px;
  border-radius: 8px;
  background-color: #202238;
  max-width: 480px;
  opacity: 0.9;
}

[data-animate] {
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

[data-animate="bottom"] {
  opacity: 1;
}



.animeslide-bottom .animeslide-scrollbar {
  margin-top: 16px;
}

.animeslide-bottom .animeslide-scrollbar-drag {
  height: 6px;
}

.animeslide-bottom .animeslide-pagination {
  font-size: 25px;
  bottom: inherit;
  color: #fff;
}

.animeslide-bottom .animeslide-pagination b {
  font-size: 28px;
  margin-top: -5px;
}

.animeslide-bottom .animeslide-pagination span {
  padding-left: 5px;
  padding-right: 5px;
}



.animeslide-bottom {
  max-width: 1320px;
  position: absolute;
  left: 50%;
  top: 64%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;

}

.hero-content {
  font-size: 31px;
  font-weight: normal;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 20px;
  margin-top: 40px;
  display: block;
  position: relative;
  z-index: 5;
}

.hero-sub-title {
  font-size: 32px;
  color: #ffffff;
  position: relative;
  z-index: 5;
}


.hero-sliders .swiper-pagination {
  bottom: 120px;
  top: auto
}

.hero-sliders .swiper-pagination-bullet {
  width: 16px;
  background-color: #fff;
  height: 16px;
}



/********/


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
}

.about-img {
  opacity: 0.36;
}

.about-img img {
  width: 360px;
  max-width: 100%;
}

.about-content p {
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: var(--color-primary);
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding-top: 0;
  padding: 0px;
  z-index: 12;
  position: relative;
}

.gallery .gallery-slider {
  -webkit-clip-path: inset(-100vw 0vw 0 -100vw);
  clip-path: inset(-100vw 0vw 0 -100vw);
}

.gallery-title h2 {
  font-size: 14.5vw;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  opacity: 0.15;
  text-transform: uppercase;
  text-align: center;
}

.gallery-slider-container {
  margin-top: -110px;
  position: relative;
  z-index: 5;
}

.gallery-slider .swiper-slide {
  max-width: 390px;
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
}

.gallery-image::after {
  content: "";
  background: rgba(0, 0, 0, 0);
  background: -webkit-gradient(linear,
      left top, left bottom,
      color-stop(0.00%, rgba(0, 0, 0, 0)),
      color-stop(100.00%, #000000));
  background: -o-linear-gradient(top,
      rgba(0, 0, 0, 0) 0.00%,
      #000000 100.00%);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0.00%,
      #000000 100.00%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery-image:hover::after {
  height: 150%;
}

.gallery-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  top: 0;
  left: 0;
  z-index: 1;
}

.gallery-image h3 {
  font-size: 27px;
  font-weight: bold;
  font-style: normal;
  text-align: right;
  color: #ffffff;
  text-align: center;
  opacity: 1;
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 4;
  width: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 20px;
}

.gallery-image:hover h3 {
  color: #ffffff;
  opacity: 1;
}

.gallery {
  position: relative;
}

.our-vision {
  padding: 80px 0 100px;
  z-index: 2;
  position: relative;
}

.gallery::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 110px;
  background-image: url(../img/our-vision-bg.webp);
  background-size: auto auto;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.25;
}

.our-vision h2 {
  font-size: 60px;
  font-weight: bold;
  font-style: normal;
  color: #000000;
}

.our-vision h3 {
  font-size: 26px;
  font-weight: bold;
  font-style: normal;
  color: #000000;
  margin-bottom: 20px;
}

.our-vision-content p {
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
  color: #000000;
}

.gallery-slider-arrow .slider-arrow {
  color: #fff;
}

.gallery-slider-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
}

.gallery-slider-arrow .slider-arrow:first-child {
  margin-right: 30px;
}

.gallery-slider-arrow .slider-arrow {
  width: 25px;
  height: 25px;
  color: #fff;
}

/*--------------------------------------------------------------
# Our Plan
--------------------------------------------------------------*/
.our-plan {
  background-image: url(../img/our-plan-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding-bottom: 0;
}

.our-plan ul {
  padding: 0;
  margin: 0;
}

.our-plan hr {
  opacity: 1;
}

.our-plan ul li {
  list-style: none;
  font-size: 30px;
  font-weight: normal;
  line-height: 45px;
  font-style: normal;
  color: #ffffff;
  margin-bottom: 15px;
}

.our-plan-content {
  padding-bottom: 50px;
}

.our-plan-content h2 {
  font-size: 55px;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
}

.training-programs {
  background-color: rgba(255, 255, 255, 0.3);
  border-top-right-radius: 100px;
  overflow: hidden;
  padding: 50px 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.training-programs-slider {
  overflow: visible;
  -webkit-clip-path: inset(-100vw 0vw 0 -100vw);
  clip-path: inset(-100vw 0vw 0 -100vw);
}

.training-programs-slider .swiper-slide {
  max-width: 620px;
}

.training-programs-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}
.training-programs-image img{
  width: 100%;
}
.training-programs-image::after {
  content: "";
  background: -webkit-gradient(linear,
      left top, left bottom,
      color-stop(0.00%, rgba(0, 0, 0, 0)),
      color-stop(100.00%, #000000));
  background: -o-linear-gradient(top,
      rgba(0, 0, 0, 0) 0.00%,
      #000000 100.00%);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0.00%,
      #000000 100.00%);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.training-programs-image:hover:after {
  height: 150%;
}

.training-programs-image h3 {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  left: 0;
  bottom: 10px;
  z-index: 3;
  font-size: 28px;
}

.training-programs-title {
  margin-bottom: 30px;
}

.training-programs-title h2 {
  font-size: 39px;
  font-weight: bold;
  font-style: normal;
  color: #ffffff;
}

.programs-slider-arrow .slider-arrow {
  width: 25px;
  height: 25px;
  color: #fff;
}

.programs-slider-arrow .slider-arrow:first-child {
  margin-right: 30px;
}

.programs-slider-arrow {
  position: absolute;
  top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  z-index: 4;
}


/*--------------------------------------------------------------
# Our Service
--------------------------------------------------------------*/
.service-section {
  position: relative;
  background-color: var(--color-default);
  padding: 0;
}


.thumbnail {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.our-service-content {
  max-width: 620px;
  margin: 0 auto;
  padding: 200px 20px 150px;
  position: relative;
  min-height: 100vh;
}

.our-service-dis p {
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
}



.service-section .section-header h2 {
  color: #000000;
  font-weight: bold;
  margin-bottom: 50px;
}

.our-service-dis h3 {
  font-size: 26px;
  font-weight: bold;
  font-style: normal;
  color: #000000;
  margin-bottom: 20px;
}

.service-section .section-header,
.our-service-dis {
  position: relative;
  z-index: 2;
}

.our-service-left {
  background-image: url(../img/our-service-left.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right bottom;
}

/*--------------------------------------------------------------
# Request A Callback
--------------------------------------------------------------*/
.contact-us-section {
  background-color: #000;
  color: #fff;
  background-image: url(../img/contact-us-section.webp);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 60px 0;
}

.contact-us-right h2 {
  font-size: 56px;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 30px;
}

.contact-us-right ul {
  margin: 0;
  padding: 0;
}

.contact-us-right ul li {
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
  list-style: none;
}

.contact-us-form .form-control {
  background-color: transparent;
  border-radius: 0;
  border-width: 0 0 1px 0;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 20px;
  color: #fff;
}

.contact-us-form .form-control:focus {
  border-color: var(--color-primary);
}

.contact-us-form .form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.6;
}

.contact-us-form .form-control::-moz-placeholder {
  color: #fff;
  opacity: 0.6;
}

.contact-us-form .form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 0.6;
}

.contact-us-form .form-control::-ms-input-placeholder {
  color: #fff;
  opacity: 0.6;
}

.contact-us-form .form-control::placeholder {
  color: #fff;
  opacity: 0.6;
}

.form-btn .submit-btn {
  padding: 5px 60px;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  text-align: right;
  color: #585858;
  border-radius: 50px;
  display: inline-block;
  border: 2px solid #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.form-btn .submit-btn:hover {
  background-color: transparent;
  color: #fff;
}

.form-btn {
  margin-top: 30px;
}


/*--------------------------------------------------------------
# Ctn Section
--------------------------------------------------------------*/

.ctn-section h2 {
  font-size: 48px;
  font-weight: bold;
  font-style: normal;
  color: #000000;
  margin-bottom: 0;
}

.ctn-section {
  background-image: url(../img/ctn-section.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left center;
}

.cta-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-form .form-group .form-control {
  font-size: 28px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #585858;
  padding: 10px 15px;
  border-radius: 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.cta-form .form-group .form-control:focus {
  border-color: #000;
}

.cta-form .form-group .form-control::-webkit-input-placeholder {
  color: #e7e7e7
}

.cta-form .form-group .form-control::-moz-placeholder {
  color: #e7e7e7
}

.cta-form .form-group .form-control:-ms-input-placeholder {
  color: #e7e7e7
}

.cta-form .form-group .form-control::-ms-input-placeholder {
  color: #e7e7e7
}

.cta-form .form-group .form-control::placeholder {
  color: #e7e7e7
}

.cta-form .form-btn {
  margin-top: 0;
  padding-right: 50px;
}

.cta-form .form-btn .submit-btn {
  padding: 5px 60px;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  text-align: right;
  color: #585858;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid #707070;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
}

.cta-form .form-btn .submit-btn:hover {
  background-color: #000;
  color: #fff;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-loaction {
  background-color: #222222;
  padding: 50px 0;
}

.footer-title {
  font-size: 25px;
  font-weight: bold;
  font-style: normal;
  color: #ffffff;
  margin-bottom: 34px;
}

.useful-links ul {
  margin: 0;
  padding: 0;
}

.useful-links ul li {
  list-style: none;
  margin-bottom: 12px;
}

.useful-links ul li a {
  font-size: 20px;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-weight: normal;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.useful-links ul li a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.footer-contect.useful-links ul li a {
  font-size: 25px;
  color: #fff;
  border-bottom: 0px solid #fff;
  font-weight: normal;
}

.footer-contect.useful-links {
  max-width: 480px;
  margin: 0 auto;
}

.footer-menu {
  background-color: #2b2b2b;
  padding: 50px 0;
}

.footer-menu li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-menu li a {
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
}

.footer-menu li a:hover {
  color: var(--color-primary);
}

.footer-left {
  font-size: 19px;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
}

.copyright {
  background: #000000;
  padding: 10px 0
}

.footer-social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-social-media li {
  margin-right: 20px;
}

.footer-social-media li a {
  color: var(--color-default);
  font-size: 18px;
}

.footer-social-media li a:hover {
  color: var(--color-primary);
}
.gmap .footer-title{
  display: none;
}