@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');

/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #000000;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #1d2434;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #D5B981;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #f1d2c9;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    background: #1d2434;
}

.back-to-top:hover i {
    color: #D5B981;
}

.back-to-top i {
    color: #1d2434;
    padding-top: 10px;
}

img{
    object-fit: cover;
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
/*.top-bar {
    position: relative;
    height: 60px;
    background: #1d2434;
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 60px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 60px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    font-size: 22px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #D5B981;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}
*/

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    /*position: relative;
    transition: .5s;
    z-index: 999;*/

    position: inherit;
    width: 100%;
    transition: .5s;
    top: 60px;
    padding: 20px 60px;
    background: #f1d2c9;
    z-index: 999;

    margin:0 auto;
    list-style:none;

}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff; /*Logo*/
    font-size: 45px;
    line-height: 0px;
    font-weight: 600;
   font-family: 'Crimson Text', serif;
   letter-spacing: 3px;
}

.navbar .navbar-brand span {
    font-weight: 800;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
    font-family: Century Gothic;
    text-transform: none;

    display:block;
    text-align:center;
    width:140px; /* fixed width */
    text-decoration:none; 

 }

@media (max-width:1024px) {
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
     padding: 10px 10px 8px 10px;
    color: #ffffff;
    font-family: Century Gothic;
    text-transform: none;
    display: block;
    text-align: center;
    width: 100px;
    text-decoration: none;
}
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    /*background: rgba(256, 256, 256, .1);
    transition: none;
    */
    background: transparent;
    transition: none;
    font-weight: bold;
    text-transform: uppercase;
}



@media (min-width: 992px) {
    .navbar {
        /*position: absolute;
        width: 100%;
        top: 60px;
        padding: 20px 60px;
        background: rgba(0, 0, 0, .1) !important;
        z-index: 9;*/
        position: inherit;
        width: 100%;
        top: 60px;
        padding: 20px 60px;
        background: #f1d2c9;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        /*background: #1d2434 !important;*/
        background: rgba(0, 0, 0, .1) !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        /*background: #1d2434 !important;*/
        background: #f1d2c9 !important;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    height: calc(100vh - 60px);
    /*background: #D5B981;*/
    overflow: hidden;
    background-image: url(../img/home/banner-home.jpg);
    background-size: cover;
    background-position: center center;
}

.hero .container-fluid {
    padding: 0;
}

.hero .hero-image {
    position: relative;
    text-align: right;
}

.hero .hero-image img {
    max-width: 80%;
    max-height: 80%;
}

.hero .hero-text {
    position: relative;
    padding-left: 75px;
    height: calc(100vh - 60px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text h1 {
    color: #1d2434;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero .hero-text p {
    color: #1d2434;
    font-size: 18px;
    margin-bottom: 25px;
}

.hero .hero-text .btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    background: none;
    border: 2px solid #fff;
    border-radius: 0;
    transition: .3s;
    text-transform: uppercase;
}

.hero .hero-text .btn:hover {
    color: #D5B981;
    background: #f1d2c9;
}

/*.hero .btn-play {
    position: absolute;
    z-index: 1;
    top: 80%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.hero .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #1D2434;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.hero .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #1D2434;
    border-radius: 50%;
    transition: all 200ms;
}

.hero .btn-play:hover:after {
    background-color: darken(#1D2434, 10%);
}*/

.hero .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.hero .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #ffffff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    right: 0px;
    top: -12px;
    z-index: 999;
    font-size: 50px;
    font-weight: normal;
    color: #ffffff;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .hero .hero-text {
        padding-left: 15px;
    }
    
    .hero .hero-text h1 {
        font-size: 35px;
    }
    
    .hero .hero-text p {
        font-size: 16px;
    }
    
    .hero .hero-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .hero .hero-text h1 {
        font-size: 30px;
        font-weight: 600;
    }
    
    .hero .hero-text p {
        font-size: 14px;
    }
    
    .hero .hero-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text h1 {
        font-size: 25px;
        font-weight: 600;
    }
    
    .hero .hero-text p {
        font-size: 14px;
    }
    
    .hero .hero-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

/*******************************/
/********** Promo CSS ***********/
/*******************************/

.promo {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: #f9edea;
}

.promo .section-header {
    margin-bottom: 30px;
    margin-left: 0px;
    font-size: ;
}

.promo .promo-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
    object-fit: cover;
}

.promo .promo-img img {
    position: relative;
    width: 450px;
    height: 350px;
    left: -100px;
    top: -60px;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}


.promo .promo-img::before {
    position: absolute;
    content: "";
    top: 30px;
    right: 0px;
    bottom: 60px;
    left: 0px;
    height: 350px;
    background: #f1d2c9;
    z-index: 0;
}
.promo .section-header h2{
    color: #000;
    font-size:60px;
    font-family: Century Gothic;
    font-weight: 100;
    letter-spacing: 4px;
    line-height: 1.1em;
    top: 15px;

}
.promo .section-header span{
    color: #000;
    font-size:80px;
    font-family: Century Gothic;
    font-weight: bold;
}
/*.about .about-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: #f1d2c9;
    z-index: 0;
}*/

/*.about .about-img::after {
    position: absolute;
    content: "";
    top: -30px;
    right: 30px;
    bottom: 30px;
    left: -30px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 2;
}*/

.promo .promo-text p {
    font-size: 40px;
    font-family: Century Gothic;
    color: #000;
    padding-right: 32px;
    line-height: 1.2em;

}

.promo .promo-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.promo .promo-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}

@media (max-width: 767.98px) {
    .promo .promo-img {
        margin-bottom: 30px;
        height: auto;
        object-fit: cover;
    }

}

@media (max-width: 768px) {
    .promo .promo-img img {
    position: relative;
    width: 300px;
    height: 350px;
    left: -100px;
    top: -60px;
    object-fit: cover;
    z-index: 1;
    }
}

@media (max-width: 425px) {
    .promo .promo-img img {
    position: relative;
    width: 300px;
    height: 350px;
    left: -100px;
    top: -60px;
    object-fit: cover;
    z-index: 1;
    }
}

/*******************************/
/********** Promo Discount Details CSS **********/
/*******************************/
.promo-discount {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: #;
}

.promo-discount .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.promo-discount .promo-discount-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.promo-discount .promo-discount-img img {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: 1;
}

.promo-discount .promo-discount-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: #f1d2c9;
    z-index: 0;
    height: 380px;
}

.promo-discount .promo-discount-text p {
    font-size: 40px;
    padding: 20px;

}

.promo-discount .promo-discount-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.promo-discount .promo-discount-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}

@media (max-width: 767.98px) {
    .promo-discount .promo-discount-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*End of Promo Banner*/


/*******************************/
/********** Services Banner CSS ***********/
/*******************************/

.services {
    position: relative;
    width: 100%;
    padding: 45px 0;
    /*background: #f9edea;*/
    background-image: url(../img/services/services-banner.jpg);
    background-size: cover;
    background-position: ;
    height: 580px;
}

.services .section-header {
    margin-bottom: 30px;
    margin-left: 0px;
    font-size: ;
}

.services .services-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
    object-fit: cover;
}

.services .services-img img {
    position: relative;
    width: 450px;
    height: 350px;
    left: -100px;
    top: -60px;
    object-fit: cover;
    z-index: 1;
}

.services .services-img::before {
    position: absolute;
    content: "";
    top: 30px;
    right: 0px;
    bottom: 60px;
    left: 0px;
    height: 350px;
    background: #f1d2c9;
    z-index: 0;
}
.services .section-header h2{
    color: #000;
    font-size:60px;
    font-family: Century Gothic;
    font-weight: 100;
    letter-spacing: 4px;
    line-height: 1.1em;
    top: 15px;

}
.services .section-header span{
    color: #000;
    font-size:80px;
    font-family: Century Gothic;
    font-weight: bold;
}
/*.about .about-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: #f1d2c9;
    z-index: 0;
}*/

/*.about .about-img::after {
    position: absolute;
    content: "";
    top: -30px;
    right: 30px;
    bottom: 30px;
    left: -30px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 2;
}*/

.services .services-text p {
    font-size: 40px;
    font-family: Century Gothic;
    color: #000;
    padding-right: 32px;
    line-height: 1.2em;

}

.services .services-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.services .services-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}

@media (max-width: 767.98px) {
    .services .services-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*End of Services Banner*/


/*******************************/
/********** Service-Menu Details CSS **********/
/*******************************/
.service1 {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: #f9edea;
    margin-bottom: 0px;
}

.service1 .section-header {
    margin-bottom: 0px;
    margin-left: 0;
}

.service1 .section-header1 h2{
    margin-bottom: 0px;
    margin-left: 0;
    font-size: 70px;
    letter-spacing: 3px;
    font-family: 'Crimson Text', serif;
}


.service1 .service1-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.service1 .service1-img img {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: 1;
}

.service1 .service1-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: #f1d2c9;
    z-index: 0;
    height: 380px;
}

.service1 .service1-text p {
    font-size: 40px;
    padding: 20px;

}

.service1 .service1-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.service1 .service1-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}

table, th, td {
 width: 100%;
 font-family: Century Gothic;
 color: #000;
 font-size: 30px;
}

@media (max-width: 767.98px) {
    .service1 .service1-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*End of Promo Banner*/

/*******************************/
/********** Service-Menu2 Details CSS **********/
/*******************************/
.service2 {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: #e1c5be;
    margin-bottom: 0px;
}

.service2 .section-header {
    margin-bottom: 0px;
    margin-left: 0;
}

.service2 .section-header2 h2{
    margin-bottom: 0px;
    margin-left: 0;
    font-size: 70px;
    letter-spacing: 3px;
    font-family: 'Crimson Text', serif;
}




.service2 .service2-text p {
    font-size: 40px;
    padding: 20px;

}




@media (max-width: 767.98px) {
    .service2 .service2-img {
        margin-bottom: 30px;
        height: auto;
    }
}



/*End of Services Menu 2 Banner*/

/*******************************/
/********** Service-Menu3 Details CSS **********/
/*******************************/
.service3 {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: #FFF;
    margin-bottom: 0px;
}

.service3 .section-header {
    margin-bottom: 0px;
    margin-left: 0;
}

.service3 .section-header3 h2{
    margin-bottom: 0px;
    margin-left: 0;
    font-size: 70px;
    letter-spacing: 3px;
    font-family: 'Crimson Text', serif;
}

.service3 .service3-text p {
    font-size: 40px;
    padding: 20px;

}


@media (max-width: 767.98px) {
    .service2 .service2-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: #D5B981;
}

.page-header h2 {
    position: relative;
    color: #1d2434;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #1d2434;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #1d2434;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0px;
}

.about .about-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    left: -100px;
    object-fit: cover;
    z-index: 1;
}

.about .about-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 0px;
    bottom: 60px;
    left: -40px;
    height: 400px;
    background: #f1d2c9;
    z-index: 0;
}
.about h2{
    color: #000;
    font-size:90px;
    font-family: 'Crimson Text', serif;
}
/*.about .about-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: #f1d2c9;
    z-index: 0;
}*/

/*.about .about-img::after {
    position: absolute;
    content: "";
    top: -30px;
    right: 30px;
    bottom: 30px;
    left: -30px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 2;
}*/

.about .about-text p {
    font-size: 30px;
    font-family: Century Gothic;
    color: #000;
    padding-right: 32px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    background: rgba(29, 36, 52, .04);
}

.service .service-img {
    position: relative;
    width: 100%;
}

.service .service-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 25px;
    font-weight: 700;
}

.service .service-item p {
    margin: 0;
    padding: 0 25px 25px 25px;
    font-size: 16px;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #D5B981;
    background: #1d2434;
    border-color: #1d2434;
}

/*******************************/
/********** Rate Banner CSS ***********/
/*******************************/

.rate-us {
    position: relative;
    width: 100%;
    padding: 45px 0;
    /*background: #f9edea;*/
    background-image: url(../img/rate/rate-banner.jpg);
    background-size: cover;
    background-position: ;
    height: 580px;
}

.rate-us .section-header {
    margin-bottom: 30px;
    margin-left: 0px;
    font-size: ;
}

.rate-us .rate-us-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.rate-us .rate-us img {
    position: relative;
    width: 450px;
    height: 350px;
    left: -100px;
    top: -60px;
    object-fit: cover;
    z-index: 1;
}

.rate-us .rate-us-img::before {
    position: absolute;
    content: "";
    top: 30px;
    right: 0px;
    bottom: 60px;
    left: 0px;
    height: 350px;
    background: #f1d2c9;
    z-index: 0;
}
.rate-us .section-header h2{
    color: #000;
    font-size:60px;
    font-family: Century Gothic;
    font-weight: 100;
    letter-spacing: 4px;
    line-height: 1.1em;
    top: 15px;

}
.rate-us .section-header span{
    color: #000;
    font-size:80px;
    font-family: Century Gothic;
    font-weight: bold;
}


.rate-us .rate-us-text p {
    font-size: 40px;
    font-family: Century Gothic;
    color: #000;
    padding-right: 32px;
    line-height: 1.2em;

}

.rate-us .rate-us-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.rate-us .rate-us-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}

@media (max-width: 767.98px) {
    .rate-us .raterate-us-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*End of Services Banner*/


/*******************************/
/********** Service-Menu Details CSS **********/
/*******************************/
.rate {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: #fff;
    margin-bottom: 0px;
}

.rate .section-header1 {
    margin-bottom: 0px;
    margin-left: 0;
}

.rate .section-header1 h2{
    margin-bottom: 0px;
    margin-left: 0;
    font-size: 70px;
    letter-spacing: 3px;
    font-family: 'Crimson Text', serif;
}

.rate .rectangle {
    background: #f9edea;
    width: 80%;
    margin-left: 10%;
    position: relative;
    z-index: 99;
    margin-top: -20em;
    
}
.rate .rectangle h2{
    color: #000;
    font-size: 80px;
    text-align: center;
    padding-top: 30px;
    font-family: 'Crimson Text', serif;
    letter-spacing: 4px;
}

.rate .service1-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.rate .service1-img img {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: 1;
}

.rate .service1-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: #f1d2c9;
    z-index: 0;
    height: 380px;
}

.rate .rate-text p {
    font-size: 40px;
    padding: 20px;
    text-align: center;
}

.rate .rate a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.rate .rate-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}


@media (max-width: 767.98px) {
    .rate .rate-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*Star Css*/

.rating {
  display: inline-block;
  position: relative;
  height: 130px;
  line-height: 80px;
  font-size: 120px;
  top: 0em;
  margin-left: 1.6em;
  margin-right: 1em;
}

.rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.rating label:last-child {
  position: static;
}

.rating label:nth-child(1) {
  z-index: 5;
}

.rating label:nth-child(2) {
  z-index: 4;
}

.rating label:nth-child(3) {
  z-index: 3;
}

.rating label:nth-child(4) {
  z-index: 2;
}

.rating label:nth-child(5) {
  z-index: 1;
}

.rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.rating label .icon {
  float: left;
  color: transparent;
}

.rating label:last-child .icon {
  color: #fff;
}

.rating:not(:hover) label input:checked ~ .icon,
.rating:hover label:hover input ~ .icon {
  color: yellow;
}

.rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #fff;
  text-shadow: 0 0 5px #09f;
}

@media (max-width:425px) {
  .rating {
    display: inline-block;
    position: relative;
    height: 150px;
    line-height: 50px;
    font-size: 50px;
    top: .5em;
  }
}

@media (max-width: 768px){
.rating {
    display: block;
    position: relative;
    height: 150px;
    line-height: 70px;
    font-size: 90px;
    top: 0em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
/*End of Promo Details*/
/*@media (max-width:1024px) {
    .rating {
    display: inline-block;
    position: relative;
    height: 130px;
    line-height: 50px;
    font-size: 140px;
    top: 0em;
    margin-left: .6em;
    }
}
*/
/*End of Rate Banner*/

/*******************************/
/********** Gallery Banner CSS ***********/
/*******************************/

.gallery {
    position: relative;
    width: 100%;
    padding: 45px 0;
    /*background: #f9edea;*/
    background-image: url(../img/gallery/gallery.jpg);
    background-size: cover;
    background-position: ;
    height: 580px;
}

.rate-us .section-header {
    margin-bottom: 30px;
    margin-left: 0px;
    font-size: ;
}

.rate-us .rate-us-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.rate-us .rate-us img {
    position: relative;
    width: 450px;
    height: 350px;
    left: -100px;
    top: -60px;
    object-fit: cover;
    z-index: 1;
}

.rate-us .rate-us-img::before {
    position: absolute;
    content: "";
    top: 30px;
    right: 0px;
    bottom: 60px;
    left: 0px;
    height: 350px;
    background: #f1d2c9;
    z-index: 0;
}
.rate-us .section-header h2{
    color: #000;
    font-size:60px;
    font-family: Century Gothic;
    font-weight: 100;
    letter-spacing: 4px;
    line-height: 1.1em;
    top: 15px;

}
.rate-us .section-header span{
    color: #000;
    font-size:80px;
    font-family: Century Gothic;
    font-weight: bold;
}


.rate-us .rate-us-text p {
    font-size: 40px;
    font-family: Century Gothic;
    color: #000;
    padding-right: 32px;
    line-height: 1.2em;

}

.rate-us .rate-us-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.rate-us .rate-us-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}

@media (max-width: 767.98px) {
    .rate-us .raterate-us-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*End of Gallery Banner*/

/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.price .price-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 30px;
    background: rgba(29, 36, 52, .04);
    transition: .3s;
}

.price .price-item:hover {
    background: #D5B981;
}

.price .price-img {
    position: relative;
    width: 100px;
}

.price .price-img img {
    width: 100%;
}

.price .price-img::after {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.price .price-text {
    position: relative;
    padding: 0 15px;
    width: calc(100% - 100px);
    overflow: hidden;
}

.price .price-text h2 {
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.price .price-text h3 {
    position: relative;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
}

.team .team-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #F6F6F7;
    transition: .3s;
    z-index: 1;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    margin: -60px 15px 0 15px;
    padding: 30px 15px;
    text-align: center;
    background: #F6F6F7;
    transition: .3s;
    z-index: 2;
}

.team .team-text h2 {
    font-size: 16px;
    font-weight: 600;
}

.team .team-text p {
    margin: 0;
    color: #333333;
}

.team .team-item:hover .team-text {
    background: #D5B981;
}

.team .team-item:hover .team-img::after {
    border-color: #D5B981;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 120px 0;
    background: linear-gradient(rgba(29, 36, 52, 1), rgba(29, 36, 52, .5), rgba(29, 36, 52, 1)), url(../img/testimonial-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 700px;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: 100%;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    width: 60px;
    border-radius: 60px;
    margin-bottom: 25px;
}

.testimonial .testimonial-item p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial .testimonial-item h2 {
    color: #D5B981;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.testimonial .owl-nav {
    width: 135px;
    margin-top: 45px;
    display: flex;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D5B981;
    background: #1d2434;
    font-size: 22px;
    transition: .3s;
}

.testimonial .owl-nav .owl-next {
    margin-left: 15px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: #1d2434;
    background: #D5B981;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    background: rgba(29, 36, 52, .04);
    overflow: hidden;
}

.blog .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
}

.blog .blog-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-meta {
    position: relative;
    padding: 20px 30px 12px 30px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
    padding: 0 30px 30px 30px;
}

.blog .blog-text h2 {
    font-size: 18px;
    font-weight: 600;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1d2434;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 5px;
}

.blog .blog-item a.btn:hover {
    color: #D5B981;
}

.blog .owl-nav {
    width: 150px;
    margin: 32px auto 0 auto;
    display: flex;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    margin-left: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D5B981;
    background: #1d2434;
    font-size: 22px;
    transition: .3s;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #1d2434;
    background: #D5B981;
}

.blog .pagination .page-link {
    color: #1d2434;
    border-radius: 0;
    border-color: #1d2434;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #D5B981;
    background: #1d2434;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0 15px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #1d2434;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    background: none;
    border: 2px solid #1d2434;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #1d2434;
    color: #D5B981;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .3s;
}

.portfolio .portfolio-item:hover {
    margin-top: -10px;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio .portfolio-wrap a::after {
    position: absolute;
    content: "";
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    background: transparent;
    border: 1px solid #F6F6F7;
    transition: .3s;
    z-index: 1;
}

.portfolio .portfolio-wrap:hover a::after {
    border-color: #D5B981;
}

.portfolio img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: url(../img/Contact/contact_bg-original.jpg) left center no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center ;
    margin-top: 0;
    padding: 50px 0 0 0 ;
    margin-bottom: -3.5em;
}

/*.contact .container-fluid {
    background: url(../img/Contact/contact_bg.jpg) left center no-repeat;
    background-size: contain;
}*/

.contact .contact-form {
    position: relative;
    padding: 90px 0 90px -5px;
    background: transparent;
    margin-bottom: 4em;

}

.contact .contact-form input {
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border: 1px solid #707070;
    background: #fff;
}

.contact .contact-form h2 {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact .contact-form label {
    font-weight: bold;
}

.contact .contact-form textarea {
    height: 200px;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border: 1px solid #707070;
    background: #fff;
}

.contact .contact-form .btn {
    padding: 5px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c78b7a;
    background: #f1d2c9;
    border: none;
    border-radius: 0;
    transition: .3s;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    margin-top: 10px;
    left: 50%;
}

.contact .contact-form .btn:hover {
    color: #fff;
    background: #c78b7a;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media (max-width: 767.98px) {
    .contact .container-fluid {
        background: none;
    }
    
    .contact .contact-form {
        padding: 90px 0;
    }
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}



/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #f1d2c9;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #bf8675;
    text-align: center;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2{
    position: relative;
    margin-bottom: 0px;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-top: -.5em;
    font-family: 'Crimson Text', serif;
    letter-spacing: 4px;
}

.footer .footer-contact p,
.footer .footer-link p,
.footer .footer-newsletter p{
    position: relative;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 500;
    color: #bf8675;

}
.footer .footer-link span{
    font-size: 28px;
}

.footer .footer-link p{
    font-size: 22px;
}
.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #999999;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #D5B981;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #D5B981;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1d2434;
    background: none;
    border-radius: 0;
    border: 2px solid #1d2434;
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #D5B981;
    background: #1d2434;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright p {
    margin: 0;
    color: #454545;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #1d2434;
    font-weight: 700;
}

.footer .copyright p a:hover {
    color: #D5B981;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}
