@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
   --mainColor: #204199;
   --secondColor: #cd202a;
}

body{
    background-color: #F3FCFC;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.btn-primary{
    background-color:var(--mainColor);
    border-color: var(--mainColor);
    border-radius: 10px;
    font-size: 18px;
    padding: 9px 25px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}
.btn-primary:active,.btn-primary:focus,.btn-primary:hover {
    background-color: var(--secondColor)!important;
    border-color: var(--secondColor)!important
}

.form-control {
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid #fff;
    background-color: transparent !important;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    color: #fff !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #fff !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #fff !important;
}
:-moz-placeholder { /* Firefox 18- */
  color: #fff !important;
}

img{max-width: 100%}

/*===Home banner css===*/

.home-banner {
    position: relative;
    height: 100vh;
}

.home-banner .carousel {
    height: 100%;
}

.home-banner .carousel-inner {
    height: 100%;
}

.home-banner .carousel-item {
    height: 100%;
}

.home-banner .carousel-item img,
.home-banner .carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner .carousel-caption {
    left: 7%;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    top: 50%;
    transform: translate(0, -50%);
    padding: 30px;
    bottom: auto;
    background-image: linear-gradient(180deg, #03454442 0%, #032424 100%);
    border-top: 4px solid var(--mainColor);
    backdrop-filter: blur(3px);
}

.home-banner .carousel-caption .container{

/* text-align: center; */

padding: 0;
}


.home-banner .carousel-caption h5 {
    margin: 0;
    color: #fff;
    font-size: 50px;
    margin-bottom: 0;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}
.home-banner .carousel-caption h5 i {
    /* font-weight: normal; */
}
.home-banner .carousel-caption p {
    color: #fff;
    margin: 0 0 5px;
    /* font-size: 20px; */
}
.home-banner .carousel-caption p.sub-txt {
    font-size: 27px;
     color: #010101;
     font-weight: 600;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.home-banner .carousel-caption p span {
    display: inline-flex;
    color: #fff;
    /* font-weight: 500; */
    /* font-family: "Source Sans 3", sans-serif; */
    font-optical-sizing: auto;
    font-style: normal;
    border-right: 2px solid #fff;
    padding: 0 25px;
    font-size: 30px;
    /* text-transform: uppercase; */
    line-height: 1;
}
.home-banner .carousel-caption p span:last-child {
    border-right: 0;
}
.home-banner .carousel-caption p span:first-child {
    padding-left: 0;
}
.down-arrow {
    position: absolute;
    bottom: 5%;
    left: 2%;
    margin: 0 auto;
    text-align: center;
    z-index: 99;
}
.down-arrow {
    -webkit-animation: ca3_fade_move_down 2s ease-in-out infinite;
    -moz-animation: ca3_fade_move_down 2s ease-in-out infinite;
    animation: ca3_fade_move_down 2s ease-in-out infinite;
}
.down-arrow a {
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 23px;
    width: 50px;
    height: 50px;
    background: var(--mainColor);
    /* box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .48); */
    border: 1px solid var(--mainColor);
}
.home-banner .carousel-caption p.price {padding: 10px 25px;font-size: 16px;display: inline-block;position: relative;color: #fff;border-radius: 10px;margin: 10px 0 20px 0;background: var(--secondColor);text-shadow: none;border: 1px solid #fff;}

.home-banner .carousel-caption .btn {
    margin-top: 16px;
}

.home-banner .carousel-caption p > i {
    width: 30px;
    height: 30px;
    background: #0000007a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
}


@keyframes ca3_fade_move_down{

  0% {
    transform: translate(0, -20px);
    opacity: 0;
}
50% {
    opacity: 1;
}
100% {
    transform: translate(0, 20px);
    opacity: 0;
}
}




/*===End Home banner css===*/

.porject-spec{
    background-image: linear-gradient(180deg, #B6BCBC 0%, #F3FCFC 100%);
    padding: 30px 0;
}
.porject-spec ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.elementor-icon-list-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 100px;
    display: flex;
    margin-right: 15px;
}

.elementor-icon-list-icon svg {
    width: 50px;
    height: 50px;
    margin: 0px;
    position: relative;
    left: 8px;
    top: 4px;
    transform: scale(0.8);
}

.porject-spec ul li {
    flex: 0 0 20%;
    width: 20%;
    display: flex;
    align-items: center;
}

.elementor-icon-list-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5em;
}

.elementor-icon-list-text span {
    text-transform: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--mainColor);
}

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

.sec-heading {
    font-size: 40px;
    font-weight: 700;
    position: relative;
    margin-bottom: 45px;
    color: var(--mainColor);
}

.sec-heading:before {
    content: '';
    width: 50px;
    background: var(--mainColor);
    height: 3px;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.heading-center {
    text-align: center;
}

.heading-center:before {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.amenities-box img {
    width: 60px !important;
    height: 60px;
    margin: 0 auto;
}

.amenities-box {
    text-align: center;
}

.amenities-box p {
    color: #231F20;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 5px;
}

.owl-nav {
    margin: 40px auto 0;
    text-align: center;
    width: 130px;
}

.round-arrow.owl-carousel .owl-nav button.owl-next,.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 36px;
    height: 36px;
    display: inline-block !important;
    margin: 0 5px;
    border: 1px solid var(--mainColor) !important;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {
    left: 5px;
    border: 0 solid #010101;
    border-radius: 100%
}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    right: 5px;
    border-radius: 100%
}

.round-arrow.owl-carousel .owl-nav button.owl-next i,.round-arrow.owl-carousel .owl-nav button.owl-prev i {
    font-size: 20px;
    padding: 0!important;
    color: var(--mainColor);
    position: relative;
    top: 2px;
    line-height: 1;
}

.round-arrow.owl-carousel .owl-nav button.disabled {
    display: none!important
}

ul.highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

ul.highlights li {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 27px;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
}

ul.highlights li:before {
    content: '';
    width: 31px;
    height: 31px;
    background-image: url(../images/hightlight.png);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: -4px;
}

.price-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.price-box .icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 100%;
    padding: 10px;
    margin-right: 15px;
}

.price-box .content {
    width: calc(100% - 75px);
}

.price-box .content h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--mainColor);
    margin-bottom: 0;
}

.price-box .content p {
    font-weight: 500;
    margin-bottom: 0;
}

.floor-plan-sec {
    background-image: url(../images/our-achievement-bg.jpg);
    background-attachment: fixed;
    background-position: 100% 100%;
    position: relative;
    background-size: cover;
  }

  .floor-plan-sec:before {
    content: '';
    background: rgb(255 255 255 / 90%);
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: left;
    position: absolute;
}

.floor-plan-sec .container {
    position: relative;
    z-index: 9;
}
.floor-box {
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.3);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 35px;
    text-align: center;
    height: 370px;
    margin-bottom: 30px;
}

.floor-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-img {
    height: 440px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bottom-contact {
    padding: 30px;
    background-image: linear-gradient(180deg, #03454442 0%, #032424 100%);
    border-top: 4px solid var(--mainColor);
}

.bottom-contact h3 {
    color: #fff;
}

.bottom-contact p {
    color: #fff;
}

.site-footer{
    padding: 0 0 20px;
    /* background: #fff; */
}



.copyright a, p.copyright {
    color: var(--mainColor);
    text-decoration: none;
}

.copyright {
    border-top: 1px solid #f3f3f3fc;
    padding-top: 15px;
    margin-bottom: 0;
}

.floting-btn {
    position: fixed;
    text-align: center;
    cursor: pointer;
    top: 46%;
    transform: rotate(270deg);
    right: -71px;
    color: #fff;
    z-index: 99;
}
.floting-btn .btn{

border-radius: 10px 10px 0 0;
}


.enqModal .modal-content {
    background-color: var(--mainColor);
    border: 0;
    border-radius: 0;
}

.enqModal .modal-body {
    padding: 40px;
}

.enqModal .modal-content:before {
    content: '';
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    /* border: 1px solid #ffffff; */
    position: absolute;
    opacity: 0.5;
    z-index: 0;
    border-radius: 10px;
}

.enqModal a.btnClose {
    color: #fff;
    position: absolute;
    background: #010101;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
    top: 10px;
    border-radius: 50px;
    font-size: 13px;
    line-height: 1;
}

.enqModal .section-tagline {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    /* font-style: italic; */
}

.enqModal h3 {
    font-size: 15px;
    color: #000;
    margin-bottom: 15px;
}

.enqModal .modal-dialog {
    max-width: 480px;
}
.enqModal .btn {
    background-color: var(--secondColor);
    width: 100%;
}

.whatsapp-btn {
    width: 45px;
    height: 45px;
    text-align: center;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff!important;
    font-size: 30px;
    border-radius: 100%;
    z-index: 99;
    line-height: 1
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.desk-none{
    display: none;
}

.owl-dots {
    display: none;
}

.mobile-inqury{
    display: none;
}