.home-slider .carousel-item1 {
  background-size: cover;
  background-repeat: no-repeat;
  height: 70vh;
  background-position: center center;
  display: flex;
  align-items: center;
  position: relative;
}

.home-slider .carousel-item {
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  background-position: center center;
  display: flex;
  align-items: center;
}

.home-slider video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.home-slider .carousel-caption {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 100px 0 0;
}

.home-slider .carousel-caption::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#007db9e8', GradientType=1);
  opacity: 0.3;
  display: block;
  z-index: -1;

}

.home-slider .carousel-item.active .carousel-caption .home-main-caption,
.home-slider .carousel-item.active .carousel-caption h1,
.home-slider .carousel-item.active .carousel-caption h2,
.home-slider .carousel-item.active .carousel-caption p {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.home-slider .carousel-item.active .carousel-caption .btn-main {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.home-slider .carousel-item.active .carousel-caption .company-logo a {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.home-slider .carousel-item.active .carousel-caption .btn-main.btn-bdr {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.home-slider-pattern {
  position: absolute;
  bottom: 0;
  z-index: 9;
  width: 100%;
  pointer-events: none;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-1-5s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.animated.delay-1-8s {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.animated.delay-2-5s {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.animated.delay-2-8s {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.home-slider .carousel-caption {
  opacity: 1;
}

.home-slider .carousel-item.active .carousel-caption {
  opacity: 1;
}

.home-slider .carousel-caption h1 {
  /*color: #194174;*/
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  line-height: 52px;
  margin: 0 0 15px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.home-slider .home-main-caption {
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 700;
  letter-spacing: 5px;
  margin: 0;
}

.home-slider .carousel-caption p {
  font-size: 22px;
  line-height: 32px;
  margin: 0 0 30px;
  color: #fff;
  font-weight: 200;
}

.home-slider .carousel-caption h2 {
  font-size: 32px;
  line-height: 34px;
  font-weight: 200;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 0 30px;
  border: 1px solid #fff;
  padding: 10px;
}

.home-slider .carousel-caption h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px;
}

.home-slider .btn-main {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 26px;
  transition: 0.3s all ease-in-out;
}

.no-search-results-form.section-inner.thin,
.search-no-results .entry-header {
  width: 100%;
  padding: 0 15px;
}

.home-slider .btn-main:hover {
  color: #194174;
  border: 1px solid #194174;
  background: #fff !important;
}

.mob-banner {
  background-size: 0;
  width: 100%;
}

.home-slider-rev .wpb_raw_code.wpb_content_element.wpb_raw_html {
  margin: 0 !important;
}

.home-slider-rev .carousel {
  display: flex;
  align-items: center;
}

.home-slider-rev .carousel-control-next,
.home-slider-rev .carousel-control-prev {
  width: 30px;
  height: 50px;
  top: auto;
  bottom: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.home-slider-rev .carousel-control-prev:after {
  content: "";
  position: absolute;
  right: -20px;
  width: 0;
  height: 43px;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 20px solid rgba(0, 0, 0, 0.4);
}

.home-slider-rev .carousel-control-next:after {
  content: "";
  position: absolute;
  left: -20px;
  width: 0;
  height: 43px;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 20px solid rgba(0, 0, 0, 0.4);
}

.home-slider {
  position: relative;
}

.home-banner-pattern {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.home-banner-pattern img {
  width: 100%;
}

/*common css*/
.main-heading {
  text-align: center;
}

.main-heading h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 9px;
  position: relative;
  margin-bottom: 20px;
  color: #194072;
  font-weight: 800;
}

.main-heading h2:after {
  content: "";
  background: #194072;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 70px;
  height: 1px;
}

.heading-wt h2 {
  color: #fff;
}

.heading-wt h2:after {
  background: #fff;
}

/*Property section*/
.each-property-card {
  text-align: center;
  padding: 30px 18px;
  z-index: 1;
  position: relative;
  min-height: 290px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.each-property-card:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.each-property-card:hover:before {
  background-color: rgba(25, 65, 116, 0.8);
}

.each-property-card h2 {
  color: #194174;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  margin-top: 15px;
  font-weight: 800;
}

.each-property-card i {
  font-size: 45px;
  color: #194173;
}

.link-blue {
  color: #194174;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.link-blue:after {
  content: "\f101";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  line-height: 26px;
  opacity: 0;
  color: #fff;
  transition: 0.3s all ease-in-out;
}

.each-property-card:hover .link-blue:after {
  opacity: 1;
  padding-left: 6px;
}

.each-property-card:hover h2,
.each-property-card:hover i,
.each-property-card:hover p,
.each-property-card:hover .link-blue {
  color: #fff;
  opacity: 1;
}

/*about-section*/
.about-section {
  position: relative;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0 0;
}

.webp .about-section {
  background-image: url(/Sites/AA580D9E-B943-4B5D-9F51-82ED2E70B900/images/about-us-banner.webp);
}

.no-webp .about-section {
  background-image: url(/Sites/AA580D9E-B943-4B5D-9F51-82ED2E70B900/images/about-us-banner.jpg);
}

.about-section:before {
  content: "";
  position: absolute;
  background: rgba(25, 65, 116, 0.9);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.about-left-img {
  bottom: 0;
  position: absolute;
}

.about-content {
  padding: 30px 0 70px;
}

.about-content .main-heading {
  margin-bottom: 35px;
}

.about-content p {
  color: #fff;
}

/*carrier section*/
.carrier-section {
  padding: 70px 0;
}

.carrier-section .main-heading p {
  font-weight: 500;
}

.carrier-carousel {
  margin-top: 20px;
}

/*testimonial section*/
.testimonial-section {
  padding: 90px 0;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-section:before {
  content: "";
  position: absolute;
  background: rgba(22, 44, 83, 0.8);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.testimonial-slider .owl-dots .owl-dot {
  display: inline-block;
  background: transparent;
  border: 1px solid #fff;
  width: 30px;
  height: 6px;
  margin: 0 3px;
}

.testimonial-slider .owl-dots .owl-dot.active {
  background: #fff !important;
}

.webp .testimonial-section {
  background-image: url(/Sites/AA580D9E-B943-4B5D-9F51-82ED2E70B900/images/testimonial-bg.webp);
}

.no-webp .testimonial-section {
  background-image: url(/Sites/AA580D9E-B943-4B5D-9F51-82ED2E70B900/images/testimonial-bg.jpg);
}

.testimonial-slider {
  text-align: center;
  min-height: 420px;
}

.testimonial-area p {
  color: #fff;
}

.testimonial-owner h3 {
  font-size: 18px;
  color: #fff;
  line-height: 28px;
  margin-top: 10px;
}

.testimonial-content {
  margin-top: 30px;
}

.testimonial-profile {
  max-width: 70px;
  text-align: center;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

/*blog section*/
.blog-section {
  padding: 60px 0;
}

.blog-image {
  position: relative;
}

/* .blog-image:before {
    position: absolute;
    content: '';
    background: rgba(25, 65, 115, 0.45);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
} */

.date-info p {
  margin: 0;
  background: #194173;
  color: #fff;
  padding: 6px;
  text-transform: uppercase;
  width: 115px;
  text-align: center;
}

.blog-content {
  padding: 15px;
}

.each-blog-section {
  border: 1px solid #1941741a;
  border-bottom: 4px solid #194174;
  margin-top: 30px;
}

.author-detail {
  display: block;
  color: #353333;
  font-size: 14px;
  line-height: 24px;
}

.author-detail i {
  font-size: 11px;
  line-height: 22px;
  padding-right: 5px;
}

.blog-title {
  color: #194174;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.date-info {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.blog-read-more {
  position: relative;
  color: #194174;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.blog-read-more:after {
  content: "\f101";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  line-height: 29px;
  opacity: 0;
  color: #162c53;
  transition: 0.3s all ease-in-out;
}

.blog-read-more:hover {
  color: #162c53;
}

.blog-read-more:hover:after {
  opacity: 1;
  padding-left: 6px;
}

.cta-section {
  background: #ebeaeb;
  padding: 40px 0;
}

.cta-text {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.cta-text h3 {
  color: #194174;
  font-size: 24px;
  line-height: 34px;
  margin: 0;
  font-weight: 500;
}

.owl-dots {
  margin: 30px 0 0;
}

@media (max-width: 1400px) {
  .each-property-card {
    min-height: 310px;
  }
}

@media (max-width: 1024px) {
  .home-slider .carousel-item {
    height: 800px;
  }

  .home-slider .carousel-caption h1 {
    font-size: 26px;
    line-height: 38px;
  }

  .home-slider .carousel-caption h1 span {
    font-size: 30px;
  }

  .blog-content {
    min-height: 255px;
  }

  .each-property-card i {
    font-size: 30px;
  }

  .each-property-card h2 {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 990px) {
  .blog-content {
    min-height: 230px;
  }

  .cta-text {
    flex-direction: column;
  }

  .cta-text h3 {
    margin: 0 0 10px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 40px 0;
  }

  .testimonial-section {
    padding: 50px 0;
  }

  .carrier-section {
    padding: 40px 0;
  }

  .about-section {
    padding: 40px 0;
  }

  .home-slider .carousel-item {
    background-size: 0;
    height: auto;
  }

  .mob-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mob-banner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(25 65 116 / 50%);
  }

  .home-slider .carousel-caption h2 {
    font-size: 20px;
    line-height: 30px;
    padding: 5px 15px;
  }

  .logo-area img {
    width: 150px;
  }

  .about-left-img {
    display: none;
  }

  .blog-content {
    min-height: auto;
  }

  .cta-text h3 {
    text-align: center;
    margin-bottom: 15px;
  }

  .home-slider .carousel-caption p {
    font-size: 18px;
    line-height: 28px;
  }

  .about-content {
    text-align: center;
    padding: 0;
  }

  .main-heading h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .each-property-card h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .home-slider .carousel-item1 {
    height: 600px;
  }
}