@font-face {
    font-family: 'High Tide';
    src: local('High Tide'), url('font/High Tide.ttf') format('truetype');
    font-display: fallback;
}

:root {
    --font-content: 'Montserrat', sans-serif;
    --font-heading: 'Fjalla One', sans-serif;
    --font-italic: 'High Tide', sans-serif;

    --clr-yellow: #f4f214;
    --clr-red: #ce272f;
    --clr-brown: #d46722;
}

/* css reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    font-family: var(--font-content);
}
body {
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: #0a0a0a;
    max-width: 1440px;
    margin: 0 auto;
}
a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
img,
picture {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul,
ol {
    list-style: none;
}
ul li,
ol li {
    display: inline-block;
}

/* common css */
.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.width-full {
    width: 100%!important;
}

/* header */
header {
    background: #000000cc;
    max-width: 1440px;
    color: #fff;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    transition: all .5s ease;
    z-index: 5;
    -webkit-transition: -webkit-transform .4s ease-in-out,left .2s ease,right .2s ease;
    -moz-transition: -moz-transform .4s ease-in-out,left .2s ease,right .2s ease;
    transition: transform .4s ease-in-out,left .2s ease,right .2s ease;
}
header.hide {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}
header .header-wrap {
    justify-content: space-between;
}
.header-wrap .logo-block,
.header-contatct-block .header-partner-image {
    width: 200px;
}
.header-contatct-block .header-partner-image.approved {
    width: 100px;
}
.header-contatct-block .header-partner-image:not(:last-child) {
    margin-right: 8px;
}
.header-contatct-block .header-contact-wrap {
    text-align: right;
    margin-right: 8px;
}
.header-contact-wrap .header-contact-item {
    display: block;
}
.header-contact-wrap .header-contact-item:not(:last-child) {
    margin-bottom: 8px;
}
.header-contact-wrap .header-contact-item.mail {
    color: var(--clr-yellow);
    font-weight: 700;
    font-size: 12px;
}
.header-contact-item .header-contact-image {
    width: 20px;
}

/* banner */
.banner-block {
    position: relative;
    height: 660px;
}
.banner-block .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-block::after {
    content: '';
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0) 36%,rgba(0,0,0,.7) 100%);
    background: -webkit-gradient(left top,left bottom,color-stop(0,rgba(0,0,0,0)),color-stop(36%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,.7)));
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0) 36%,rgba(0,0,0,.7) 100%);
    background: -o-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0) 36%,rgba(0,0,0,.7) 100%);
    background: -ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0) 36%,rgba(0,0,0,.7) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,0) 36%,rgba(0,0,0,.7) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.banner-block .banner-content-block {
    position: absolute;
    left: 90px;
    top: 140px;
    bottom: 0;
    right: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 6;
}
.banner-content-block .banner-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    text-shadow: 2px 2px #000;
    z-index: 6;
}
.banner-content-block .price-tag {
    position: absolute;
    top: 70%;
    left: 18em;
    background: url(../images/price-tag.png) no-repeat;
    width: 104px;
    height: 240px;
    background-size: contain;
    margin-top: -140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.price-tag .price {
    font-weight: bold;
    font-size: 2em;
    margin: 90px 0 0;
    color: #cf181d;
}
.price-tag .price span {
    font-size: .7em;
    margin-right: 4px;
}
.price-tag .per-person {
    font-weight: 600;
    color: #222;
}
.banner-content-block .banner-sub-title {
    margin-top: 12px;
    font-size: 1.4em;
    line-height: 2;
    text-shadow: 2px 2px #000;
}
.banner-block .banner-enquiry-form {
    position: absolute;
    right: 90px;
    top: 140px;
    bottom: 0;
    z-index: 6;
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 8px;
}
.banner-enquiry-form .title {
    color: #cd0d40;
    margin-bottom: 12px;
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
}
.banner-enquiry-form .row {
    display: flex;
    flex-wrap: wrap;
}
.banner-enquiry-form .row.col-1 .form-field {
    width: 100%;
}
.banner-enquiry-form .row.col-2 .form-field {
    width: 50%;
}
.banner-enquiry-form .form-field {
    color: var(--clr-yellow);
    font-size: 1.6em;
    font-weight: 900;
}

/* introduction */
.intro-block {
    margin: 50px 0;
}
.intro-block .intro-block-wrap {
    max-width: 1100px;
    padding: 0 15px;
    text-align: center;
}
.intro-block-wrap .title {
    margin-bottom: 30px;
    font-weight: 800;
    color: var(--clr-brown);
    font-size: 1.8em;
}

/* description */
.description-block {
    padding: 50px 0;

}
.description-block .description-block-wrap {
    align-items: stretch;
}
.description-block-wrap .itineray-block {
    width: 49%;
    position: relative;
/*    background: url(../images/kerala_map.jpg) no-repeat center;
    background-size: cover;*/
    /*padding: 50px 25px;*/
}
.kerala-map-title{color: #1f7e3c;text-align: center}
.description-block-wrap .usp-block {
    width: 49%;
    background: url('../images/aerial.jpg') center center;
    background-size: cover;
    position: relative;
    padding: 50px 100px;
    margin-left: 2%;
}
.usp-block .usp-block-wrap {
    padding: 0 15px;
    position: relative;
}
.usp-block-wrap .usp-block-list {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    text-align: left;
}
.usp-block-wrap .usp-block-list::before {
    content: "";
    background: #ffffff;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 42%;
}
.usp-block-wrap .usp-block-list::before {
    left: -25px;
}

.usp-block-list .usp-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.usp-title .usp-title-italic {
    font-weight: 500;
    font-size: 1.4em;
}
.itineray-block .title,
.usp-block .title {
    color: #ffffff;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}
.usp-block .title {
    font-size: 2em;
}
.itineray-block-wrap .itineray-block-list {
    position: relative;
    font-weight: 500;
    color: #fff;
}
.itineray-block-list b {
    background: #000;
    padding: 2px 4px;
    border-radius: 4px;
    margin-right: 4px;
    color: #fff;
}
.itineray-block-wrap .itineray-block-list:not(:last-child) {
    margin-bottom: 25px;
}
.itineray-block-list .itineray-title {
    font-size: 1.6em;
    font-weight: 700;
    color: #f47920;
    margin-bottom: 15px;
}
.itineray-block-list .read-more {
    position: absolute;
    bottom: -22px;
    right: 0;
    font-size: 13px;
    font-weight: 600;
    color: #f47920;
    cursor: pointer;
}
.itineray-block-list .activities-block {
    display: none;
    margin-top: 8px;
    transition: all .3s ease-in-out;
}
.itineray-block-list .activities-title {
    margin-bottom: 4px;
    color: #ce181e;
}
.itineray-block-list .activities-content {
    font-weight: 600;
}

/* destination */
.destination-container {
    padding: 50px 0;
}
.destination-container .title {
    color: #1f7e3c;
    text-align: center;
    font-size: 30px;
    margin-bottom: 25px;
}
.destination-container .content {
    text-align: center;
    margin: 0 15%;
    font-weight: 400;
}
.destination-container .destination-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.destination-list-wrap .destination-block {
    position: relative;
    overflow: hidden;
    height: 400px;
}
.destination-block .destination-image {
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
    transition: transform .8s cubic-bezier(.165,.84,.44,1),opacity .5s cubic-bezier(.77,0,.175,1),-webkit-transform .8s cubic-bezier(.165,.84,.44,1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-block:hover .destination-image {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    filter: brightness(50%);
}
.destination-block:hover .destination-content {
    bottom: 15px;
}
.destination-block .destination-content {
    position: absolute;
    bottom: -20px;
    left: 15px;
    color: #fff;
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.destination-content .destination-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 22px;
}
.destination-content .destination-city {
    font-weight: 600;
    min-height: 25px;
    margin-bottom: 1rem;
}
.destination-content .destination-content-text {
    font-weight: 500;
}

/* honeymoon */
.honeymoon-container {
    margin: 50px 0;
    background: url(../images/honeymoon.jpg) 75% 95%;
    height: 400px;
    position: relative;
}
.honeymoon-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000004f;
}
.container.honeymoon-container-wrap {
    text-align: center;
    margin-top: 50px;
}
.honeymoon-container .honeymoon-container-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 500px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.honeymoon-container-wrap .title {
    color: #fff;
    font-weight: bold;
    font-size: 3em;
    font-family: var(--font-heading);
}
.honeymoon-container-wrap .sub-title {
    font-size: 3em;
    color: #449011;
    font-weight: bold;
    font-family: var(--font-italic);
    margin-top: 6px;
}
.honeymoon-container-wrap .sub-title span {
    font-family: cursive;
}
.honeymoon-container-wrap .content {
    line-height: 1.8;
    margin: 15px 0 30px 0;
}
.honeymoon-container-wrap .sign {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 70px;
    font-weight: 600;
}
.honeymoon-container-wrap .contact-btn {
    background: #20c0e2;
    color: #fff;
    padding: 10px 20px;
    width: max-content;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* enquiry */
.enquiry-container {
    padding: 0 0 50px;
}
.enquiry-container .form-block,
.enquiry-container .image-block {
    width: 50%;
}
.enquiry-container .image-block {
    min-height: 600px;
    background: url('../images/contact.png');
    background-size: cover;
}
.enquiry-container .title {
    margin-bottom: 30px;
    font-size: 1.8em;
}
.enquiry-container-wrap {
    justify-content: space-between;
}
.enquiry-container-wrap input[type="text"],
.enquiry-container-wrap textarea {
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    padding-left: 15px;
}
.banner-enquiry-form .enquiry-container-wrap input[type="text"],
.banner-enquiry-form .enquiry-container-wrap textarea,
.enquiry-form-block .enquiry-container-wrap input[type="text"],
.enquiry-form-block .enquiry-container-wrap textarea {
    border-color: #d2d2d2;
}
.banner-enquiry-form .enquiry-container-wrap input[type="text"],
.banner-enquiry-form .enquiry-container-wrap textarea {
    background-color: #ffffff80;
    font-weight: 600;
}
.banner-enquiry-form .enquiry-container-wrap input[type="text"]::placeholder,
.banner-enquiry-form .enquiry-container-wrap textarea::placeholder {
    color: #000;
    font-weight: 600;
}
.enquiry-container-wrap input[type="text"] {
    width: calc(50% - 7.5px);
    height: 45px;
    margin-bottom: 30px;
}
.banner-enquiry-form .enquiry-container-wrap input[type="text"] {
    margin-bottom: 10px;
}
.enquiry-container-wrap textarea {
    width: 100%;
    min-height: 400px;
    resize: vertical;
    width: 100%;
    min-height: 120px;
    resize: vertical;
    padding: 15px;
}
.enquiry-container-wrap input[type="submit"],button {
    margin-top: 30px;
    background: #cd0d40;
    padding: 12px 24px;
    border-radius: 8px;
    border: 0;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
}
.banner-enquiry-form .enquiry-container-wrap button{
    width: 100%;
    margin: 10px 0 0 0;
}

/* testimonial */
.testimonial-container {
    background: #eaeaea;
    margin-bottom: 50px;
    padding: 30px 0;
}
.testimonial-container .testimonial-container-wrap {
    max-width: 1024px;
    margin: 0 auto;
}
.testimonial-container-wrap .title {
    text-align: center;
    font-size: 22pt;
    margin-bottom: 20px;
    color: #cd0d40;
}
.testimonial-container-wrap .testimonial-block {

    position: relative;
}
.testimonial-block .heart-block {
    position: absolute;
}
.testimonial-block .heart-block.start {
    top: -35px;
    left: -35px;
}
.testimonial-block .heart-block.end {
    bottom: -35px;
    right: -35px;
    transform: rotate(180deg);
}
.testimonial-block .testimonial-content {
    padding: 25px 0;
    text-align: center;
    line-height: 2;
    font-weight: 600;
    max-width: 750px;
    margin: 0 auto;
    font-style: italic;
}
.testimonial-block .testimonial-author {
    color: #00aff2;
    margin-bottom: 10px;
    text-align: right;
    font-size: 1.2em;
    padding-right: 50px;
    font-style: italic;
    font-weight: 700;
}

/* footer */
footer {
    background: #000;
    padding: 50px 0;
    color: #cdcaca;
}
footer .footer-wrap {
    justify-content: space-between;
}
.footer-wrap .footer-logo-block {
    width: 50%;
}
.footer-wrap .contact-block {
    width: 25%;
}
.footer-wrap .footer-logo-block,
.footer-wrap .contact-block,
.footer-logo-block .logo-inner-block,
.footer-logo-block .address-block {
    padding: 0 15px;
}
.footer-logo-block .logo-inner-block {
    width: 35%;
    align-self: flex-start;
}
.footer-logo-block .address-block {
    width: 65%;
}
.footer-logo-block .address {
    padding-top: 26px;
    margin-top: 16px;
    font-weight: 600;
}
.partner-block .partner-inner-block {
    padding-right: 50px;
}
.partner-block img,
.partner-block .partner-inner-block {
    width: 50%;
}
.partner-inner-block img {
    width: 100%;
}
.footer-wrap .footer-nav-block {
    margin: 20px auto 0;
}
.footer-nav-block .title {
    font-size: 1.25rem;
    margin-bottom: .5rem;
}
.footer-nav-block .footer-nav-item {
    font-weight: 600;
    margin-bottom: 4px;
}

/* Back to top */
.back-to-top {
    display: none;
    position: fixed;
    cursor: pointer;
    bottom: 30px;
    right: 30px;
    background: #cd0d40;
    padding: 15px;
    border-radius: 50%;
}
@-webkit-keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}
@keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}
.back-to-top {
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}
.back-to-top:before {
    content: '';
    position: absolute;
    border: rgba(0, 0, 0, 0.0) solid 2px;
    border-radius: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
.back-to-top:hover:before,
.back-to-top:focus:before,
.back-to-top:active:before {
    -webkit-animation-name: hvr-ripple-out;
    animation-name: hvr-ripple-out;
    border-color: #cd0d40;
    animation-fill-mode: forwards;
}
.back-to-top:active {
    background-color: #cd0d40;
    -webkit-animation-name: hvr-ripple-out;
    animation-name: hvr-ripple-out;
}
.fill-good {
    background-color: #cd0d40; 
    border: 1px solid #cd0d40;
}
.fill-good:hover {
    border: 1px solid #cd0d40;
}

/* popup-container */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 100vh;
    background: #00000085;
    z-index: 9;
    overflow: auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.popup-container .popup-wrap {
    width: 560px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 6px;
}
.popup-wrap .popup-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.popup-header .popup-title {
    color: #cd0d40;
    font-size: 1.4em;
}
.popup-header .popup-close {
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.popup-header .popup-close:hover {
    fill: #9e9e9e;
}

.textimonial{
     text-align: center;
}

.textimonial>h5{
    font-family: 'Lato', sans-serif;
    font-size: 18pt;
    line-height: 2;
    font-weight: bolder;
}
.textimonial>h6{
    font-family: 'Lato', sans-serif;
    font-size: 16pt;
    font-weight: 300;
    font-style: italic;
}
.error{color: red;}
.phoneNumber95959k{display: none;visibility: hidden;}
.itineray-block img { width: 100%;}
.kerala-map-title1 { color: #1f7e3c; text-align: center;  position: absolute; right: 71px; top: 71px; font-size: 24px; line-height: 29px;}