@font-face {
  font-family: 'gothambook';
  src: url('../font/gotham_book_regular-webfont.woff2') format('woff2'),
       url('../font/gotham_book_regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

.gothambook {
  font-family: 'gothambook';
}


@font-face {
  font-family: 'vera_humana_95regular';
  src: url('../font/verah___-webfont.woff2') format('woff2'),
       url('../font/verah___-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

.vera_humana_95regular {
  font-family: 'vera_humana_95regular';
  font-weight: 500;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'gothambook';
}

a{
  cursor: pointer;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

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

img {
  width: 100%;
  height: auto;
}

.img-wrapper {  
  width: 100%;
  height: 100%;
  overflow: hidden; 
}

.inner-img img{
  transition: 0.9s;
}

.inner-img img:hover {
  transform: scale(1.1);
}

.pb-50 {
  padding: 0 0 50px 0;
}

.pt-100 {
  padding: 100px 0 0 0;
}

.pb-100 {
  padding: 0 0 100px 0;
}

.py-100 {
  padding: 100px 0;
}


.py-200 {
  padding: 180px 0;
}

.BD9A68{
  color: #BD9A68;
}

.A818080 {
  color: #818080;
}

.A4F4F4F {
  color:#4F4F4F;
}
.F9F4F1 {
  background-color: #F9F4F1;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-32 {
  font-size: 32px;
}


.fs-34 {
  font-size: 34px;
}


.fs-36 {
  font-size: 36px;
}

.fs-38 {
  font-size: 38px;
}

.fs-40 {
  font-size: 40px;
}

.fs-50 {
  font-size: 50px;
}

.fs-60 {
  font-size: 60px;
}

.fs-70 {
  font-size: 70px;
}

/*-------------------------------------- header -----------------------------------------*/

nav .dropdown-menu a:hover p{
  color: #fff;
}

nav .dropdown-menu {
  padding: .5rem !important;
}
nav .dropdown-item-p {
  font-size: 26px;
  color: #BD9A68;
}

nav .dropdown-item:active {
  background-color: #BD9A68!important;
}

nav .dropdown-item:focus, nav .dropdown-item:hover {
  background-color: #BD9A68!important;
}   

.header {
  position: relative;
}

.logo {
  font-size: 55px;
  z-index: 1;
  color: #fff !important;
}


.menu-right {
  position: absolute;
  top: 30px;
  z-index: 1;
}

.menu-right ul li a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-right ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .2s ease-in;
}

.menu-right ul li a:hover::after {
  width: 100%;
}

/* I hide the checkbox because I only need the label */
.header #check{
    display: none;
}

.header .toggle {
  cursor: pointer;
  overflow: hidden;
  width: 40px;
  height: 40px;
  z-index: 2;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30px;
}

.header .line-toggle {
  position: absolute;
  display: block;
  width: 50px;
  height: 1.5px;
  background: #fff;
  border-radius: 5px;
  transition: all .6s;
}

.header .line-toggle:first-child {
  transform: translateY(-10px) translateX(0px);
  width: 35px;
  transition-delay: 0s;
}

.header .toggle .line-toggle:nth-child(2) {
    width: 15px;
    transform: translateY(0px) translateX(9px);
    transition-delay: .12s;
}

.header .line-toggle:last-child {
  transform: translateY(10px) translateX(5px);
  width: 25px;
  transition-delay: 0s;
}

.header .toggle.activate .line-toggle:first-child {
  transform: translateY(0) translateX(0) rotate(45deg);
  width: 35px;
  height: 1.5px;
  transition-delay: .1s;
}

.header .toggle.activate .line-toggle:nth-child(2) {
  transform: translateX(110px);
  transition-delay: 0s;
}

.header .toggle.activate .line-toggle:last-child {
  transform: translateY(0) translateX(0) rotate(314deg);
  width: 35px;
  height: 1.5px;
  transition-delay: .1s;
}


/* the nav height is set to 0 when the navbar is closed */

.header nav{
    text-align: left;
    overflow: hidden;
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-family: 'vera_humana_95regular';
}

.header .nav-width {
  width: 600px;
}

.header nav a{
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(.22,.43,.35,1.5);
    opacity: 0;
    transform: scale(0);
    transform-origin: top;
    font-size: 30px;
    display: flex;
    justify-content: space-between;
}

.header nav a p {
  margin: 0;
}

.header nav a svg {
  font-size: 16px;
}

/* the nav height will be set to the height in pixels that would have for default, using height:auto won't work but you can put that value in pixels creating the slide*/
.header #check:checked ~ nav{
    height: 100vh;
}

.header #check:checked ~ nav a{
    padding: 10px;
    opacity: 1;
    transform: scale(1);
    align-items: center;
}

.header #check:checked ~ nav a:hover{
  color: #BD9A68;
}


/*-------------------------------------- banner -----------------------------------------*/

.banner-part {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.banner-part::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  /* background-image: url(../img/dot.png); */
  z-index: 1;
}

.fullscreen-video {
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  object-fit: cover;
}


.banner-content {
  width: 100%;
  height: 100vh;
}

/*-------------------------------------- austin -----------------------------------------*/

.proven {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  
}

p.proven-x-padding {
    padding: 0 200px;
}


.meet-k-section {
  background-image: linear-gradient(to top, #fff 32%, #f9faf1 20%) !important;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: radial-gradient( rgba(189, 154, 104, 0.8) 60%, rgba(255, 255, 255, 1) 62%);
  border-radius: 50%;
  position: relative;
  display: block;
  box-shadow: 0px 0px 25px 3px rgba(189, 154, 104, 0.8);
  margin-top: 60px;
  display: inline-block;
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .75);
  top: -20%;
  left: -16px;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

/*-------------------------------------- Who you work with matters -----------------------------------------*/

.who-you-bg {
  background-image: linear-gradient(to bottom, #fff 50%, #f9faf1 20%) !important;
}

#gallery {
  overflow: hidden;
}

#gallery img {
  width: 75% !important;
  opacity: 0.3;
}

#gallery img:hover {
  opacity: 1;
}

.gallery-b-right {
  border-left: 1.5px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}


.gallery-card {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  align-items: flex-end;
  padding: 20px 15px;
}

.gallery-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 76.6%, #000000);
  opacity: 0.6;
  transform: translate3d(0, 0, 0);
  transition: background-color .3s;
  z-index: 1;
}

.gallery-card__preview {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  transition: transform .75s ease-out;
}

.gallery-card__title {
  position: relative;
  width: 100%;
  color: #fff;
  text-shadow: none;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  text-align: center;
  font-size: 26px;
  text-transform: uppercase;
  padding-bottom: 20px;
  letter-spacing: 3px;
  margin-top: auto;
  margin-bottom: auto;
}

.gallery-card:after {
  content: "";
  width: 0;
  padding-top: 121.5%;
}


.gallery-card:hover:before {
  background-color:#000;
}

.gallery-card:hover .gallery-card__title {
  -webkit-transform: translateY(-51px);
  -moz-transform: translateY(-51px);
  -ms-transform: translateY(-51px);
  transform: translateY(-51px);
}

.gallery-card:hover .gallery-card__title:after {
  opacity: .3;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}

.gallery-card:hover .gallery-card__preview img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}


/*-------------------------------------- Price Upon Request -----------------------------------------*/

.image-wrap {
  position: relative;
  height: 310px;
  background: var(--themeGray);
  overflow: hidden;
}

.image-wrap  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}

.price-upon-text p {
  color: #fff;
  background-color: #CAAE86;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  right: 0;
  
}

.price-upon-inner-text ul li:not(:last-child):after {
  content: '|';
  margin: 0 5px;
}

.price-upon-text:hover .image-wrap img {
  transform: scale(1.1);
}

.image-wrap-btn {
  position: absolute;
  top: 38%;
  right: 37%;
}

.price-upon-inner-img img {
  width: 100px !important;
}

/*=============================
	1. Button style
===============================*/
.price-upon-bottom .btn {
	user-select: none;
	-moz-user-select: none;
	background: #bd9a68 none repeat scroll 0 0;
	border: 1.3px solid #bd9a68;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1rem;
	margin-bottom: 0;
	padding: 15px 20px;
	text-align: center;
	text-transform: uppercase;
	touch-action: manipulation;
	vertical-align: middle;
	white-space: nowrap;
	transition: background .6s cubic-bezier(.55, 0, .1, 1), border .6s cubic-bezier(.55, 0, .1, 1);
}
.price-upon-bottom .btn_m {
	position: relative;
	overflow: hidden;
	height: 1rem;
}
.price-upon-bottom .btn_c {
	transition: transform .6s cubic-bezier(.55, 0, .1, 1);
}
.price-upon-bottom .btn_t1 {
	transform-origin: 100%;
	transition: transform .45s cubic-bezier(.55, 0, .1, 1), color .6s cubic-bezier(.55, 0, .1, 1);
	display: block;
}
.price-upon-bottom .btn_t2 {
	transform-origin: 0;
	transition: transform .45s cubic-bezier(.55, 0, .1, 1), color .6s cubic-bezier(.55, 0, .1, 1);
	display: block;
	transform: rotate(40deg);
}
.price-upon-bottom .btn:hover .btn_c {
	transform: translateY(-1rem);
}
.price-upon-bottom .btn:hover .btn_t1 {
	transform: rotate(40deg);
}
.price-upon-bottom .btn:hover .btn_t2 {
	transform: rotate(0);
}
.price-upon-bottom .btn:hover {
	background: #bd9a68;
	border-color: #bd9a68;
	color: #fff;
}
.price-upon-bottom .transparent-btn {
	background: transparent;
	color: #bd9a68;
}
.price-upon-bottom .transparent-btn:hover {
	border-color: #bd9a68;
	background: #bd9a68;
	color: #fff;
}

.owl-nav {
  display: inline-block;
  position: absolute;
  bottom: -103px;
}

.owl-nav button {
  background-color: #bd9a68 !important;
  border: none !important;
  margin-right: 15px !important;
  color: #fff !important;
  border-radius: 30px !important;
  width: 45px;
  height: 45px;
}


.owl-nav button:hover {
  background-color: #000 !important;;
}

.owl-nav span {
  font-size: 30px !important;
  line-height: 1;
}

.video-spotlight {
  background-image: linear-gradient(to top, #fff 32%, #f9faf1 20%) !important;
}


.video-spotlight-video-btn {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}

.video-spotlight-video-btn .play-btn {
  margin-top: 0;
}

.stay-updated input,
.stay-updated textarea{
  color: #000;
  border-color: #000;
  padding: 10px;
  border-width: 1px;
  width: 100%;
}

.stay-updated input::placeholder,
.stay-updated textarea::placeholder {
  font-family: 'vera_humana_95regular';
}

.stay-updated .price-upon-bottom .transparent-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  border-radius: 0;
  font-family: 'vera_humana_95regular';
}

.form-checkbox-text {
  font-size: 12px;
  text-align: justify;
}

.lake-Dubai-img {
  padding: 190px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-repeat: no-repeat;
}

 .lake-Dubai-text .transparent-btn {
  border: 2px solid #fff !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-family: 'vera_humana_95regular' !important;
  font-size: 18px !important;
}

.lake-Dubai-text .transparent-btn:hover {
  background: #fff !important;
  color: #bd9a68 !important;
}

.footer-img img {
  width: 300px;
}

.footer-1st a {
  color: #000 ;

}

.footer-1st a:hover,
.footer-2st-left a:hover,
.footer-2st-right a:hover,
.footer-4st a:hover  {
  color: #bd9a68 ;
  
}

.footer-2st-left a,
.footer-2st-right a,
.footer-4st a  {
  color: #000 ;
  padding-right: 30px ;
  text-transform: uppercase;
}

.footer-2st-right a {
  font-size: 30px;
}


/*====================================================================================== 1. Button style ==========================================================================================*/

#video-gallery .banner-part {
  background-attachment: fixed !important;
}

#video-gallery .banner-part::before {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.video-gallery-banner {
  height: 65vh !important;

}

.video-gallery-banner-text {
  z-index: 1;
}


.modal-dialog {
  max-width: 75% !important;
  margin: 30px auto !important;
}

.modal-body {
position:relative;
padding:0px;
}

.btn-close {
  background-color: red;
  position: absolute;
  top: -25px;
  right: 0;
  z-index: 1;
}

.img-wrapper {  
  overflow: hidden; 
}

.single-faculty {
  cursor: pointer;
}

.single-faculty .img-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .2;
}

.single-faculty-img {
  transition: 0.8s;
}

.single-faculty:hover .single-faculty-img{
  transform: scale(1.1);
}

.single-faculty:hover h4 {
  color: #bd9a68 !important;
}

.img-wrapper-position {
  position: relative;
}

.img-wrapper-position a.play-btn {
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
}

.video-gallery-small {
  width: 80px !important;
  height: 80px !important;
}

.video-gallery-small:before {
  top: -20px !important;
  left: -20px !important;
}

/*====================================================================================== connect ==========================================================================================*/
/* .popup-wrap {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  content: '';
  background: rgba(0, 0, 0, 0.85);
}
.popup-box {
  width: 400px;
  padding: 70px;
  transform: translate(-50%, -50%) scale(0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  background: #fff;
  text-align: center;
}
.popup-box .close-btn {
  width: 35px;
  height: 35px;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 1000px;
  background: #d75f70;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  line-height: 190%;
}
.popup-box .close-btn:hover {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
} */

.video-btn {
  display: block;
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.popup-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: white;
  font-size: 20px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 1;
}

.video-container {
  position: relative;
  width: 100%;
  height: 700px;
}

.video-container video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.transform-in, .transform-out {
  display: block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.transform-in {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.transform-out {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
}

.connect-bg  {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.connect-bg::after {
  position: absolute;
  background-color: #000;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.connect-right-1st a{
  color: #fff;
}

.connect-width .modal-dialog {
  max-width: 100% !important;
  margin: 0 !important;
  max-height: 100% !important;
  height: 100% !important;
}

.connect-width .modal-content,
.connect-height {
  height: 100%;
}

.connect-width .btn-close {
  top: 20px !important;
  right: 20px !important;
}

.connect-right,
.connect-left {
  padding: 65px;
}

.social-media svg.svg-inline--fa:hover{
    color: #bd9a68 !important;
}

#video-gallery .play-btn {
  width: 60px;
  height: 60px;
}

#video-gallery .play-btn:before {
  top: -12px;
  left: -12px;
}
#video-gallery .img-wrapper-position a.play-btn {
  top: calc(50% - 35px);
  left: calc(50% - 35px);
}


@media only screen and (max-width: 1500px) {
  .header .toggle {
    right: 15px;
}


}

@media only screen and (max-width: 1399px) {
.meet-k-section {
  background-image: linear-gradient(to top, #fff 25%, #f9faf1 20%) !important;
}

.connect-right,
.connect-left {
  padding: 30px;
}


}


@media only screen and (max-width:1024px) {

  .banner-content {
    height: 100%;
  }

  .menu-right {
    display: none;
  }

  .header .toggle {
    right: 15px;
}

p.proven-x-padding {
  padding: 0 0px;
}

.py-100 {
  padding: 50px 0;
}

}

@media only screen and (max-width:991px) {
  .lake-Dubai-text .transparent-btn {
    font-size: 15px !important;
}

.price-upon-bottom .btn {
  padding: 12px 16px;
}

.owl-nav {
  bottom: -100px;
}

.owl-nav button {
  width: 40px;
  height: 40px;
}

.lake-Dubai-img {
  padding: 125px 0;
}

}


@media only screen and (max-width:767px) {
  .fs-50 {
    font-size: 32px;
}

.fs-24 {
  font-size: 20px;
}

.fs-40 {
  font-size: 32px;
}

.owl-nav {
  bottom: -89px;
}


.modal-dialog {
  max-width: 95% !important;
  margin: 0 auto !important;
}

}

@media only screen and (max-width:600px) {
  nav ul.dropdown-menu {
      width: 100% !important;
  }

  .header .nav-width {
    width: 100% !important;
}
}

@media only screen and (max-width: 500px) {
  nav .dropdown-menu {
      padding: 0 !important;
  }
  nav .dropdown-item-p {
      font-size: 16px;
      color: #BD9A68;
  }
  
}