/* SERVICES-PAGE----------------------------------------STARTS---------------------------------HERE */

/* COVER-BANNER--------------STARTS------------HERE */

.banner-f-cover .bannerr{
    background-image: url(../images/bg-page-title.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    width: 100%;
}

.banner-f-cover .bannerr .head-box{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.banner-f-cover .bannerr .head-box .txt{
    margin-top: 60px;
}

.banner-f-cover .bannerr .head-box .txt span{
    margin-top: 20px;
}


.banner-f-cover .bannerr .head-box h3{
    color: white;
    font-size: 35px;
    font-weight: 700;
}

.banner-f-cover .bannerr .head-box span a{
    text-decoration: none;
    color: white;
    transition: 0.4s ease;
    font-size: 16px;
    font-weight: 600;
}

.banner-f-cover .bannerr .head-box span a:hover{
    color: #deb018;
}

.banner-f-cover .bannerr .head-box span h6{
    margin: 0;
    color: #deb018;
    font-size: 16px;
    font-weight: 600;
}

.banner-f-cover .bannerr .head-box span small{
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.banner-f-cover .bannerr .head-box span small , h6{
    padding-left: 6px;
}   

/* COVER-BANNER--------------ENDS------------HERE */


/* services-----------------STARTS--------------HERE */

.services-custom{
    background-color: white;
    padding-bottom: 100px;
}

.services-custom .head h2{
    color: black;
    font-weight: 700;
}

.services-custom .cards .cardd .card-heading h3{
    color: black;
    font-weight: 600;
}

/* services-----------------ENDS--------------HERE */


/* PLAN---------STARTS_---------------HERE */

.plan .head{
    text-align: center;
}

.plan .head .heading{
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan .head h6{
    color: #deb018;
    letter-spacing: 4px;
    font-weight: 400;
}

.plan .head h2{
    color: black;
    width: 50%;
    font-weight: 700;
}

.plan .head h2 span i{
    color: #deb018;
    font-family: 'playfair display',sans-serif;
}

.plan .line-div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.plan .line-div .line{
    height: 4px;
    width: 60px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: #deb018;
}

.plan .decide-box {
    margin-top: 20px;
}

.plan .decide-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    margin-top: 30px;
}

.plan .decide-box ul li {
    list-style: none;
}

.plan .decide-box ul li a{
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan .decide-box .click-div{
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 2px solid #deb018;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan .decide-box .click{
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #deb018;
    opacity: 0;
    transition: 0.4s ease;
}

.plan .decide-box .click.active {
    opacity: 1;
}

.plan .decide-box ul li a:hover .click-div .click{
    opacity: 1;
}

.plan .decide-box .month h5{
    margin: 0;
    padding-left: 10px;
}

.plan .decide-box .year{
    padding-left: 15px;
}

.plan .decide-box .year h5{
    margin: 0;
    padding-left: 10px;
}

.plan .decide-box .saving-box{
    padding-left: 10px;
}

.plan .decide-box .saving-box .save{
    height: 30px;
    width: 90px;
    background-color: #DCDCDC;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan .decide-box .saving-box .save h6{
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.plan .cards {
    padding: 25px 0 50px 0;
}

.plan .cards .cardd{
    box-shadow:  0 0 5px rgb(166, 165, 165);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.plan .cards .cardd h4{
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
}

.plan .cards .cardd .price{
    background-color: #B5B5B5;
    padding: 10px 0;
    margin-top: 25px;
}

.plan .cards .cardd .price h3{
    font-size: 34px;
    font-weight: 600;
    margin: 0;
    color: white;
}

.plan .cards .cardd .price span{
    color: white;
    padding-left: 5px;
}

.plan .cards .cardd .para{
    margin-top: 30px;
}

.plan .cards .cardd .para p{
    padding: 0 60px;
    color: rgb(134, 134, 134);
    font-size: 15px;
    line-height: 28px;
}

.plan .cards .cardd .get-start-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.plan .cards .cardd .get-start-btn .bttn{
    height: 45px;
    width: 80%;
    background: linear-gradient(to left, rgb(0, 0, 0), rgb(0, 0, 0)); 
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 2px 5px gray;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.4s ease;
}

.plan .cards .cardd .get-start-btn .bttn:hover {
    background: linear-gradient(to left, #9D7146, #D2A76B); 
}

.cardd.animate {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 1200px){
    .plan .cards .cardd .para p{
        padding: 0 10px;
    }
}
@media only screen and (max-width: 768px){
    .plan .cards .cardd .para p{
        padding: 0 10px;
        font-size: 13px;
        line-height: 22px;
    }
    .plan .head h2{
        width: 70%;
    }
    .plan .decide-box .year h5{
        font-size: 18px;
    }
    .plan .decide-box .month h5{
        font-size: 18px;
    }
    .plan .decide-box .saving-box .save h6 {
        font-size: 12px;
    }
}
@media only screen and (max-width: 426px){
    .plan .head h2{
        width: 100%;
    }
    .plan .cards .cardd {
        margin-top: 40px;
    }
    .plan .cards {
        padding: 0 0 50px 0;
    }
}

/* PLAN----------ENDS---------------HERE */


/* NEWS-LETTER--- STARTS-------------HERE */

.cstm-news-letter {
    margin-top: 70px;
}

/* NEWS-LETTER--- ENDS-------------HERE */

/* SERVICES-PAGE----------------------------------------ENDS---------------------------------HERE */


/* ABOUT-PAGE-------------------------------------------STARTS-------------------------------HERE */

/* ABOUT---------------STARTS------------HERE */

.cstm-about {
    padding-top: 100px;
}

.cstm-about .card-2 .img-2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.about .card-2 .img-2 img {
    height: 100%;
}

@media only screen and (max-width: 1200px){
    .cstm-about .card-1 {
        padding-top: 0;
    }
}
@media only screen and (max-width: 768px){
    .about .card-2 .card-2-img img {
        height: 500px;
    }
}
@media only screen and (max-width: 426px){
    .about .card-1 .para {
        text-align: center;
    }
    .about .card-1 .para p{
        width: 100%;
    }
    .cstm-about .card-2{
        margin-top: 70px;
    }
    .about .card-1 .para p a{
        display: flex;
        justify-content: center;
    }
    .cstm-about{
        padding-bottom: 40px;
    }
    .cstm-about .card-2 .img-2{
        top: 100px;
    }
    .cstm-about .card-2 .img-2 img{
        height: 80%;
    }
}

/* ABOUT---------------ENDS------------HERE */


/* <!-- ABT-EXPERINCE---------STARTS----------HERE --> */

.abt-exp {
    padding: 40px 0 10px 0;
}

.abt-exp .line{
    height: 4px;
    width: 100%;
    background-color: #E1E1E1;
    position: absolute;
    top: 37px;
    z-index: -1;
}

.abt-exp .cards {
    position: relative;
}

.abt-exp .cards .cardd {
    text-align: center;
    padding: 0 10px;
}

.abt-exp .cards .cardd h6{
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 15px;
}

.abt-exp .cards .cardd .circle-div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.abt-exp .cards .cardd .circle-div .circle{
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 2px solid rgb(207, 206, 206);
    background-color: #E1E1E1;
    transition: 0.5s ease;
}

.abt-exp .cards .cardd:hover .circle-div .circle{
    background-color: #CCA167;
    border: 2px solid #eeb975;
    box-shadow: 0 0 5px rgb(182, 181, 181);
}

.abt-exp .cards .cardd .title {
    margin-top: 25px;
}

.abt-exp .cards .cardd .title h5{
    color: #999999;
    font-weight: 700;
    font-size: 18px;
    transition: 0.5s ease;
}

.abt-exp .cards .cardd:hover .title h5{
    color: black;
    text-decoration: underline;
}

.abt-exp .cards .cardd .para {
    margin-top: 15px;
}

.abt-exp .cards .cardd .para p{
    color: #ABABAB;
    font-size: 14px;
    line-height: 28px;
    transition: 0.5s ease;
}

.abt-exp .cards .cardd:hover .para p{
    color: black;
}

@media only screen and (max-width: 1200px){
    .abt-exp .cards .cardd{
        padding: 0 0;
    }
}
@media only screen and (max-width: 992px){
    .abt-exp {
        padding: 0 0 10px 0;
    }
    .abt-exp .line{
        display: none;
    }
    .abt-exp .cards .cardd {
        padding: 0 20px;
        margin-top: 60px;
    }
}
@media only screen and (max-width: 426px){
    .abt-exp .cards .cardd {
        margin-top: 40px;
    }
}

/* <!-- ABT-EXPERINCE---------ENDS----------HERE --> */


/* FUNFACT-------------------STARTS---------HERE */

@media only screen and (max-width: 376px){
    .cstm-fun-fact {
        padding: 50px 0 0 0;
    }
    .cstm-fun-fact .upper-cards .head-card p{
        font-size: 12px;
    }
    .cstm-fun-fact .upper-cards .heading h3{
        font-size: 23px;
    }
}

/* FUNFACT-------------------ENDS---------HERE */


/* ABOUT-PAGE-------------------------------------------ENDS-------------------------------HERE */


/* PORTFOLIO-PAGE--------------------------------------STARTS------------------------------HERE */

/* PORTFOLIO-SECTION--------------STARTS-------------HERE */

.cstm-portfolio .cards .cardd img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cstm-portfolio .cards .card-img{
    position: relative;
    height: 350px;
}

.cstm-portfolio .cards .card-img .txt-box{
    position: absolute;
    bottom: 0px;
    padding: 20px;
    color: white;
}

.cstm-portfolio .cards .card-img .txt-box h6{
    font-size: 15px;
    font-weight: 400;
}

.cstm-portfolio .cards .card-img .txt-box .line-div{
    height: 1px;
    background-color: gray;
}

.cstm-portfolio .cards .card-img .txt-box .line-div .line{
    height: 1px;
    background-color: #deb018;
    width: 70px;
}

.cstm-portfolio .cards .cardd{
    position: relative;
    margin-top: 30px;
}

.cstm-portfolio .cards .cardd .icon-div{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.3s all ease-in-out;
}

.cstm-portfolio .cards .cardd:hover .icon-div{
    background-color: rgba(0, 0, 0, 0.7);
}

.cstm-portfolio .cards .cardd .icon-div .iconn{
    height: 70px;
    width: 70px;
    background: linear-gradient(55deg, #CFA569 , #9A7246);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 0 5px #CFA569;
    margin-top: 500px;
    transition: 0.4s all ease-in-out;
    opacity: 0;
}

.cstm-portfolio .cards .cardd:hover .icon-div .iconn{
    margin-top: 0;
    opacity: 1;
}

.cstm-portfolio .cards .cardd .icon-div .iconn i{
    color: white;
    font-size: 20px;
}

.cstm-portfolio .cards .categories{
    margin-top: 70px;
}

.cstm-portfolio .cards .categories ul{
    display: flex;
}


.cstm-portfolio .cards .categories ul li{
    list-style: none;
}


.cstm-portfolio .cards .categories .all{
    cursor: pointer;
    margin: 0 10px;
    position: relative;
}

.cstm-portfolio .cards .categories a{
    color: black;
    text-decoration: none;
    transition: 0.4s ease;
}

.cstm-portfolio .cards .categories a:hover{
    color: #deb018;
}

.cstm-portfolio .cards .categories .txt{
    position: relative;
    cursor: pointer;
    margin: 0 10px;
}

.cstm-portfolio .cards .categories .txt span{
    margin: 0 10px;
}

.cstm-portfolio .cards .categories .anim::before{
    content: "";
    background-color: #deb018;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.4s ease-in-out;
}

.cstm-portfolio .cards .categories .anim:hover::before{
    transform: scale(1);
}

.filter-card .cardd {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  visibility: hidden;
  transition: all 0.6s ease;
  pointer-events: none;
}

.filter-card .cardd.show {
  opacity: 1;
  transform: translateY(0px) scale(1);
  visibility: visible;
  pointer-events: auto;
}

@media only screen and (max-width: 992px){
    .cstm-portfolio .cards .card-img{
        position: relative;
        height: 220px;
    }
}
@media only screen and (max-width: 768px){
    .cstm-portfolio .cards .categories .row{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media only screen and (max-width: 767px){
    .cstm-portfolio .cards .categories .row span{
        display: none;
    }
    .cstm-portfolio .cards .categories .row .bttn{
        border: 1px solid gray;
        border-radius: 30px;
        margin-top: 5px;
    }
    .cstm-portfolio .cards .categories .row .bttn .txt{
        padding: 10px;
    }
    .cstm-portfolio .cards .categories .row .bttn .all{
        padding: 10px;
    }
    .cstm-portfolio .cards .categories .row .bttn h5{
        margin: 0;
    }
}
@media only screen and (max-width: 426px){
    .cstm-portfolio .cards .categories .row .bttn h5{
        font-size: 15px;
    }
    .cstm-portfolio .cards .categories{
        margin-top: 30px;
    }
}

/* PORTFOLIO-SECTION--------------ENDS-------------HERE */

/* PORTFOLIO-PAGE--------------------------------------ENDS------------------------------HERE */


/* BLOG-PAGE------------------------------------------STARTS-----------------------------HERE */

/* BLOG-CARDS---------------STARTS-----------------HERE */

.blog-cards{
    padding: 100px;
}

.blog-cards .cardd{
    box-shadow: 0 0 5px rgb(184, 184, 184);
    border-radius: 10px;
    margin-top: 30px;
}

.blog-cards .cardd .content{
    padding-bottom: 30px;
}

.blog-cards .cardd .card-img{
    overflow: hidden;
}

.blog-cards .cardd .card-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s ease;
}

.blog-cards .cardd:hover .card-img img{
    transform: scale(1.1);
}

.blog-cards .cardd .info{
    display: flex;
    padding: 30px 0 10px 20px;
}

.blog-cards .cardd .info span{
    display: flex;
    justify-content: center;
    align-items: center;
    color: gray;
    font-size: 14px;
}

.blog-cards .cardd .info span h6{
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: rgb(154, 154, 154);
}


.blog-cards .cardd .info .user{
    margin-left: 20px;
}

.blog-cards .cardd .title h4{
    font-size: 20px;
    font-weight: 700;
    padding-left: 20px;
    width: 80%;
    transition: all 0.4s ease-in-out;
}

.blog-cards .cardd:hover .title h4{
    color: #B88C59;
}


.blog-cards .cardd .view-btn{
    padding-left: 20px;
    margin-top: 20px;
}

.blog-cards .cardd .view-btn .bttn{
    text-decoration: none;
    color: black;
    height: 45px;
    width: 140px;
    border-radius: 30px;
    border: 1px solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    transition: 0.4s ease;
}

.blog-cards .cardd .view-btn .bttn:hover{
    background-color: #B88C59;
    color: white;
}

@media only screen and (max-width: 1200px){
    .blog-cards {
        padding: 0;
        padding-top: 60px;
    }
    .blog-cards .cardd .title h4{
        font-size: 18px;
        width: 100%;
    }   
}
@media only screen and (max-width: 768px){
    .blog-cards .cards .cardd .title h4{
        padding-right: 10px;
    }
}

/* BLOG-CARDS---------------ENDS-----------------HERE */

/* BLOG-PAGE------------------------------------------ENDS-----------------------------HERE */


/* CONTACT-PAGE---------------------------------------STARTS---------------------------HERE */

/* MAP-&-CONTACT-FORM-------------STARTS-----------HERE */

.map{
    margin-top: 200px;
    position: relative;
}

.map .form-main{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 2;
}

.map .form-main .form-body{
    padding: 50px;
    box-shadow: 0 0 5px #aca7a7;
    background-color: white;
    width: 80%;
}

.map .form-main .form-title h2{
    width: 70%;
    font-weight: 700;
    font-size: 30px;
}

.map .form-main .form-title h2 i{
    color: #deb018;
    font-family: 'playfair display',sans-serif;
    font-weight: 700;
}

.map .form-main .cardd .para{
    margin-top: 25px;
}

.map .form-main .cardd .para p{
    font-size: 15px;
    color: rgb(51, 51, 51);
    line-height: 27px;
}

.map .form-main .content span {
    display: flex;
}

.map .form-main .content span .iconn i{
    color: #deb018;
}

.map .form-main .content span h5, h4 {
    color: rgb(212, 209, 209);
    font-weight: 400;
    padding-left: 20px;
}

.map .form-main .content .address{
    margin-top: 40px;
}

.map .form-main .content .address span h4 {
    font-size: 18px;
    width: 80%;
    padding-left: 20px;
}

.map .form-main .content .address a {
    text-decoration: none;
    padding-left: 30px;
    color: #deb018;
    margin-top: 5px;
}

.map .form-main .content .address a h6 {
    font-weight: 400;
}

.map .form-main .content .nmbr{
    margin-top: 30px;
}

.map .form-main .content .nmbr span h5{
    font-size: 17px;
    padding-left: 20px;
}

.map .form-main .content .mail{
    margin-top: 20px;
}

.map .form-main .content .mail h5{
    font-size: 17px;
}

.map .form-main .cardd form{
    padding: 0 50px;
}

.map .form-main .cardd .input-box input{
    padding: 10px;
    background-color: #EEF1F5;
    border: none;
    margin: 10px 0;
    width: 100%;
}

.map .form-main .cardd .input-box input:focus{
    outline: none;
    border: 1px solid #deb018;
}

.map .form-main .cardd .input-box input::placeholder{
    color: rgb(176, 172, 172);
    font-size: 15px;
}

.map .form-main .cardd .input-box textarea{
    padding: 10px;
    background-color: #EEF1F5;
    border: none;
    margin: 10px 0;
    width: 100%;
    height: 120px;
}

.map .form-main .cardd .input-box textarea:focus{
    outline: none;
    border: 1px solid #deb018;
}

.map .form-main .cardd .input-box textarea::placeholder{
    color: rgb(176, 172, 172);
    font-size: 15px;
}

.map .form-main .cardd .submit-btn .bttn{
    text-decoration: none;
    color: white;
    height: 45px;
    width: 130px;
    border-radius: 30px;
    background-color: #deb018;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    transition: 0.4s ease;
}

.map .form-main .cardd .submit-btn .bttn:hover{
    background-color: #e18924;
}

@media only screen and (max-width: 1200px){
    .map .form-main .cardd form {
        padding: 0;
    }
    .map .form-main .form-title h2 {
        width: 100%;
    }
    .map .form-main .cardd .para p {
        font-size: 14px;
    }
    .map .form-main .content .address span h4 {
        font-size: 17px;
        width: 100%;
    }
    .map .form-main .content .nmbr span h5 {
        font-size: 16px;
    }
    .map .form-main .content .mail h5 {
        font-size: 16px;
    }
    .map .form-main{
        top: -120px;
    }
    .embed-map-responsive {
        height: 400px !important;
    }
}
@media only screen and (max-width: 768px){
    .map .form-main .form-body{
        width: 95%;
    }
    .embed-map-responsive {
        height: 350px !important;
    }
}
@media only screen and (max-width: 426px){
    .map .form-main .form-body{
        padding: 20px;
    }
    .embed-map-responsive {
        height: 650px !important;
    }
    .map .form-main .form-title h2 {
        font-size: 25px;
    }
    .cstm-footer{
        margin-top: 210px !important;
    }
}
@media only screen and (max-width: 376px){
    .map .form-main .form-body {
        padding: 40px 13px 13px 13px;
    }
    .map .form-main .cardd .para p {
        font-size: 13px;
    }
    .map .form-main .content .address span h4 {
        font-size: 16px;
    }
    .map .form-main .content .nmbr span h5{
        font-size: 15px;
        margin: 0;
    }
    .map .form-main .content .mail h5{
        font-size: 15px;
    }
}

/* MAP-&-CONTACT-FORM-------------ENDS-----------HERE */

/* CSTM-FOOTER-----------------STARTS--------------HERE */

.cstm-footer{
    margin-top: 150px;
}   

/* CSTM-FOOTER-----------------ENDS--------------HERE */

/* CONTACT-PAGE---------------------------------------ENDS---------------------------HERE */