/***********************************************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

@import url("../vendor/css/animate.css");
@import url("../vendor/css/owl.css");
@import url("../vendor/css/swiper.min.css");
@import url("../vendor/css/jquery.fancybox.min.css");
@import url("../vendor/css/linear.css");
@import url("../vendor/css/fontawesome.css");
@import url("../vendor/css/flaticon.css");

/** Slick slider ***/
@import url("../vendor/css/slick.css");
@import url("../vendor/css/slick-theme.css");


:root {
  --primary-color: #0EAEDC;
  --secondary-color: #1C4AA0;
  --white-color:#ffffff;
  --font-color:#000000;
  --light-bg-color:#E5F9FF;
  --linear-gradient-bg: linear-gradient(90deg, #0EAEDC, #1C4AA0);
  --angle-gradient-bg: linear-gradient(45deg, #0EAEDC, #1C4AA0);
  --linear-gradient-color: linear-gradient(90deg, #0EAEDC, #1C4AA0);
  --linear-top-gradient-bg: linear-gradient(180deg, #0EAEDC, #1C4AA0);
}

/*
 * typography.scss
 * -----------------------------------------------s
*/
::-moz-selection {
  background: var(--primary-color);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--primary-color);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
}

p, .text {
  color: var(--font-color);
  font-size: var(--body-font-size);
}


/*=== Default Form ===*/

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}
.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  color: #fff;
}
select option{
  color: #000;
}

.dark-placeholder{
  outline: 0;
  color: #000;
  font-size: 0.9rem;
  width: 100%;
}
.dark-placeholder::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
.dark-placeholder::-moz-placeholder{
  color: #000;
  opacity: 1;
}
.dark-placeholder:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.dark-placeholder::-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.dark-placeholder::placeholder {
  color: #000;
  opacity: 1;
}

.light-placeholder{
  outline: 0;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
}
.light-placeholder::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.light-placeholder::-moz-placeholder{
  color: #fff;
  opacity: 1;
}
.light-placeholder:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.light-placeholder::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.light-placeholder::placeholder {
  color: #fff;
  opacity: 1;
}

.f-form .iti__selected-dial-code {
    color: #000;
}
.f-form .iti__arrow {
    border-top: 4px solid #000 !important;
}

/*** 

====================================================================
Reset
====================================================================

***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}
a{
  text-decoration: none;
}
button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

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

figure.image {
  margin-bottom: 0;
}

.title a {
  color: inherit;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 99;
  background-color: #ffffff;
}

.large-container {
  position: static;
  max-width: var(--large-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-pattern-1 {
  background-image: url(../images/icons/pattern-1.html);
}
.full-height{
  height: 100vh;
  width: 100%;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.overlay-dark{
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.6;
  z-index: 1;
  content: "";
}
.overlay-dark-2{
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.4;
  z-index: 1;
  content: "";
}
.overlay-light{
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0EAEDC;
  opacity: 0.2;
  z-index: 1;
  content: "";
}

.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
  animation: bounce-y 10s infinite linear;
}

@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.mb-10{
  margin-bottom: 10px;
}
.overlay-anim {
  position: relative;
}
.overlay-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}



/*Btn Style One*/
.btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  padding: 14px 32px 18px;
  overflow: hidden;
  color: var(--white-color);
  background: var(--primary-color);
  text-transform: uppercase;
  z-index: 9;
  border-radius: 0;
}
.btn-style-one i {
  position: relative;
  display: block;
  margin-left: 10px;
}
.btn-style-one:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--secondary-color);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-one:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.btn-style-one:hover {
  color: #fff;
}


/*Btn Style two*/

.btn-style-two {
  color: var(--white-color);
  text-transform: uppercase;
  border-radius: 0;
  padding: 15px 30px;
  border: 1px solid var(--white-color);
  position: relative;
  z-index: 9;
  margin-top: 10px;
  text-decoration: none;
  font-size: 12px;
}
.btn-style-two:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--white-color);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), 
  -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-two:hover {
  border-color: var(--white-color);
  color: var(--primary-color);
}
.btn-style-two:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}



/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
  width: 17px;
  margin-top: 4px;
  height: 17px;
  line-height: 17px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background-color: var(--theme-color1);
  z-index: 100;
  display: none;
  border-radius: 50%;
  color: #000;
  font-size: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.scroll-to-top:hover {
  color: #ffffff;
}

/*======================
    Tabs Box
======================*/
.tabs-box {
  position: relative;
}
.tabs-box .tab {
  display: none;
}
.tabs-box .tab.active-tab {
  display: block;
}

/*=======================
    List Styles
=======================*/
.list-style-one {
  position: relative;
}
.list-style-one li {
  position: relative;
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-color);
  margin-right: 50px;
  margin-bottom: 7px;
  padding-left: 22px;
}
.list-style-one li .icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme-color1);
}


/*** 

====================================================================
  Navbar style
====================================================================
 */
.navbar {
    width: 100%;
    background: #fff;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 100px;
}
.navbar-toggler-icon {
    background-image: none;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: var(--font-color);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar .navbar-nav .nav-link {
   font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--font-color);
    margin: 1px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 12px;
    padding-left: 12px;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: var(--white-color);
}
.navbar .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}
.navbar .navbar-nav .active {
    color: var(--primary-color) !important;
}
.navbar .navbar-nav .active i {
    color: var(--primary-color);
}
.nav-scroll {
    background: var(--linear-gradient-bg);
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    height: 90px;
}
.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: var(--white-color);
}
.nav-scroll .navbar-nav .nav-link {
    color: var(--white-color);
}
.nav-scroll .navbar-nav .nav-link:hover{
    color: var(--primary-color);
}
.nav-scroll .navbar-nav .active {
    color: var(--secondary-color) !important;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: var(--white-color);
}
.nav-scroll .logo-img {
    width: 150px;
}
.nav-scroll .logo-img {
    margin-bottom: 0px;
}
.logo-wrapper {
    float: left;
}
.logo {
    padding: 0;
}
.logo-img {
    padding: 20px 0;
    width: 150px;
    text-align: center;
}
.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: var(--secondary-color);
}
.nav-scroll .dropdown .nav-link i {
    color: var(--secondary-color);
}
.nav-scroll .navbar-nav .active i {
    color: var(--primary-color);
}
.navbar .dropdown-menu .dropdown-item {
    padding: 8px 0;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    background-color: transparent;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu {
    box-shadow: 0 16px 50px rgb(0 0 0 / 7%);
}
.navbar .dropdown-menu li {
    border-bottom: 1px solid rgba(32, 149, 174, 0.05);
}
.navbar .dropdown-menu li:last-child {
   border-bottom: none;
}
/* li hover */
.navbar .dropdown-menu li {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .dropdown-menu li:hover {
    padding-left: 5px;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}


/*** 

====================================================================
  Hero section
====================================================================
 */

.banner-header{
  background: url('../images/hero_bg.jpeg') no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  height: calc(100vh - 100px);
}
.banner-header .container{
  position: relative;
  z-index: 2;
}
.banner-header h1 {
    color: var(--white-color);
    font-weight: bold;
    font-size: 52px;
}
.banner-header p{
  font-size: 20px;
  color: var(--white-color);
  line-height: 25px;
}

.banner-header  .btn {
  color: var(--white-color);
  text-transform: uppercase;
  border-radius: 0;
  padding: 10px 30px;
  border: 1px solid var(--white-color);
  position: relative;
  z-index: 9;
  margin-top: 20px;
}
.banner-header .btn:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--primary-color);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), 
  -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-header  .btn:hover {
  border-color: var(--primary-color);
}
.banner-header  .btn:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.banner-header p {
    padding: 0 100px;
}


/*** 

====================================================================
		target-audience Section Two
====================================================================

***/
.target-audience-section {
  position: relative;
  padding: 120px 0 20px 0;
}
.target-audience-section .content-column h1 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}
.target-audience-section .content-column .inner-column .sec-title .text {
    margin-top: 20px;
    font-size: 16px;
    color: var(--font-color);
}
ul.developer-list.list-style {
    width: 70%;
}
ul.developer-list.list-style li p {
    margin-bottom: 10px;
}
ul.developer-list.list-style .list-heading {
    font-weight: bold;
}
.target-audience-section .image-column {
  position: relative;
  margin-bottom: 50px;
}
.target-audience-section .image-column .inner-column {
  position: relative;
  padding-left: 20px;
  padding-bottom: 117px;
  text-align: right;
}
.target-audience-section .image-column .image-1 {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 0px;
}
.target-audience-section .image-column .image-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 30px;
  height: 250px;
  background: var(--angle-gradient-bg);
}
.target-audience-section .image-column .image-1 img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.target-audience-section .image-column .image-2 {
  position: absolute;
  left: -75px;
  bottom: 50px;
  margin-bottom: 0;

}
 .target-audience-section .image-column .image-2 img{
  border: 15px solid #fff;
  height: 400px;
  object-fit: cover;
 }
.target-audience-section .content-column {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.target-audience-section .content-column .inner-column {
  position: relative;
  padding-left: 52px;
}
.target-audience-section .content-column .sec-title {
  margin-bottom: 45px;
}
.target-audience-section .content-column .sec-title .sub-title::before {
  display: none;
}
.target-audience-section .content-column .sec-title .text {
  margin-top: 35px;
}
ul.developer-list.list-style li i {
    font-size: 35px;
     background:var(--linear-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  display: inline-block;
}
ul.developer-list.list-style li {
    display: flex;
    gap: 20px;
}
.btn-box {
    margin-top: 30px;
}



/***

==================================================================
Project CSS
==================================================================

***/

.projects-section {
  position: relative;
  padding: 80px 0 80px 0;
  background-color: var(--light-bg-color);
}
section.projects-section h2 {
    font-weight: bold;
    font-size: 32px;
}
.projects-section .sec-title.text-center{
  margin-bottom: 50px;
}

.project-block .list-style-two {
  margin-top: 14px;
}
.project-block .list-style-two li {
  margin-bottom: 10px;
  color: var(--white-color);
  font-size: 14px;

}
.project-block .list-style-two li span {
    font-weight: bold;
    padding-left: 5px;
}
.project-block .inner-box {
    position: relative;
    left: 0%;
}
.projects-section .slick-list{
  left: 2%;
}
.project-block .inner-box .content-column .inner-column {
  position: relative;
  background: var(--angle-gradient-bg);
  padding: 32px 20px 20px;
  margin-right: -75px;
  z-index: 99;
  margin-top: 34px;
  border: 1px solid #fff;
}
.project-block .inner-box .content-column .inner-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 41px;
  width: 95px;
  height: 13px;
  background-color: var(--white-color);
}
.project-block .inner-box .content-column .inner-column .title {
    font-size: 22px;
    color: var(--white-color);
    margin-bottom: 5px;
    line-height: 25px;
    font-weight: bold;
}
.project-block .inner-box .content-column .inner-column .title span {
  font-size: 14px;
  color: var(--white-color);
}
.project-block .inner-box .content-column .inner-column span {
  color: var(--white-color);
  padding-left: 5px;
}
.project-block .inner-box .content-column .inner-column .book-now {
  font-size: 12px;
  padding: 0 30px;
  background-color: var(--primary-color);
  height: 40px;
  color: var(--font-color);
  display: inline-block;
  -webkit-font-feature-settings: var(--font-color);
          font-feature-settings: var(--font-color);
  line-height: 40px;
  text-align: center;
  margin-top: 22px;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
}
.project-block .inner-box .content-column .inner-column .book-now:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--secondary-color);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.project-block .inner-box .content-column .inner-column .book-now:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.project-block .inner-box .content-column .inner-column .book-now:hover {
  color: #fff;
}
.project-block .inner-box .image-column .image-box {
  height: 90%;
}
.project-block .inner-box .image-column .image-box figure {
  height: 100%;
  position: relative;
}
.project-block .inner-box .image-column .image-box figure:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.project-block .inner-box .image-column .image-box figure:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.project-block .inner-box .image-column .image-box figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-slider .slick-prev:before, .project-slider .slick-next:before {
    font-family: 'slick';
    line-height: 1;
    opacity: .75;
    color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 32px;
}
.project-slider .slick-dots li button:before{
  font-size: 52px;
  color: var(--secondary-color);
}
.project-slider ul.slick-dots {
    bottom: -50px;
}





@media (max-width: 1199.98px) {
  .project-block .inner-box .content-column .inner-column {
    margin-right: -113px;
  }
}
@media (max-width: 991.98px) {
  .project-block .inner-box .content-column .inner-column {
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .projects-section {
    padding: 30px 0 50px;
  }
}
@media (max-width: 575.98px) {
  .projects-section .sec-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .projects-section .sec-title .sub-title {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .projects-section .sec-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 767.98px) {
  .project-block {
    padding: 30px 0 50px;
  }
}
@media (max-width: 575.98px) {
  .project-block .sec-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}


@media only screen and (max-width: 767px) {
  .project-block .inner-box .content-column .inner-column {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .pricing-block .inner-box .food-pack {
    margin-top: 20px;
    position: static;
  }
  .pricing-block .inner-box {
    padding-top: 0;
  }


}


/*** 

====================================================================
 Nearby section
====================================================================

***/
.nearby-section {
  position: relative;
  padding: 160px 0 0 0;
}
section.nearby-section .heading h1 {
    font-size: 37px;
    margin: 0 auto 25px auto;
    font-weight: bold;
    text-transform: uppercase;
}
.nearby-section .sec-title {
  margin-right: 70px;
  margin-bottom: 32px;
}

.nearby-section .sec-title .sub-title:before {
  display: none;
}
.nearby-section .sec-title .text {
  margin-right: 20px;
  margin-top: 20px;
}
.nearby-section .sec-title .btn-box {
  margin-top: 32px;
}
.nearby-block {
  margin-bottom: 32px;
}
.nearby-block .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.nearby-block .inner-box:hover {
  background-color: var(--primary-color);
}
.nearby-block .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.nearby-block .inner-box:hover .content-box:before {
  height: 100%;
}
.nearby-block .inner-box:hover .content-box .title {
  color: var(--white-color);
}
.nearby-block .inner-box:hover .content-box p{
  color: var(--white-color);
  display: block;
}
.nearby-block .inner-box .image {
  overflow: hidden;
}
.nearby-block .inner-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    min-height: 300px;
    object-fit: cover;
}
.nearby-block .inner-box .content-box {
  background: var(--linear-gradient-bg);
  padding: 26px 30px 23px;
  position: absolute;
  top: 50%;
  left: -10px;
  min-width: 270px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nearby-block .inner-box .content-box:before {
  background-color: var(--secondary-color);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.nearby-block .inner-box .content-box .title {
  margin-bottom: 0;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: var(--white-color);
}
.nearby-block .inner-box .content-box p {
  margin-bottom: 0;
  position: relative;
  display: none;
  font-size: 12px;
}
.nearby-block {
    padding: 0 10px;
}
.nearby-title h1 {
    font-size: 29px;
    padding: 10px;
    border-bottom: 4px solid var(--primary-color);
}
.nearby-slider .slick-dots li button:before {
    font-size: 50px;
    color: var(--primary-color);
}

.outer-box > .row {
    margin-bottom: 50px;
}
.school-slider .slick-dots li button:before {
    font-size: 50px;
    color: var(--primary-color);
}


/*** 

====================================================================
  investors 
====================================================================

***/

.investors-section {
  padding: 0;
  background: var(--linear-gradient-bg);
}

.investors-section .content-wrap {
    padding: 60px 120px;
}
.investors-bg {
  background-image: url("../images/investors-img.webp");  
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 60vh;  
}
.investors-section .content-wrap h1, .investors-section .content-wrap p{
  color: var(--white-color);
}
 
/*** 

====================================================================
  Final thoughts 
====================================================================

***/
section.final-thoughts-section {
    margin: 0px 0 200px 0;
    background: var(--linear-gradient-bg);
    text-align: center;
    padding: 50px;
}
section.final-thoughts-section .content-wrap h1, section.final-thoughts-section .content-wrap p {
    color: var(--white-color)
}
section.final-thoughts-section .content-wrap h1{
  font-size: 42px;
  font-weight: bold;
}
section.final-thoughts-section .content-wrap p {
    font-size: 22px;
    width: 50%;
    margin: 20px auto 0 auto;
    line-height: normal;
}

/*** 

====================================================================
  CTA 
====================================================================

***/
.cta-banner {
  position: relative;
}
section.cta-section.cta-banner{
    background: url('../images/Al-Reem-Island-02.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 60vh;
}
.cta-banner .outer-box {
  position: relative;
  background-color: var(--primary-color);
  padding: 74px 103px 78px;
  overflow: hidden;
  top: 40vh;
  z-index: 2;
}
.cta-banner .outer-box .content-colum .inner-column .content-box .title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--white-color);
}
.cta-banner .outer-box .content-colum .inner-column .content-box span {
    color: white;
    font-size: 22px;
}
.cta-banner .outer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 658px;
  height: 502px;
  background-image: url(../images/pattern1.png);
  z-index: -1;
  height: 100%;
}
.cta-banner .outer-box .btn-column .inner-column {
  text-align: right;
  margin-top: 21px;
}
@media (max-width: 991.98px) {
  .cta-banner .outer-box {
    padding: 44px 46px 50px;
  }
}
@media (max-width: 575.98px) {
  .cta-banner .outer-box .content-colum .inner-column .content-box .sub-title {
    margin-bottom: 20px;
    display: inline-block;
  }
}
@media (max-width: 1199.98px) {
  .cta-banner .outer-box .content-colum .inner-column .content-box .title {
    font-size: 39px;
  }
}
@media (max-width: 575.98px) {
  .cta-banner .outer-box .content-colum .inner-column .content-box .title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .cta-banner .outer-box .btn-column .inner-column {
    text-align: center;
  }
}
 



/*** 

====================================================================
  facts-section
====================================================================

***/

.facts-section {
  position: relative;
  padding: 30px 0 0px 0;
}
section.facts-section .heading h1 {
    font-size: 37px;
    width: 45%;
    margin: 50px auto;
    font-weight: bold;
    text-transform: uppercase;
}
.facts-blocks.facts-one, .facts-blocks.facts-two, .facts-blocks.facts-three, .facts-blocks.facts-four, .facts-blocks.facts-five , .facts-blocks.facts-six{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.facts-blocks.facts-one {
  background-image: url('../images/prime-location.jpg');
}
.facts-blocks.facts-two {
  background-image: url('../images/option-for-all-budget.webp');
}
.facts-blocks.facts-three {
  background-image: url('../images/reliable-income.jpg');
}
.facts-blocks.facts-four {
  background-image: url('../images/room-to-grow.jpg');
}
.facts-blocks.facts-five {
  background-image: url('../images/residence-upside.jpg');
}
.facts-blocks.facts-six {
  background-image: url('../images/premium-lifestyle.webp');
}
.facts-blocks {
  /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
  position: relative;
}
.facts-blocks .inner-box {
  overflow: hidden;
  position: relative;
}
.facts-blocks .inner-box:hover .overlay-content .icon:before {
  -webkit-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}
.facts-blocks .inner-box:hover .overlay-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.facts-blocks .inner-box:hover .content {
  opacity: 0;
  visibility: hidden;
}
.facts-blocks .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.facts-blocks .title {
  color: #fff;
  font-size: 28px;
  font-weight: normal;
  line-height: 35px;
  margin-bottom: 0;
  margin-top: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.facts-blocks .title a {
  color: #fff;
}
.facts-blocks .count {
  color: transparent;
  /* font-family: Gilda Display; */
  font-size: 128px;
  font-weight: 600;
  line-height: 96px;
  -webkit-text-stroke: 1px #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.facts-blocks .text {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.facts-blocks .content {
  position: relative;
  padding: 160px 50px 60px;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.facts-blocks .overlay-content {
  background-color: #0D0C0C;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0;
  opacity: 0;
  padding: 100px 50px 50px;
  position: absolute;
  visibility: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  -webkit-box-align: center;
}
.facts-blocks .overlay-content .count {
  margin-bottom: 0;
  position: relative;
  -webkit-text-stroke: 1px var(--primary-color);
}
.facts-blocks .overlay-content .title {
  margin-bottom: 20px;
}

@media (max-width: 1366.98px) {
  .facts-blocks .title {
    font-size: 26px;
    margin-bottom: 10px;
    margin-top: 0;
  }
}
@media (max-width: 1366.98px) {
  .facts-blocks .count {
    font-size: 90px;
    line-height: 1;
  }
}
@media (max-width: 1199.98px) {
  .facts-blocks .content {
    padding: 190px 30px 50px;
  }
}
@media (max-width: 991.98px) {
  .facts-blocks .content {
    padding: 150px 30px 50px;
  }
}

@media (max-width: 1299.98px) {
  .facts-blocks .overlay-content {
    padding: 60px 30px 40px;
  }
}


/*** 

====================================================================
 History Section
====================================================================

***/

section.history-section {
    padding: 50px 0;
}
section.history-section .heading {
    font-weight: bold;
    text-transform: uppercase;
}
.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}
.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1.3rem
}
.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}
.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color)
}
.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: var(--primary-color);
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}
@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted var(--primary-color);
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted var(--primary-color);
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}
.timeline-content .title {
  color: var(--secondary-color);
  font-weight: bold;
}



/*** 

====================================================================
CTA 2 Section
====================================================================

***/

.cta-section-two {
    background: url('../images/cta_bg2.webp') no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 50vh;
    display: flex;
    align-items: center;      
    justify-content: center;
    text-align: center;
    position: relative;
    z-index:1;
}
.cta-section-two .content-box{
  position: relative;
   z-index:2;
}
.cta-section-two .content-box .title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}
.cta-section-two .content-box p{
  font-size: 22px;
  color: #fff;
}


/*** 

====================================================================
  feature section two
====================================================================

***/
.design-section {
  position: relative;
  padding: 120px 0 88px;
}
.design-section .heading h1{
  font-weight: bold;
  margin-bottom: 30px;
}
.design-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* equal height columns */
}

.feature-block {
  display: flex;
}

.feature-block .inner-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 400px;
}

.feature-block .image {
  flex: 1; /* image takes available height */
  height: 100%;
}

.feature-block .image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes image fill area and stay proportional */
  display: block;
}

.feature-block .content-box {
  padding: 20px;
  text-align: center;
  background: #fff;
}

.feature-block {
  margin-bottom: 32px;
}
.feature-block .inner-box {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block .inner-box:hover {
  background-color: var(--secondary-color);
}
.feature-block .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.feature-block .inner-box:hover .content-box:before {
  height: 100%;
}
.feature-block .inner-box:hover .content-box .title {
  color: var(--white-color);
}
.feature-block .inner-box .image img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block .inner-box .content-box {
  background: var(--linear-gradient-bg);
  padding: 21px 15px 17px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.feature-block .inner-box .content-box:before {
  background-color: var(--secondary-color);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}
.feature-block .inner-box .content-box .title {
    color: var(--white-color);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.design-section .mobile-btn{
  display: none;
}

/*** 

====================================================================
  Footer SECTION
====================================================================

***/

.footer-section {
  position: relative;
  padding: 110px 0 107px;
  margin-top: 87px;
}
.footer-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background-image: url('../images/prime-location.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.footer-content-column .inner-column {
  padding-left: 100px;
  position: relative;
}
.footer-content-column .inner-column .sec-title {
  margin-bottom: 54px;
}
.footer-content-column .inner-column p {
  color: #adadad;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 29px;
}

.footer-form-column .inner-column {
  padding: 60px 70px 70px;
  position: relative;
  z-index: 9;
  margin-top: -220px;
  padding: relative;
}
.footer-form-column .inner-column:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--light-bg-color);
  z-index: 9;
  height: 100%;
}
.footer-form-column .inner-column:after {
  content: "";
  position: absolute;
  top: 87px;
  left: -80px;
  width: 424px;
  height: 450px;
  background-image: url('../images/dotted-pattern.png');
  background-repeat: no-repeat;
}
.footer-form-column .inner-column .sec-title {
  margin-bottom: 54px;
  position: relative;
  z-index: 9;
}
.footer-form-column .inner-column .sec-title h2{
  color: var(--secondary-color);
  font-weight: bold;
}
.footer-form-column .inner-column .f-form {
  position: relative;
  z-index: 9;
}
.footer-form-column .inner-column .f-form .frm-field {
  position: relative;
  margin-bottom: 15px;
}
.footer-form-column .inner-column .f-form .frm-field input,
.footer-form-column .inner-column .f-form .frm-field select, 
.footer-form-column .inner-column .f-form .frm-field textarea {
  width: 100%;
  height: 50px;
  color: #222222;
  font-size: 16px;
  padding: 0 10px;
  border: 1px solid #adadad;
  background: #fff;
  border-radius: 0;
}
.footer-form-column .inner-column .f-form .frm-field textarea{
  height: 150px;
  padding-top: 10px !important;
}
.footer-form-column .inner-column .f-form .form-submit {
  margin-top: 23px;
}
.form-submit button {
    width: 100%;
}

.f-form select::-ms-expand {
  display: none;
}

.f-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}


.f-form input::placeholder, .f-form input::-webkit-input-placeholder,
.f-form input::-ms-input-placeholder ,  .f-form input:-ms-input-placeholder {
  color: #000 !important;
}
.f-form select::placeholder, .f-form select::-webkit-input-placeholder,
.f-form select::-ms-input-placeholder ,  .f-form select:-ms-input-placeholder {
  color: #000 !important;
}

.iti__country-name {
    display: none;
}


@media only screen and (max-width: 1366px) {
  .footer-form-column .inner-column::after {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .footer-form-column .inner-column {
    margin-top: 0;
  }
  .footer-section {
    background: url(../images/background/bg-booking.jpg);
    margin-top: 0;
  }
  .footer-section:before {
    display: none;
  }
  .footer-content-column .inner-column {
    padding-left: 0;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .footer-form-column .inner-column {
    padding: 50px 25px;
  }
}
@media only screen and (max-width: 480px) {
  .footer-form-column .inner-column {
    padding: 60px 30px 70px;
  }
}




/*** Thank you popup ***/

.thankyou-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.popup-content {
  background: var(--white-color);
  border-radius: 8px;
  max-width: 500px;
  margin: 15% auto;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
  margin-bottom: 15px;
  color: #333;
}

.popup-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close-popup:hover {
  color: var(--font-color);
}



/***** Project modal CSS ****/

.modal-xl {
    background: rgba(0, 0, 0, 0.7);
}
.modal-header {
    background: var(--primary-color);
    padding: 40px;
}
.modal-xl .carousel-item {
    height: 400px;
}
.modal-xl .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.modal button.carousel-control-next {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.modal button.carousel-control-prev {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.modal .modal-content .carousel-inner img {
    border-radius: 0px;
}
.modal .modal-content .carousel-inner {
    border-radius: 0px;
}
.modal .modal-header {
    align-items: self-start;
}
.modal-title.project-title {
    width: 100%;
    color: var(--white-color);
    font-weight: bold;
    font-size: 34px;
    line-height: 35px;
    margin-bottom: 10px;
}
h2.developer-name {
    width: 100%;
    font-size: 20px;
}
.modal h3.project-price {
    font-size: 16px;
}
.modal h3.project-price span {
    font-size: 26px;
    font-weight: bold;
    color: var(--white-color);
    padding-left: 10px;
}
.pop-project-details {
    padding: 30px 0;
}
.pop-project-details .details-list .heading {
    font-weight: bold;
}
.pop-project-details .details-list .heading {
    font-weight: bold;
    font-size: 14px;
}
.pop-project-details .details-list .desc {
    font-weight: normal;
    font-size: 14px;
    position: relative;
    margin-bottom: 10px;
}
.pop-project-details .details-list .desc ul {
    padding: 15px;
    list-style: none;
}
.pop-project-details .details-list .desc ul li {
    font-size: 14px;
    margin-left: 10px;
    padding: 4px 0;
}
.pop-project-details .details-list .desc ul li::before {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f00c";
    display: inline-block;
    margin-right: 0.5em;
    position: absolute;
    left: 0;
}

.ameninites_content {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}
.amenities-list ul {
    list-style: none;
    /* display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none; */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 items per row */
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
}
.projects-facts {
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
}
.amenities-list ul li {
    /* flex: 1 1 calc(25% - 10px);
    box-sizing: border-box; */
    text-align: center;
}
.amenities-title {
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 20px;
}
.amenities-list ul li p {
    margin-top: 15px;
}
.amenities-list img {
    width: 25%;
}

.payment-title,
.facts-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.projects-facts ul li {
    color: #fff;
}
.projects-facts ul li strong{
  padding-left: 5px;
}
.text-content p {
    font-size: 14px;
    width: 80%;
    color: #fff;
}
.key-facts {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 0px;
    height: 100%;
    background: var(--angle-gradient-bg);
}
.payment-type ul {
    list-style: none;
    padding: 0;
}
.payment-type ul li {
    color: #fff;
    line-height: normal;
    font-size: 16px;
    border: 1px solid #e9e6e1;
    margin: 10px 0;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 2px 2px #e9e6e1;
}
.form-section.section {
    margin-top: 20px;
}
.form-section .form-content {
    background: var(--secondary-color);
    padding: 20px 50px;
    border-radius: 0px;
    height: 100%;
    color: #fff;
}
.form-section .form-content label {
    color: #fff;
    left: auto;
}
.form-content .title {
    font-size: 20px;
    font-weight: bold;
}
.form-section.section .form-content p {
    font-size: 14px;
}
form.project-popup-form input,
form.project-popup-form textarea {
    background: transparent;
    border: none;
    border: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    height: 50px;
        appearance: none;
    -webkit-appearance: none;
}
form.project-popup-form input,
form.project-popup-form .row {
    margin-bottom: 5px;
}
form.project-popup-form select {
    background: transparent;
    border: none;
    border: 1px solid #fff;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    height: 50px;
    color: #fff;
}
form.project-popup-form select option{
  color: #000;
}
form.project-popup-form input:focus,
form.project-popup-form textarea:focus {
    background: transparent;
    box-shadow: none;
    outline: none;
    border-bottom: 1px solid;
}
.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
    background: transparent;
}
form.project-popup-form textarea#message {
    height: 100px;
}
form.project-popup-form button {
    background: #fff;
    border: none;
    text-transform: uppercase;
    font-size: 16px;
    padding: 6px 20px;
    text-align: right;
    float: right;
    color: #2d6974;
    border: 1px solid #fff;
    margin-top: 20px;
    border-radius: 0;
}
form.project-popup-form button i {
    font-size: 14px !important;
}
form.project-popup-form button:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 6px 20px;
    font-size: 16px;
}
form.project-popup-form button:hover project-popup-form i {
    color: #01062d !important;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.iti__selected-dial-code {
    color: #fff;
}
.iti__arrow {
    border-top: 4px solid #fff !important;
}



/* ======= Amenities style ======= */
section.amenities {
    background:   var(--white-color);
}
section.amenities .section-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--primary-color);
    position: relative;
    letter-spacing: 3px;
    margin-bottom: 0px;
}
section.amenities .section-subtitle span {
    color: var(--primary-color);
}
section.amenities .section-title {
    font-size: 32px;
    color: var(--font-color);
    position: relative;
    margin-bottom: 15px;
    line-height: 1.2em;
}
section.amenities .section-title span {
    color: var(--primary-color);
}
section.amenities .section-title.whte {
    color: var(--primary-color);
}
section.amenities .sub-title {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.5em;
    font-size: 12px;
    letter-spacing: 3px;
    position: relative;
    padding-left: 15px;
}
section.amenities .sub-title.whte {
    color: var(--primary-color);
}
section.amenities .sub-title:before {
    left: 0;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
}
section.amenities .sub-title:before,
section.amenities .sub-title:after {
    content: "";
    position: absolute;
    display: block;
    top: 44%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
section.amenities .sub-title.border-bot {
    position: relative;
    border-bottom: 1px solid var(--primary-color);
    padding: 8px 0px 15px 15px;
    margin-bottom: 15px;
}

.amenities .item {
    position: relative;
    padding: 45px 30px 20px 30px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-color);
    background: var(--white-color);
    min-height: 200px;
}
.amenities .item:hover .number {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 15px;
    border-radius: 0 0 0 50px;
}
.amenities .item .number {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    text-align: center;
    background-color:   var(--primary-color);
    border-radius: 50%;
    color: var(--white-color);
    font-weight: 400;
    transition: all 0.5s;
}
.amenities .item h5 {
    font-size: 20px;
    color:   var(--primary-color);
    margin-bottom: 15px;
}
.amenities .item p {
    color:   var(--white-color);
    margin: 0;
    line-height: 1.5em;
}
.amenities .item .icon {
    font-size: 45px;
    color:   var(--white-color);
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 0;
}
.amenities .item .icon i{
    background: var(--linear-gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

 
/*** 

====================================================================
 general popup CSS
====================================================================

***/

form.popup-form .frm-field input , form.popup-form .frm-field textarea, form.popup-form .frm-field select{
    width: 100%;
    height: 50px;
    color: #fff;
    font-size: 16px;
    padding: 0 10px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 0;
}
.general-popup-form textarea {
    height: 130px !important;
    padding-top: 10px !important;
}
div#generalForm .modal-body{
  background: var(--linear-top-gradient-bg);
}

div#generalForm .modal-header{
  border:none;
}
div#generalForm .modal-title {
    color: #fff;
    font-size: 20px;
}


/*** 

====================================================================
 ARABIC CSS
====================================================================

***/

html[dir="rtl"] .project-block .inner-box .content-column .inner-column {
    margin-left: -75px;
    margin-right: unset;
}
html[dir="rtl"] .projects-section .slick-list {
    right: 2%;
    left: unset;
}

html[dir="rtl"] .footer-section:before {
    left: 0;
    right: unset;
}
html[dir="rtl"] .footer-form-column .inner-column:after {
    left: unset;
    right: -80px;
}

html[dir="rtl"] .project-slider .slick-prev {
    right: 0;
    left: unset;
}
html[dir="rtl"] .project-slider .slick-next {
    left: 0;
    right: unset;
}
html[dir="rtl"] .nearby-block .inner-box .content-box {
    right: -10px;
    left: unset;
}

[dir="rtl"] .timeline-steps .timeline-step:not(:last-child)::after {
    left: auto;
    right: 7.5rem;
}
[dir="rtl"] .timeline-steps .timeline-step:not(:first-child)::before {
    right: auto;
    left: 7.5rem;
}

[dir="rtl"] .amenities .item .number{
  left: 30px;
  right: unset;
}
[dir="rtl"]  .amenities .item:hover .number {
    left: 0;
    right: unset;
    border-radius: 0 0 50px 0;
}

[dir="rtl"] .footer-content-column .inner-column{
 padding-right: 300px;
 padding-left: 0;
}

[dir='rtl'] button.btn-close {
    margin-right: auto;
    margin-left: unset !important;
}




/**--=== RESPONSIVE CODE ===-**/

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
    /* CSS */
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
   

}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {


}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
.logo-img {
    padding: 20px;
    width: 170px;
}
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: var(--white-color);
        padding: 20px;
    }
        .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .nav-scroll .navbar-nav .nav-link{
      color: var(--font-color);
    }
.banner-header {
    height: calc(80vh - 100px);
}
.banner-header p {
    padding: 0 20px;
}
.banner-header h1 {
    font-size: 32px;
}
.target-audience-section {
    position: relative;
    padding: 50px 0 50px 0;
}
.target-audience-section .content-column .inner-column {
    padding-left: 20px;
}

html[dir="rtl"] .target-audience-section .content-column .inner-column {
    padding-right: 20px;
    padding-left: unset;
}
ul.developer-list.list-style {
    width: 92%;
}
.target-audience-section .image-column .image-1 img {
    width: 90%;
    height: 325px;
}
    .target-audience-section .image-column .image-2 {
        width: 50%;
        left: 0;
        bottom: 0;
    }
.target-audience-section .image-column .image-2 img {
    width: 100%;
        height: 245px;
}

.target-audience-section .image-column .image-1::after {
    top: 0;
    left: -20px;

}
.target-audience-section .image-column {
    position: relative;
    margin-bottom:0px;
}
.target-audience-section .image-column .inner-column {
    padding-bottom: 65px;
}
.project-block .inner-box {
    position: relative;
    left: 0%;
    width: 95%;
    margin:0 auto;
}
.project-block .mob-order-1{
  order: 1;
}
.project-block .mob-order-2{
  order: 2;
}
.project-slider .slick-prev, .project-slider .slick-next{
    top: 40% !important;
    display: block;
    width: 70px !important;
    height: 50px !important;
    cursor: pointer;
    color: #fff !important;
    border: none;
    outline: none;
    background: var(--primary-color) !important;
    z-index: 9 !important;
}
.project-slider .slick-prev:before, .project-slider .slick-next:before{
    color: #fff !important;
}
.project-slider .slick-prev {
    left: 0;
}
.project-slider .slick-next {
    right: 0;
}



.project-slider {
    padding: 0;
}
.projects-section .slick-list {
    left: 0;
}
.project-slider ul.slick-dots {
    bottom: 0;
}
section.nearby-section .heading h1 {
    font-size: 30px;
    margin: 100px auto 50px auto;
}
section.facts-section .heading h1 {
    font-size: 30px;
    width: 88%;
}
section.history-section {
    padding: 0 0 50px 0;
}
.timeline-steps .timeline-step {
    margin: 0.7rem;
}
.timeline-steps {
    row-gap: 15px;
}
section#history p.desc-text {
    padding: 20px 20px 0 20px;
}
.design-section {
    position: relative;
    padding: 50px 0 30px;
}
.design-section .desktop-btn{
  display: none;
}
.design-section .mobile-btn{
  display: block;
  width: 100%;
}
.mob-footer-img {
        background: var(--secondary-color);
        padding: 20px;
        text-align: center;
}
.mob-footer-img img{
  width: 50%;
  margin:0 auto;
}
.footer-section{
  padding-bottom: 0;
  padding-top: 0;
}

html[dir="rtl"] .project-block .inner-box .content-column .inner-column {
    margin-left: 0;
    margin-right: unset;
}
html[dir="rtl"] .projects-section .slick-list {
    right: 0;
    left: unset;
}
  .project-block .inner-box .image-column .image-box {
  height: 100%;
}
.project-block .inner-box .image-column .image-box figure img{
  width: 100%;
}

.amenities .item .number {
    top: 10px;
    right: 10px;
}
.amenities .item {
    padding: 45px 15px 20px 15px;
}
.amenities .item h5 {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-section .form-content {
    padding: 20px 20px;
}

}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
.logo-img {
    padding: 20px;
    width: 170px;
}
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: var(--white-color);
        padding: 20px;
    }
        .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .nav-scroll .navbar-nav .nav-link{
      color: var(--font-color);
    }
.banner-header {
    height: calc(80vh - 100px);
}
.banner-header p {
    padding: 0 20px;
}
.banner-header h1 {
    font-size: 32px;
}
.target-audience-section {
    position: relative;
    padding: 50px 0 50px 0;
}
.target-audience-section .content-column .inner-column {
    padding-left: 20px;
}

html[dir="rtl"] .target-audience-section .content-column .inner-column {
    padding-right: 20px;
    padding-left: unset;
}
ul.developer-list.list-style {
    width: 92%;
}
.target-audience-section .image-column .image-1 img {
    width: 90%;
    height: 325px;
}
    .target-audience-section .image-column .image-2 {
        width: 50%;
        left: 0;
        bottom: 0;
    }
.target-audience-section .image-column .image-2 img {
    width: 100%;
        height: 245px;
}

.target-audience-section .image-column .image-1::after {
    top: 0;
    left: -20px;

}
.target-audience-section .image-column {
    position: relative;
    margin-bottom:0px;
}
.target-audience-section .image-column .inner-column {
    padding-bottom: 65px;
}
.project-block .inner-box {
    position: relative;
    left: 0%;
    width: 95%;
    margin:0 auto;
}
.project-block .mob-order-1{
  order: 1;
}
.project-block .mob-order-2{
  order: 2;
}
.project-slider .slick-prev, .project-slider .slick-next{
    top: 40% !important;
    display: block;
    width: 70px !important;
    height: 50px !important;
    cursor: pointer;
    color: #fff !important;
    border: none;
    outline: none;
    background: var(--primary-color) !important;
    z-index: 9 !important;
}
.project-slider .slick-prev:before, .project-slider .slick-next:before{
    color: #fff !important;
}
.project-slider .slick-prev {
    left: 0;
}
.project-slider .slick-next {
    right: 0;
}



.project-slider {
    padding: 0;
}
.projects-section .slick-list {
    left: 0;
}
.project-slider ul.slick-dots {
    bottom: 0;
}
section.nearby-section .heading h1 {
    font-size: 30px;
    margin: 100px auto 50px auto;
}
section.facts-section .heading h1 {
    font-size: 30px;
    width: 88%;
}
section.history-section {
    padding: 0 0 50px 0;
}
.timeline-steps .timeline-step {
    margin: 0.7rem;
}
.timeline-steps {
    row-gap: 15px;
}
section#history p.desc-text {
    padding: 20px 20px 0 20px;
}
.design-section {
    position: relative;
    padding: 50px 0 30px;
}
.design-section .desktop-btn{
  display: none;
}
.design-section .mobile-btn{
  display: block;
  width: 100%;
}
.mob-footer-img {
        background: var(--secondary-color);
        padding: 20px;
        text-align: center;
}
.mob-footer-img img{
  width: 50%;
  margin:0 auto;
}
.footer-section{
  padding-bottom: 0;
  padding-top: 0;
}

html[dir="rtl"] .project-block .inner-box .content-column .inner-column {
    margin-left: 0;
    margin-right: unset;
}
html[dir="rtl"] .projects-section .slick-list {
    right: 0;
    left: unset;
}
  .project-block .inner-box .image-column .image-box {
  height: 100%;
}
.project-block .inner-box .image-column .image-box figure img{
  width: 100%;
}

.amenities .item .number {
    top: 10px;
    right: 10px;
}
.amenities .item {
    padding: 45px 15px 20px 15px;
}
.amenities .item h5 {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-section .form-content {
    padding: 20px 20px;
}


}