@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: .2px;
    font-family: 'Noto Serif', serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    margin: 0;
    color: #000;
    margin-bottom: 8px;
    word-wrap: break-word;
    font-family: 'Noto Serif', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

h1 {
    font-size: 40px;
    line-height: 50px;
}

h2 {
    color: #222222;
    font-size: 44px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
}

h3 {
    font-size: 34px;
    line-height: 44px;
}

h4 {
    font-size: 24px;
    line-height: 34px;
}

h5 {
   
    font-size: 16px;
    line-height: 30px;
}

h6 {
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
}

p {
    color: #666666;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

a {
    cursor: pointer;
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    text-decoration:none;
}

span {
    display: inline-block;
}

img,img:hover {
    width: 100%;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

ul {
    margin: 0;
    padding: 0;
}

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

ul li a {
    margin: 0;
    padding: 0;
    font-size: 15px;
}

a:hover {
    text-decoration: none;
}

div {
    margin: 0;
    padding: 0;
}

figure {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

figure:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

section {
    z-index: 1;
    padding: 50px 0;
    position: relative;
}

input,textarea{
    background: rgba(0,0,0,.5);
    padding: 5px 7px;
    width: 100%;
    border:none;
}
input:focus,textarea:focus{
    outline: none;
}


.di{
    display: inline-block;
} 

/*-- font-weight --*/

.f-1 {
    font-weight: 400;
}

.f-2 {
    font-weight: 700;
}


.fa-phone {
    transform: rotate(40deg);
}


/*-- Button, Anchor --*/

.link {
    color: #fff;
    font-size: 12px;
    padding: 3px 15px;
    border-radius: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #1f252c;
    background: rgba(0, 0, 0, 0.8);
}

.link:hover {
    background: #1f252c;
    color: #5bb500;
}

.hover,a,a:hover,.dlf_bg .box,.dlf_bg ul li:hover .box {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
/*-- Gototop --*/
a#gotop {
    border-radius: 5px;
    color: #000;
    z-index: 9;
    position: fixed;
    bottom: 15px;
    right: 15px;
    opacity: .5;
    font-size: 25px;
    line-height: 25px;

}
a#gotop:hover {
    opacity: 8;
}

/*-----------------------------------------
------------- ( Header )
-----------------------------------------*/
header .menu {
    background: #fff;
    padding: 15px 0;
}

header .menu .navbar {
    padding: 0;
}

header .menu .navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
}

header .menu .navbar-brand img{
    width: auto;
    height: 85px;
    /*border-radius: 15px;*/
}


header .menu .navbar-collapse {}

header .menu ul {}

header .menu .nav-link {
    padding: 0 15px !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 38px;
}

header .menu .nav-link:hover, header .menu .drop:hover .drop-ntn, header .menu .drop .drop-text a:hover {
    color: #36b9ca !important;
}

header .menu .drop .drop-text {
    position: absolute;
    background: #fff;
    width: 220px;
    display: none;
}

header .menu .drop:hover .drop-text{
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-name: dropbox;
    animation-name: dropbox;
    display: block;
}

@-webkit-keyframes dropbox {
    from {
        transform: translateY(40px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes dropbox {
    from {
        transform: translateY(40px);
    }
    to {
        transform: translateY(0);
    }
}

header .menu .drop .drop-text a{
    color: #999;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0,0,0,.2);
}

/*-----------------------------------------
------------- ( Header Fix )
-----------------------------------------*/

#myHeader[style="position: fixed;"] {
    top: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-name: hdrfix;
    animation-name: hdrfix;
    box-shadow: 0 0 5px #f1f1f1;
}

@-webkit-keyframes hdrfix {
    from {
        transform: translateY(-40px);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes hdrfix {
    from {
        transform: translateY(-40px);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

header .req-btn {
    padding-left: 20px;
}
header .req-btn a {
    background: #074e88;
    border-radius: 10px;
    color:#fff;
}

/*-----------------------------------------
------------- ( Slider )
-----------------------------------------*/

.slider {
    /*padding: 0 15px;*/
}


/*-----------------------------------------
------------- ( property )
-----------------------------------------*/
.property .rev{
    position: relative;
    padding-top: 50px;
}
.property .rev:after{
    content: '';
    position: absolute;
    background: url(../images/icon.png) center #fff;
    left: 50%;
    height: 110px;
    width: 100px;
    background-size: 60px;
    background-repeat: no-repeat;
    transform: translate(-60px,-30px);
    top: 0;
        border: 1px solid #d0b073;
}
.property .box{
    padding: 0 30px;
}

/*-----------------------------------------
------------- (  )
-----------------------------------------*/
.favours{}
.pet ul,.pet ul .box{
    display: flex;
    flex-wrap: wrap;
}
.pet ul li{
    flex: 0 0 33.3333%;
    padding: 25px 15px 0;
}
.pet ul .box{
    padding-bottom: 40px;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}
.pet ul .box .img {
    width: 80px;
    height: 80px;
    background: #fff;
    box-shadow: 0 0 15px #d2d0d0;
    border-radius: 50%;
    padding: 20px;
}
.pet ul .box .text {
    padding-left: 10px;
}
.pet ul .box .text h4{
    margin-bottom: 0;
    color: #222222;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-size: 20px;
}
.pet ul .box .text p{
    font-size: 12px;
    margin-bottom: 0;
}
.bdr-n{
    border: none !important;
}
/*-----------------------------------------
------------- (  )
-----------------------------------------*/
.deals .row.mp{
    box-shadow: 0px 0px 44.37px 6.63px rgb(0 0 0 / 8%);
    background: #fff;
}
.deals .box{
    padding: 50px;
}
/*.deals .box ol{*/
/*    background: #f3f3f39c;*/
/*    display: flex;*/
/*    margin-top: 20px;*/
/*    padding: 0;*/
/*    text-align: center;*/
/*    list-style: none;*/
/*}*/
/*.deals .box ol li{*/
/*    flex: 0 0 100%;*/
/*    padding: 30px ;*/
/*}*/
.deals .box ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.deals .box ul li{
    margin: 12px 0;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    width:100%;
   }
   .deals ul li::before{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #d0b073;
    background-color:#d0b073;
    position: absolute;
    left: 0;
    top: 7px;
   }
   
   
.property ul li{
    margin: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    width:100%;
   }
   .property ul li::before{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #d0b073;
    background-color:#d0b073;
    position: absolute;
    left: 0;
    top: 7px;
   }

.deals .box h6{
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.deals .box p{
    font-size: 16px;
    margin-bottom: 0;
}
.deals .box ol li:nth-child(1){
    border-right: 1px solid #e2e1e1;
}

/*-----------------------------------------
------------- ( dlf_bg )
-----------------------------------------*/
.dlf_bg .container{
    background: url(../images/banner-4.jpeg) center fixed;
    background-size: cover;
}

.dlf_bg .container .row{
    align-items: center;
    background: rgba(0,0,0,.75);
    padding: 20px !important;
}

.dlf_bg .stext h2,.dlf_bg .stext h5,.dlf_bg .stext p{
    color: #fff;
}
.dlf_bg ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.dlf_bg ul li{
    flex: 0 0 50%;
    padding: 15px;
}
.dlf_bg ul li .box{
    border: 1px solid #ffffff25;
    display: flex;
    padding: 15px;
}
.dlf_bg ul li:hover .box{
    border: 1px solid #fff;
}
.dlf_bg .box .icon{
    max-width: 50px;
    margin-right: 15px;
}
.dlf_bg .box .icon img{
    filter: brightness(0) invert(1);
}
.dlf_bg .box h4,.dlf_bg .box p{
    color: #fff;
}
.dlf_bg .box h4{
    letter-spacing: .5px;
    padding-bottom: 15px;
    position: relative;
    font-size: 20px;
}
.dlf_bg .box h4:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 30px;
    background: #fff;
    left: 0;
    bottom: 4px;
}
.dlf_bg .box p{
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .5px;
}
/*-----------------------------------------
------------- ( dlf_fact )
-----------------------------------------*/
.dlf_fact .container{
    background: url(../images/banner-goa.jpg) center fixed;
    background-size: cover;
}

.dlf_fact .container .row{
    align-items: center;
    background: rgba(0,0,0,.75);
    padding: 75px 15px !important;
}

.dlf_fact img{
    width: auto;
}

.dlf_fact *{
    color: #fff;
}
.dlf_fact ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.dlf_fact ul li{
    flex: 0 0 25%;
    border-right: 1px solid #FFFFFF35;
}


/*-----------------------------------------
------------- (  )
-----------------------------------------*/
.flor ul{
    width: 100%;
    display: inline-block;
}
.flor ul li{
    width: 100%;
    display: flex;
    padding: 5px 15px 0;
}
.flor ul li:nth-child(odd){
    background: #f1f1f1;
}
.flor ul li div{
    flex: 0 0 33.3333%;
}
.flor ul li .line{
    position: relative;
}
.flor ul li .line:after {
    content: '';
    border-bottom: 3px dotted #36b9ca;
    position: absolute;
    left: 0;
    right: 0;
    top: 14px;
}
.flor .ar{
    text-align: right;
}

/*-----------------------------------------
------------- ( Map )
-----------------------------------------*/

.gallery ul, .blog ul, .logo ul,.loca ul, .testi ul{
    padding-top: 15px;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
}
.logo ul li{
    padding:7px;
    flex:0 0 20%;
    border: 1px solid #f5f5f5;
}
.loca ul li{
    padding:7px;
    flex: 0 0 25%;
}
.gallery ul li, .blog ul li, .testi ul li{
    padding: 7px;
    flex: 0 0 33.3333%;
}


/*-----------------------------------------
------------- ( Footer )
-----------------------------------------*/

footer {
    padding: 50px 0;
    background: #074e88;
}

.footer-logo {
    padding: 10px 15px;
    background: #fff;
    max-width: 180px;
    margin: 0 auto;
    border-radius: 5px;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    justify-content: center;
}

footer ul li {
    margin: 0 15px;
}

footer ul li a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-family: sans-serif;
}

footer ul li a:hover{
    color:#36b9ca;
}

.f-main {
    border-top: 1px solid #343434;
    padding-top: 50px;
}
.f-main h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.f-main h6 {
    color: #fff;
}

.f-main h6 {
    color: #fff;
    font-weight: 200;
    letter-spacing: 1px;
}

.f-main p, .f-main a {
    color: #fff;
    opacity: .7;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px !important;
}
footer form {
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
}
footer form .box {
    flex: 0 0 50%;
    padding: 0 7px;
}
footer form 
 input[type="text"],footer form textarea {
    color: #fff;
    padding: 15px;
    font-size: 12px;
    font-weight: 500;
    background: #fff;
    margin-bottom: 14px;
    letter-spacing: .5px;
    font-family: sans-serif;
    border-radius: 5px;
}
footer form textarea {
    height: 160px;
}
.f-main button.link {
    background: #36b9ca;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    display: table;
    margin: 0 auto;
}
.f-main button.link:hover {
    background: #1d1c1c;
    color: #fff;
}

/*-----------------------------------------
------------- ( Copywrite )
-----------------------------------------*/
.copy{
    background: #1d1c1c;
}

.copy p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 700;
    padding: 13px 0;
    color: #aaa;
}

.copy .social {
    display: flex;
    justify-content: flex-end;
}

.copy .social ul li a {
    color: #fff;
    font-size: 12px;
}
.copy .social ul li a:hover {
    transform: scale(1.25);
}
.copy .social ul li {
    margin: 0 10px;
}

section.dlf_abt.text-center,.protect {
    border-top: 1px solid #f1f1f1;
}

.protect {
    padding: 30px 0;
}
.protect img{
    max-width: 100px;
}


@media (max-width: 1025px){
    header .req-btn {
        padding-left: 30px;
    }
    header .menu .nav-link {
        padding: 5px 16px !important;
        font-size: 14px;
        line-height: 30px;
    }
    h1,h2{
        font-size: 26px;
    }
    h4,h3{
        font-size: 20px;
        line-height: 30px;
    }  
    p,.pet ul .box .text h4,h5{
        font-size: 14px;
        line-height: 26px;
    }
    .dlf_fact ul li{
        flex: 0 0 50%;
    }

}

@media (max-width: 993px){}
@media (max-width: 992px){
    button.navbar-toggler {
        background: #f1f1f1;
        padding: 7px 10px;
    }
    header .menu .nav-link{
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
    }
    .dlf_bg ul li {
        flex: 0 0 100%;
    }
    header .req-btn{
        margin: 15px 0;
        padding: 0;
    }
}
@media (max-width: 769px){}
@media (max-width: 768px){
    .property .rev{
        flex-direction: column-reverse;
    }
    .property .rev:after{
        display: none;
    }
    .property .text-center.mb-5 {
        margin-bottom: 15px !important;
    }
    .property .box{
        padding: 30px 0 0;
    }
    section#Amenities,section.flor,section#gallery{
        border-top: 1px solid #f1f1f1 !important;
    }
    .pet ul li{
        flex: 0 0 50%;
    }
    .pet ul .box{
        padding: 10px !important;
        border: 1px solid #f1f1f1 !important;
    }
    .dlf_bg ul li{
        padding: 15px 0;
    }
    .gallery ul li {
        flex: 0 0 50%;
    }
    .dlf_fact ul{
        border-left: 1px solid #FFFFFF35;
    }
    .protect{
        text-align: center;
    }
    .protect img{
        margin-top: 30px;
    }
    .portfolio-item{
        height: 400px !important;
    }
}
@media (max-width: 575px){
    .pet ul li,.dlf_fact ul li,footer form .box{
        flex: 0 0 100%;
    }
    .dlf_fact ul li{
        padding: 10px 0;
    }
    .dlf_fact ul,.dlf_fact ul li{
        border: none !important;
    }
    .pet ul .box{
        border: none !important;
    }
    .pet ul li {
        padding: 15px 15px 0;
    }
    .favours .mb-5{
        margin-bottom: 0 !important;
    }
    section.deals {
        padding-bottom: 0;
    }
    section.dlf_fact{
        padding-top: 0 !important;
    }
    iframe {
        height: 200px !important;
    }
    section#gallery {
        padding-bottom: 0;
    }
    footer ul li {
        margin: 10px 15px;
    }
    .copy .row {
        flex-direction: column-reverse;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .copy .social{
        justify-content: center;
    }
    .copy p{
        text-align: center;
    }
    .portfolio-item{
        height: 300px !important;
    }
    .col-reverse{
    display: flex;
    flex-direction: column-reverse;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
}
.carousel-control-prev, .carousel-control-next {
    width: 2rem!important;
    height: 2rem!important;
}
.carousel-caption {
    min-width:350px!important;
}

}
.box a{
    background: #36b9ca;
    border-radius: 10px;
    display:inline-block;
    text-align: center;
    color: #fff;
    padding:  8px 12px;
}
.favours .box ul li{
        width: 100%;
    
    list-style-type: square;
    list-style-position: inside;
    padding-bottom: 5px;
}
.whatapp{
    z-index: 9;
}
.whatapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
}
.whatapp img {
    animation: .8s infinite alternate wiggles;
    border: none;
    width: 70%;
}
.scolor{
    background:#36b9ca;
}
.wcolor{
    color:#fff;
}
.bcolor{
    color:#074e88;
}
.fcolor{
    background:#074e88;
}
.img-container {
  position: relative;
  display: inline-block; /* or block, depending on your layout */
}

.img-container img {
  display: block;
  width: 100%;   /* or fixed width */
  height: auto;  /* maintain aspect ratio */
  border-radius:20px;
}

.centered-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Optional styling */
 
}

.blog .box{
        background: #f6f6f6;
    padding: 15px;
}
.logo img{
        max-width: 180px;
    filter: grayscale(1);
    opacity: 0.3;
}
.loca a{
        background: #36b9ca;
    
    padding: 7px;
    color: #fff;
    font-weight: 700;
    width:100%;
}
.blog .area{
        border-bottom: 2px solid #36b9ca6b;
    border-top: 2px solid #36b9ca6b;
    padding:5px 0;
}
.testi .star{
    display:flex;
    padding-bottom:3px;
}
.testi .star img{
    max-width:30px;
    padding:0 3px;
}

.testi ul li{
    background:#f6f6f6;
    padding:10px;
     text-align:left;
     border:5px solid #fff;
         border-radius: 20px;
}
/* Common styles for both controls */
.carousel-control-prev,
.carousel-control-next {
   width: 3rem;
  height: 3rem;
  background-color:#074e88; /* your fill color */
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;           /* ensure fully visible */
  transition: background 0.3s;
}

/* Hover state */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color:#36b9ca;
}


/* Adjust positioning so the circles sit just outside the carousel edges */
.carousel-control-prev {
  left: 1rem;
    
}
.carousel-control-next {
  right: 1rem;
  
}
.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  /* Remove Bootstrap’s default invert/grayscale */
  filter: brightness(0) invert(1) !important;
}
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 .video-container {
    position: relative;
    width: 100%;
    /* 16:9 aspect ratio: 9/16 * 100 = 56.25% */
    padding-bottom: 56.25%;
    overflow: hidden;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;    /* fill width */
    height: 100%;   /* fill height */
    border: 0;
  }
  footer ol{
      padding-left: 0!important;
  }
 
footer ol li{
    list-style-position: inside;
    color: #fff;
    list-style-type: none;
   }
   .carousel-caption {
    min-width:850px;
}

@media (max-width: 767.98px) {
  .mobile-text-center {
    text-align: center;
  }
  .box a {
      
    line-height: 18px;
}
.gallery ul li, .blog ul li, .testi ul li {
    
    flex: 100%;
}
.logo ul li {
   
    flex: 0 0 33.33%;
}
.loca ul li {
    
    flex: 0 0 50%;
}
}