/*-------------------------------------------
  Coder: Rao Daniyal 
  Contact: rao.daniyal@olivedigital.com 
  Github: https://gitlab.com/rao.daniyal 
--------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
/* @font-face {
  font-family: "Helvetica";
  src: url(../fonts/Helvetica\ Neue\ 97\ Black\ Condensed.otf);
} */
:root {
  --white: #fff;
  --black: #000;
  --theme-color: #fff;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Poppins", sans-serif;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-BlackCond.eot');
  src: url('../fonts/HelveticaNeue-BlackCond.eot?#iefix') format('embedded-opentype'),
      url('../fonts/HelveticaNeue-BlackCond.woff2') format('woff2'),
      url('../fonts/HelveticaNeue-BlackCond.woff') format('woff'),
      url('../fonts/HelveticaNeue-BlackCond.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


.df {
  display: flex;
}

.aic {
  align-items: center;
}
.ais {
  align-items: flex-start;
}
.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1440px;
  }
}
.container-fluid {
  max-width: 92%;
  margin: 0 auto;
}
section {
  position: relative;
  padding: 4rem 0;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
}

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

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

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

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  /* position: absolute; */
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}
.gradient-line {
  display: flex;
  height: 12px;
}
.gradient-line span {
  display: block;
  flex: 1;
}
.border-darkpink {
  border-color: #b3208d !important;
}
.border-red {
  border-color: #ec2031 !important;
}
.border-yellow {
  border-color: #f9a51d !important;
}
.border-skyblue {
  border-color: #00aabd !important;
}
.border-green {
  border-color: #99ca3c !important;
}
.border-maroon {
  border-color: #9d2031 !important;
}
.border-darkpink {
  border-color: #b3208d !important;
}
.border-blue {
  border-color: #1b79d0 !important;
}
.bg-red {
  background: #ec2031 !important;
}
.bg-pink {
  background: #f30891 !important;
}
.bg-yellow {
  background: #f9a51d !important;
}
.bg-skyblue {
  background: #00aabd !important;
}
.bg-green {
  background: #99ca3c !important;
}
.bg-maroon {
  background: #9d2031 !important;
}
.bg-darkpink {
  background: #b3208d !important;
}
.bg-brown {
  background: #d3591d !important;
}
.bg-blue {
  background: #1b79d0 !important;
}
.clr-red {
  color: #ec2031 !important;
}
.clr-pink {
  color: #f30891 !important;
}
.clr-yellow {
  color: #f9a51d !important;
}
.clr-skyblue {
  color: #00aabd !important;
}
.clr-green {
  color: #99ca3c !important;
}
.clr-maroon {
  color: #9d2031 !important;
}
.clr-darkpink {
  color: #b3208d !important;
}
.clr-brown {
  color: #d3591d !important;
}
.clr-blue {
  color: #1b79d0 !important;
}
header .themeBtn {
  background-color: #f9a51d;
}
header .themeBtn:hover {
  background: #99ca3c;
}

/* Theme Btn Style */

.themeBtn {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #99ca3c;
  border-radius: 5px;
  padding: 0.75em 2.5em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.themeBtn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: #99ca3c;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
.themeBtn:before,
.themeBtn:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  z-index: -1;
  background-color: #f9a51d;
  border-radius: 50%;
}
.themeBtn:before {
  left: -20px;
  transform: translate(-50%, -50%);
}
.themeBtn:after {
  right: -20px;
  transform: translate(50%, -50%);
}
.themeBtn:hover:before {
  -webkit-animation: criss-cross-left 0.8s both;
  animation: criss-cross-left 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.themeBtn:hover:after {
  -webkit-animation: criss-cross-right 0.8s both;
  animation: criss-cross-right 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Theme Btn Style */

.navbar-nav {
  gap: 1rem 3rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 400;
  color: #393939;
  text-transform: uppercase;
  line-height: 1;
  padding: 0;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: #99ca3c;
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  margin-left: 2rem;
}

.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}
.main-slider h2 {
  color: var(--white);
  font-size: 4.375rem;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
}
.carousel-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 20%;
  left: 12.5%;
}
.carousel-control-prev,
.carousel-control-next {
  height: 5rem;
  width: 5rem;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-size: 1.25rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  opacity: 1;
  position: unset;
  margin: 0;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #f9a51d;
  color: var(--white);
}
.secHeading {
  font-size: 4.375rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

/* aboutSec */
.aboutSec p {
  font-size: 1.125rem;
  line-height: 2;
}
.abtBox:hover img {
  animation: bounce infinite 3s;
}
.abtBox a {
  display: block;
  color: var(--black);
  font-size: 1.465rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-family: "Poppins", sans-serif;
}
/* arka-grand */
.arka-grand {
  padding-top: 0;
}
.arka-grand .row + .row {
  margin-top: 5rem;
}
.arka-grand h2 {
  margin-bottom: 3rem;
  position: relative;
  -webkit-box-reflect: below -50px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  text-align: center;
}
.arka-grand h2 span {
  font-size: 12.5rem;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  /* font-family: "Poppins", sans-serif; */
  font-family: 'Helvetica Neue';
  animation: waviy 1s infinite;
  animation-delay: calc(0.1s * var(--i));
}
@keyframes waviy {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
}
.arka-grand figure {
  overflow: hidden;
}
.arka-grand figure img {
  transition: 0.3s ease-in-out;
}
.arka-grand figure:hover img {
  transform: scale(1.075);
}
.arka-grand .themeBtn {
  background-color: #f9a51d;
}
.arka-grand .themeBtn:hover {
  background-color: #1b79d0;
}
.arka-grand .arka-content {
  background-color: #00aabd;
  padding: 3rem;
  width: 92%;
  margin-left: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.arka-grand .arka-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
.arka-grand .arka-content p {
  color: var(--white);
  font-size: 1rem;
  line-height: 2.067;
}
.map-content,
.corporate-events {
  width: 92%;
  margin-left: auto;
}
.corporate-events .secHeading {
  margin-bottom: 1.75rem;
}
.corporate-events ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.corporate-events ul li {
  width: 33.3%;
  padding-left: 1.75rem;
  background: url(../images/star.png) left center/20px no-repeat;
}
.corporate-events ul li a {
  font-size: 1.125rem;
  font-weight: 400;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  color: var(--black);
  line-height: 2;
}
.evntImg {
  position: relative;
  margin-top: 1.75rem;
}
.evntImg .content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease-in-out;
  transform: scaleY(0);
}
.evntImg:hover .content {
  transform: scaleY(1);
}
.map-content .secHeading {
  font-size: 2.1875rem;
  margin-bottom: 2rem;
}
.map-content iframe {
  min-height: 450px;
  width: 100%;
}

/* Service Section */
.services-tab ul.nav {
  justify-content: center;
  gap: 3rem;
  margin: 1.5rem 0 3rem;
  border-bottom: 1px solid #e1e1e1;
}
.services-tab ul.nav li .nav-link {
  background: transparent;
  border: 0;
  padding: 0.5rem 0.25rem;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}
.services-tab ul.nav li .nav-link.active {
  background-color: transparent;
  color: #f9a51d;
}

.servCard {
  margin-bottom: 2rem;
}
.servCard .imgWrap {
  overflow: hidden;
  display: block;
  margin-bottom: 0.75rem;
  background-color: var(--black);
}
.servCard .imgWrap img {
  transition: 0.3s ease-in-out;
}

.servCard h3 {
  font-size: 2.625rem;
  color: #14151c;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}
.servCard:hover .imgWrap img {
  opacity: 0.8;
  transform: scale(1.075);
}

/* mapSection */

.mapSection iframe {
  width: 100%;
  height: 1080px;
}
.map-tabs ul.nav {
  display: flex;
  align-items: center;
  margin: 2rem 0 0;
}

.map-tabs ul.nav li {
  flex: 1;
}
.map-tabs ul.nav li .nav-link {
  width: 100%;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  font-size: 1.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}
.map-tabs ul.nav li .nav-link.active {
  background-color: #1b79d0;
  color: var(--white);
}
/* contactSection */
.contactSection {
  padding: 0;
  background: #f9a51d;
}

.contactSection figure {
  margin-right: -15.5rem;
}
.contactSection h2 {
  font-size: 4.125rem;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  line-height: 1;
  font-weight: 300;
}
.contactSection p {
  color: var(--white);
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 1.769;
  margin-bottom: 2rem;
}
.contactSection form {
  padding-right: 3rem;
}
.contactSection .form-group {
  margin-bottom: 1.5rem;
}
.contactSection .form-group .form-control {
  height: 5.625rem;
  border: 0;
  border-radius: 0;
  padding-left: 1.5rem;
  font-size: 1.25rem;
  color: #696969;
}
.contactSection .form-group textarea.form-control {
  height: 225px;
  padding-top: 1rem;
}
.contactSection .themeBtn {
  background: #1c2f5e;
  border: 0;
}
.contactSection .themeBtn:before,
.contactSection .themeBtn:after {
  background-color: #00aabd;
}
/* Begin: footer */

footer {
  padding-top: 6em;
  position: relative;
}

footer h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.375rem;
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
footer .links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 0.5rem 0;
}
footer .links li a {
  font-weight: 400;
  color: #4d4d4d;
  font-size: 14px;
  text-transform: capitalize;
}
footer .links li a:hover,
footer .links li a:focus {
  color: var(--primary);
}

.socialIo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.socialIo li a {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  font-size: 1rem;
  display: inline-grid;
  place-items: center;
  color: #757c85;
  border: 1px solid #e1e1e1;
}
.socialIo li a:hover {
  background-color: #f9a51d;
  color: var(--white);
}

.copyRight {
  border-top: 1px solid #d7d7d7;
  padding: 2em 0;
  margin-top: 5em;
  align-items: center;
}

.copyRight p {
  margin: 0;
  color: #4d4d4d;
  font-size: 1.625rem;
  font-weight: 400;
}
.btm-row ul {
  display: flex;
  padding-left: 0;
  margin: 0;
  align-items: center;
}
.btm-row ul li {
  flex: 1;
}
.btm-row ul li a {
  color: var(--white);
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75em;
  margin: 0;
  display: block;
  text-transform: uppercase;
  text-align: center;
  background-color: #1c2f5e;
}
.btm-row ul li a.bg-maroon {
  background: #9d2031;
}
.btm-row ul li a:hover {
  background: #99ca3c;
}
/* END: footer */
.abtInner {
  background-color: #00aabd;
}
.abtInner p {
  font-size: 1.125rem;
  font-weight: 200;
  color: #fff;
}
.abtInner h2 {
  font-size: 4.375rem;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}
.grandInner .arka-content {
  width: 100%;
}
.grandInner .arka-content h3 {
  font-size: 2.625rem;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}

.faqSection {
  padding: 6rem 0;
}

.faqSection .secTitle {
  text-align: center;
  margin-bottom: 3rem;
}

.faqSection .secTitle h2 {
  color: #fff;
}

.faqSection .card {
  background: transparent;
  border: 0;
  border-width: 1px;
  border-color: rgb(240, 240, 240);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, 0.03);
  padding: 0;
}

.faqSection .card .btn-link {
  --height: 5rem;
  --width: 4.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  color: #000;
  padding: 0;
  border: 0;
  font-size: 1.125rem;
  font-weight: 400;
  border-radius: 5px;
  text-decoration: none;
  overflow: hidden;
  padding-left: 1.7rem;
  border-left: 7px solid #acacac;
  border-bottom-left-radius: 0;
}

.faqSection .card .btn-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width);
  height: var(--height);
  background: #232323;
  margin-right: 2rem;
}

.faqSection .card .btn-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  width: var(--width);
  height: var(--height);
  margin-left: auto;
  /* background: var(--primary); */
}

.faqSection .card .btn-link i::before {
  content: "\f068";
}

.faqSection .card .btn-link.collapsed i::before {
  content: "\f067";
}

.faqSection .card .btn-link.collapsed i {
  color: var(--black);
  /* background: #232323; */
}

.faqSection .card + .card {
  margin-top: 2rem;
}

.faqSection .card .card-body {
  padding: 0rem 4rem 0.5rem 0rem;
}

.faqSection .card .card-body p {
  color: #9e9e9e;
  font-size: 1rem;
  font-weight: 400;
  border-left: 7px solid #ffad7b;
  padding-left: 1.83em;
  margin: 0;
  line-height: 33px;
}
.blogcontnt h2 {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 2.625rem;
  font-weight: 300;
  text-transform: uppercase;
}
.blogcontnt p {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
.blogInner .blogcontnt {
  width: calc(100% - 5rem);
  margin: -3rem 0 0 auto;
  position: relative;
  padding: 2rem;
}

.blogWrap {
  margin-bottom: 2.5rem;
}
.blogInner .iconInner {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.iconInner li a{
  color: #fff;
}



.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown .sub-menu {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 111;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    top: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 1.3rem 0;
}
.navbar-nav .dropdown:hover .sub-menu {
        opacity: 1;
        visibility: visible;
}
.navbar-nav .dropdown .sub-menu li a {
      display: inline-block;
      color: rgba(0,178,221,1);
      text-transform: uppercase;
}
.navbar-nav .dropdown .sub-menu li a:hover {
  transform: translateX(15px);
}

.artHead {
    text-align: center;
    margin: 0 0 4rem;
}

.artHead .secHeading {
    margin: 0 0 1rem;
}

.artHead p {
    width: 75%;
    margin: 0 auto;
}

.artpgBox {
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    position: relative;
    transition: ease all 0.5s;
}
.artpgBox:hover {
    box-shadow: 0 17px 62px rgb(206 206 206 / 63%);
}
.artpgBox figure {
    height: 319px;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artpgContent {
  background: var(--white);
    padding: 3rem 3rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.locationCategory .artpgBox {
    border-bottom: 0.8rem solid #3db3df;
}
.artpgContent h2 {
    font-size: 1.5625rem;
    color: #000000;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 15px;
}

.artpgContent p {
    color: #646464;
    font-size: 0.875rem;
    margin: 0;
    line-height: 2.2;
}

.learnBtn {
    background: #14151c;
    display: block;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 1.3125rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.2rem;
    padding: 0.7rem 0;
}
.artpgBox.newHomeThumb figure {
    height: 13.875rem;
}

.artpgBox.newHomeThumb .artpgContent {
    padding: 1rem;
}

.artpgBox.newHomeThumb .artpgContent a {
    font-size: 14px;
    color: #0093b8;
}
.artpgBox.newHomeThumb .artpgContent h2 {
    line-height: 1.5;
}
.artpgBox.newHomeThumb .artpgContent h2 span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #646464;
}

.artpgBox.newHomeThumb .artpgContent ul {
    line-height: 2;
}

.artpgBox.newHomeThumb .artpgContent ul li:last-child a {
    font-weight: 600;
}
.artpgBox.newHomeThumb .learnBtn {
    text-align: left;
    padding-left: 1rem;
}
.barContent h2 {
    font-size: 3.125rem;
    color: #000000;
    font-weight: lighter;
    text-transform: uppercase;
}

.barContent h3 {
    font-size: 30px;
    color: #828282;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 0 0 1.5rem;
}

.barContent p {
    font-weight: lighter;
    margin: 0 0 1.6rem;
}

.barContent ul li {
    font-size: 0.875rem;
    color: #828282;
    font-weight: 500;
    position: relative;
    padding-left: 1.3rem;
}

.barContent ul li:after {
    content: '';
    position: absolute;
    left: 0;
    width: 7px;
    height: 7px;
    background: #00aabd;
    border-radius: 50%;
    top: 7px;
}

.barContent ul li+li {
    margin-top: 1rem;
}

.barContent ul {
    margin: 0 0 2rem;
}

.barContent .themeBtn {
    background: #14151c;
    padding: 0.75em 1.5em;
}
.welenSec {
    background: #00aabd;
}

.welenSec .artHead p {
    width: 90%;
    color: #fff;
}

.welenSec .artHead .secHeading {
    color: #fff;
    margin: 0 0 1.7rem;
}

.welenSec .artHead {
    margin: 0 0 3rem;
}

.welenCard figure img {
    width: 100%;
}

.welenCard {
    background: #fff;
}

.welenContent {
    padding: 30px 40px;
}

.welenContent span {
    font-size: 1rem;
    color: #828282;
    font-weight: 400;
}

.welenContent h2 {
    font-size: 1.875rem;
    font-weight: 300;
    color: #000000;
    padding-right: 1rem;
    margin: 10px 0 25px;
}

.welenContent .themeBtn {
    padding: 0.55em 1.4em;
}
.barContent .d-flex {
    gap: 1rem;
}
.arkaGrand .barContent h2 {
    color: #fff;
    margin: 0 0 1.5rem;
}

.arkaGrand .barContent p {
    color: #fff;
}

.arkaGrand .barContent ul li {
    color: #fff;
}

.arkaGrand .barContent ul li:after {
    background: #fff;
}
.golfCourse .artpgContent:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 62px 0px rgba(206, 206, 206, 0.63);
}
.golfCourse .artpgContent {
    padding: 3rem 2rem;
}

.propertyFilter {
  background: #1e2e57;
  box-shadow: 10px 0 79px 7px rgb(0 0 0 / 11%);
}

.propertyFilter .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.propertyFilter .top .switcher {
  width: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eecc79;
  padding: 1.5rem;
}
/** BEGIN CSS NEEDED FOR SWITCH **/
.on-off-toggle {
    width: 6.875rem;
    height: 2.875rem;
    position: relative;
    display: inline-block;
    background: var(--white);
    border-radius: 100px;
    padding: 6px;
    font-size: 24px;
}

.on-off-toggle__slider {
    width: 6.125rem;
    height: 100%;
    border-radius: 34px;
    background-color: #ffffff;
    transition: background-color 0.4s;
    margin: 0;
    display: flex;
    align-items: center;
}

.on-off-toggle__slider:before {
    content: '';
    display: block;
    background-color: #1c3055;
    bottom: 6px;
    height: 34px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 34px;
    z-index: 5;
    border-radius: 100%;
}

.on-off-toggle__slider:after {
    display: block;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    content: 'Map';
    color: #1c3055;
    padding-left: 56px;
    transition: all 0.4s;
}

.on-off-toggle__input {
  position: absolute;
  opacity: 0;
}

.on-off-toggle__input:checked + 
.on-off-toggle__slider {
  background-color: #fff
}

.on-off-toggle__input:checked + .on-off-toggle__slider:before {
    transform: translateX(4.125rem);
}

.on-off-toggle__input:checked + 
.on-off-toggle__slider:after {
  content: 'List';
  color: #1c3055;
  padding-left: 8px;
}

/*** END CSS NEEDED FOR SWITCH **/


/*** Begin: Price Range Slider ***/
.text-violet {
  color: #504d9b;
}
.multi-range {
  position: relative;
  height: 12px;
  width: 14.375rem;
  background: #fff;
}
.multi-range input[type=range]:nth-child(1)::-webkit-slider-thumb::before {
  background-color: #808080;
}
.multi-range input[type=range]:nth-child(2) {
  background: none;
}
.multi-range input[type=range]:nth-child(2)::-webkit-slider-thumb::before {
  background-color: #808080;
}
.multi-range input[type=range]::-moz-range-track {
  background: none;
}
.priceRange {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.priceRange span, .homedd .dropdown-toggle, .advanceOpt .dropdown-menu a {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}
input[type=range] {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  background: #f0c980;
  background-size: 100% 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: none;
}
input[type=range]:active,
input[type=range]:focus,
input[type=range]::-moz-focus-outer {
  border: none;
  outline: none;
}
input[type=range]::-moz-range-thumb {
  position: relative;
  height: 28px;
  width: 28px;
  margin: 5px 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 4px 0.5px rgba(0,0,0,0.3);
  -moz-appearance: none;
       appearance: none;
  pointer-events: all;
}
input[type=range]::-moz-range-thumb:hover {
  background-color: #deddee;
}
input[type=range]::-moz-range-thumb:active {
  background-color: #504d9b;
}
input[type=range]::-webkit-slider-thumb {
  position: relative;
  height: 28px;
  width: 28px;
  margin: 5px 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 4px 0.5px rgba(0,0,0,0.3);
  -webkit-appearance: none;
          appearance: none;
  pointer-events: all;
}
input[type=range]::-webkit-slider-thumb:hover {
  background-color: #deddee;
}
input[type=range]::-webkit-slider-thumb:active {
  background-color: #504d9b;
}
/*** END: Price Range Slider ***/

.newHomeFilter {
    padding-top: 0;
    margin-top: -3rem;
}
.homedd .dropdown-toggle:after,
.advanceOpt .dropdown-toggle:after {
  content: none;
}
.homedd .dropdown-toggle .fal {
  font-size: 2rem;
  margin-left: 1.5rem;
  color: #f0c980;
  position: relative;
  top: 3px;
}
.homedd .dropdown-menu,
.advanceOpt .dropdown-menu {
  border: 0;
  border-radius: 0;
  padding: 1rem;
  min-width: 14rem;
  background: #1c3055;
}
.homedd .dropdown-menu .custom-control,
.advanceOpt .dropdown-menu .custom-control{
  margin: 6px 0;
}
.homedd .dropdown-menu .custom-control-label,
.advanceOpt .dropdown-menu .custom-control-label {
  color: var(--white);
}
.homedd .dropdown-menu .custom-control-label:before,
.advanceOpt .dropdown-menu .custom-control-label:before {
  border: 0;
}
.propertyFilter .advanceOpt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}
.advanceOpt .advFilter {
  width: 80%;
}
.advanceOpt .advFilter h3 {
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}
.advanceOpt .dropdown-toggle {
  padding: 1rem 1rem 1rem 3rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #1c3055;
  font-size: 15px;
  font-weight: 600;
}
.advanceOpt .sort {
  width: 20%;
  background: #f8f8f8;
}
.advanceOpt .sort .dropdown-toggle {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.advanceOpt .dropdown-menu {
  width: calc(100% + 25%);
}
.advanceOpt .sort .dropdown-menu {
    width: 100%;
}
.advanceOpt .dropdown-menu a{
  font-size: 1rem;
}
.propertyFilter .reset {
  background: #f0c980;
  color: #1c3055;
  width: 6rem;
  padding: 1.4375rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -1px;
  font-size: 2rem;
}
.propertyFilter .reset a {
  color: #1c3055;
}
.barContact span {
  color: #646464;
  display: block;
  margin-bottom: 1rem;
}
.barContact a {
  color: #646464;
  margin-right: 2rem;
}
.barContact a:hover{
  color: #f9a51d;
}
.barContact a i {
  color: #000;
  margin-right: 0.5rem;
}
.blueRow {
  background: #1e2e58;
  margin-bottom: 5rem;
  padding: 2rem 0;
}
.blueRow ul {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.blueRow ul a {
  color: var(--white);
  text-transform: uppercase;
}
.blueRow ul a:hover{
  color: #f9a51d;
}
.newsCarousel {
  background: var(--white);
  box-shadow: 9px 0 79px rgb(0 0 0 / 11%);
  padding: 3rem;
}
.newsBlog:before {
  content: '';
  background: #eecc79;
  width: 36%;
  height: 70%;
  position: absolute;
  top: 0;
  left: 0;
}
.newsCategoryList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
.newsCategoryList a {
  color: #828282;
  font-size: 1.375rem;
}
.locationCategory:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48%;
  background: #cbe9f4;
}
.locationCategory .artpgBox figure {
  height: 260px;
}
.mattamyHomes {
  background: url(../images/matty-homes.jpg) center/cover fixed no-repeat;
  padding: 6rem 0;
}
.mattamy {
  background: var(--white);
  padding: 3rem;
  text-align: center;
  box-shadow: 9px 0 79px rgb(0 0 0 / 11%);
  border-radius: 1.5rem;
}
.mattamy h2 {
  font-size: 3.125rem;
  font-weight: 300;
  text-transform: uppercase;
}
.mattamy p {
  font-weight: 300;
  margin: 1rem 0;
}
.locationCategory.edits:before {
  content: none;
}
.directoryList {
  display: flex;
  flex-flow: row wrap;
  gap: 1.5rem;
}
.directoryList li {
  flex: 0 0 calc(20% - 3rem);
}
.directoryList a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 15rem;
  background: #fff;
  box-shadow: 9px 0 79px rgb(0 0 0 / 9%);
}


.frame{
   -webkit-animation: zoomeffect 40s infinite;
   -moz-animation: zoomeffect 40s infinite;
   animation: zoomeffect 40s infinite;
}
@-webkit-keyframes zoomeffect{
		0%{
			background-position:center;
		  transform:scale(1,1);
		}
		50%{
			background-position:center;
		  transform:scale(1.5,1.5);
		}
		100%{
			background-position:center;
		  transform:scale(1,1);
		}
}
@keyframes zoomeffect{
		0%{
			background-position:center;
		  transform:scale(1,1);
		}
		50%{
			background-position:center;
		  transform:scale(1.5,1.5);
		}
		100%{
			background-position:center;
		  transform:scale(1,1);
		}
}

.banerLogo {
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banerLogo img {
  width: 10%;
}