/*********************************************

CUstom CSS for LP

!IMPORTANT
NEED TO SET COVER EVERY TIME
******************************************** */


/* -------------------------------------------------------------
     SET COVER
 ------------------------------------------------------------- */

.banner-slider .banner-slider-item.banner-bg-1:after {
    background-image: var(--my-bg-var);
}


/*********************************************
DO NOT TOUCH THIS PART
******************************************** */


/* -------------------------------------------------------------
     SLIDER PART
 ------------------------------------------------------------- */

p .content i .fas .fa-star {
    color: gold;
}

.banner-slider .banner-slider-item .banner-inner .banner-title {
    font-size: 36px !important;
    font-family: 'Bai Jamjuree', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.5;
}

.banner-slider .banner-slider-item .tp-price-meta h3 {
    font-size: 21px;
    font-family: var(--body-font);
    color: #fff;
}

.banner-slider .banner-slider-item .tp-price-meta h4 {
    font-size: 18px;
    font-family: var(--body-font);
    color: #fff;
}

.section-title .title {
    font-size: 33px;
}

.destinations-list-slider-bg {
    position: relative;
    background-color: var(--main-color-two);
}


/* -------------------------------------------------------------
  The switch
 ------------------------------------------------------------- */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}


/* Hide default HTML checkbox */

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


/* The slider */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #0db734;
}

input:focus+.slider {
    box-shadow: 0 0 1px #0db734;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/* -------------------------------------------------------------
     OFFER PART
 ------------------------------------------------------------- */

.section-title .title {
    font-size: 28px;
    font-family: var(--body-font);
    font-weight: 600;
}

.single-destinations-list:before {
    background: rgba(212, 142, 7, 0.4);
    /* background: rgba(243, 148, 32, 0.3); */
}


/* -------------------------------------------------------------
     T&C
 ------------------------------------------------------------- */

.short-text {
    overflow: hidden;
    height: 220px;
}

.full-text {
    height: auto;
}

.t-and-c-padding-one {
    padding-left: 18px;
    text-indent: -16px;
    list-style-type: none;
}

.t-and-c-padding-two {
    padding-left: 16px;
    text-indent: -24px;
    list-style-type: none;
}


/* -------------------------------------------------------------
     FORM PART
 ------------------------------------------------------------- */

.error {
    color: red;
}

.hide {
    display: none;
}

#valid-msg {
    color: green;
}

#error-msg {
    color: red;
}

.iti {
    width: 100% !important;
}

.navbar-area-fixed .main-logo {
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-area-fixed .sticky-logo {
    padding-top: 10px;
    padding-bottom: 10px;
}

.goldstar {
    color: gold !important;
}

.form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 50;
    color: var(--paragraph-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: 0 20px;
}

.hightlight {
    color: #b3a258;
    font-weight: 600;
}


/* -------------------------------------------------------------
     BUTTON
 ------------------------------------------------------------- */

.btn-avc {
    color: var(--main-color-one);
}

.btn-avc span {
    position: relative;
    padding-right: 28px;
}

.btn-avc span i {
    position: absolute;
    top: 2px;
    font-size: 22px;
    margin-left: 2px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn-avc:hover {
    color: var(--main-color-one);
}

.btn-avc:hover span i {
    margin-left: 6px;
}

.btn-avc:focus {
    outline: 0;
}

.btn-avc.animate {
    width: 68.1818181818px;
    height: 68.1818181818px;
    min-width: 0;
    border-radius: 50%;
    color: transparent;
}

.btn-avc.animate:after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    border: 4px solid #fefefe;
    border-radius: 50%;
    border-left-color: transparent;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: spin ease-in 2.5s forwards;
    animation-name: spin;
    -webkit-animation-name: spin;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    animation-duration: 2.5s;
    -webkit-animation-duration: 2.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.btn-avc.animate.success:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 12.5px;
    border: 4px solid #fefefe;
    border-right: 0;
    border-top: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
    -webkit-animation: success ease-in 0.15s forwards;
    animation: success ease-in 0.15s forwards;
    animation-delay: 2.5s;
}

.btn-avc.animate.error {
    position: relative;
    -webkit-animation: vibrate ease-in 0.5s forwards;
    animation: vibrate ease-in 0.5s forwards;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.btn-avc.animate.error:before {
    color: #fff;
    position: absolute;
    content: "!";
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-animation: error ease-in 0.5s forwards;
    animation: error ease-in 0.5s forwards;
    animation-delay: 2.5s;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    90% {
        transform: translate(-50%, -50%) rotate(1080deg) scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    98% {
        -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(1);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(0);
    }
}

@keyframes success {
    from {
        transform: translate(-50%, -50%) rotate(0) scale(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
}

@-webkit-keyframes success {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0) scale(0);
    }
    to {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
}

@keyframes error {
    from {
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        background-color: #f44336;
    }
}

@-webkit-keyframes error {
    from {
        -webkit-transform: translate(-50%, -50%) scale(0);
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1);
        background-color: #f44336;
    }
}

@keyframes vibrate {
    0%,
    30%,
    60%,
    85%,
    100% {
        left: 0;
        background-color: #f44336;
    }
    10%,
    40%,
    90%,
    70% {
        left: -2px;
        background-color: #f44336;
    }
    20%,
    50%,
    80%,
    95% {
        left: 2px;
        background-color: #f44336;
    }
}


/* -------------------------------------------------------------
     FOOTER
 ------------------------------------------------------------- */

.footer-area {
    padding-top: 0px;
}


/* -------------------------------------------------------------
     video-container
 ------------------------------------------------------------- */

#video-container {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    z-index: 1;
}

#video-container video,
.video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

#video-container .video-overlay {
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
}

#video-container .video-content {
    z-index: 99999;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

#video-container .video-content .inner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
}

#video-container .video-content .inner span {
    font-size: 17px;
    display: block;
    margin: 0px;
    color: #fff;
}

#video-container .video-content .inner h2 {
    margin-bottom: 0px;
    margin-top: 14px;
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

#video-container .video-content .inner a {
    margin-top: 30px;
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 56px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
    font-size: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
}


/* -------------------------------------------------------------
    Responsive
 ------------------------------------------------------------- */

@media only screen and (max-width: 575px) {
    .banner-slider .banner-slider-item .banner-inner .banner-title {
        font-size: 24px !important;
        line-height: 1.5;
    }
    .single-package-included {
        padding: 20px;
        margin: 15px !important;
    }
    .video-popup-wrap .thumb {
        height: 300px;
    }
    #banner-title-h4 {
        font-weight: 600 !important;
        font-size: 20px !important;
    }
    #banner-title-h5 {
        font-weight: 400 !important;
        font-size: 16px !important;
    }
    #flashdeal_img{
        width:100% !important;
    }
    #tc_text{
        font-size: 12px;
        line-height:1.25;
    }
    #smart_treveller{
        padding: 30px 30px !important;
    }
    .show-desktop{
        display: none;
    }
    .perks-hightlight {
        margin-top:30px !important;
        padding: 15px 30px !important;
        border-radius: 25px !important;
    }

    .pd-top-112 {
        padding-top: 0px !important;
    }

}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-slider .banner-slider-item .banner-inner .banner-title {
        font-size: 24px !important;
        line-height: 1.5;
    }
    .video-popup-wrap .thumb {
        height: 300px;
    }
    #tc_text{
        font-size: 12px;
        line-height:1.25;
    }
    #flashdeal_img{
        width:100% !important;
    }
    /* #banner-title-h4{
		font-weight: 600 !important;
        font-size: 30px !important;
	}
	#banner-title-h5{
		font-weight: 400 !important;
        font-size: 20px !important;
	} */
    #smart_treveller{
        padding: 30px 30px !important;
    }
    .show-desktop{
        display: none;
    }
    .pd-top-112 {
        padding-top: 0px !important;
    }

}
@media only screen and (min-width: 767px)  and (max-width: 900px){
    .banner-slider .banner-slider-item .banner-inner .banner-title {
        font-size: 24px !important;
        line-height: 1.5;
    }
    #banner-title-h4 {
        font-weight: 600 !important;
        font-size: 24px !important;
    }
    #banner-title-h5 {
        font-weight: 400 !important;
        font-size: 22px !important;
    }
    #flashdeal_img{
        width:450px !important;
    }

    /* #extra-com-2{
        padding-bottom:70px !important;
    } */
    #smart_traveller{
        padding:60px 20px;
    }
    .show-desktop{
        display: none;
    }
    #com-2{
        padding-bottom:57px !important;
    }
    #smart_treveller{
        padding: 30px 30px !important;
    }
    #extra-com-2{
        padding-bottom:25px !important;
    }
}
@media only screen and (min-width: 900px) and (max-width: 1300px) {
    .banner-slider .banner-slider-item .banner-inner .banner-title {
        font-size: 24px !important;
        line-height: 1.5;
    }
    #banner-title-h4 {
        font-weight: 600 !important;
        font-size: 24px !important;
    }
    #banner-title-h5 {
        font-weight: 400 !important;
        font-size: 22px !important;
    }
    #flashdeal_img{
        width:450px !important;
    }
    /* #extra-com-2{
        padding-bottom:45px !important;
    } */

    .show-mobile{
        display: none;
    }
    #extra-com-2{
        padding-bottom:25px !important;
    }
    #smart_treveller{
        padding: 50px 30px !important;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1444px) {
    .banner-slider .banner-slider-item .banner-inner .banner-title{
        font-size: 30px !important;
        line-height: 1.5;
    }

    #banner-title-h4 {
        font-weight: 600 !important;
        font-size: 24px !important;
    }
    #banner-title-h5 {
        font-weight: 400 !important;
        font-size: 21px !important;
    }
    #flashdeal_img{
        width:450px !important;
    }

    .show-mobile{
        display: none;
    }

    #extra-com-2{
        padding-bottom:25px !important;
    }
    #smart_treveller{
        padding: 50px 30px !important;
    }
    /* #extra-com-1{
        padding-bottom:43px !important;
    } */

    .half-icon-box .wt-title {

        font-size: 18px;
    }

    h4{
        font-size: 18px;
    }


}


@media only screen and (min-width: 1445px) and (max-width: 1680px) {
    .banner-slider .banner-slider-item .banner-inner .banner-title {
        font-size: 36px !important;
        line-height: 1.5;
    }
    #banner-title-h4 {
        font-weight: 600 !important;
        font-size: 28px !important;
    }
    #banner-title-h5 {
        font-weight: 400 !important;
        font-size: 24px !important;
    }
    #flashdeal_img{
        width:450px !important;
    }
    /* #extra-com-2{
        padding-bottom:29px !important;
    } */
    #smart_treveller{
        padding: 50px 30px !important;
    }
    .show-mobile{
        display: none;
    }

}

@media only screen and (min-width: 1681px) and (max-width: 1900px) {
    .banner-slider .banner-slider-item .banner-inner .banner-title {
        font-family: 'Raleway', sans-serif !important;
        font-weight: 500 !important;
        font-size: 34px !important;
        line-height: 1.5;
    }
    #banner-title-h3 {
        font-weight: 600 !important;
        font-size: 38px !important;
    }
    #banner-title-h4 {
        font-weight: 600 !important;
        font-size: 33px !important;
    }
    #banner-title-h5 {
        font-weight: 400 !important;
        font-size: 26px !important;
    }
    #flashdeal_img{
        width:450px !important;
    }
    #extra-com-2{
        padding-bottom:43px !important;
    }
    #smart_treveller{
        padding: 50px 30px !important;
    }
    .show-mobile{
        display: none;
    }


}
@media only screen and (min-width: 1900px) and (max-width: 2048px)  {
    .banner-slider .banner-slider-item .banner-inner .banner-title {
        font-family: 'Raleway', sans-serif !important;
        font-weight: 500 !important;
        font-size: 34px !important;
        line-height: 1.5;
    }
    #banner-title-h3 {
        font-weight: 600 !important;
        font-size: 38px !important;
    }
    #banner-title-h4 {
        font-weight: 600 !important;
        font-size: 33px !important;
    }
    #banner-title-h5 {
        font-weight: 400 !important;
        font-size: 26px !important;
    }
    #flashdeal_img{
        width:450px !important;
    }
    /* #extra-com-1{
        padding-bottom:30px !important;
    }*/
    #extra-com-2{
        padding-bottom:24px !important;
    }
    .show-mobile{
        display: none;
    }
    .half-icon-box .wt-title {

        font-size: 24px;
    }
}


@media only screen and (min-width: 2049px)  {
    .show-mobile{
        display: none;
    }
    #smart_treveller{
        padding:150px 30px;
    }
    .half-icon-box .wt-title {

        font-size: 24px;
    }

    /* #extra-com-2{
        padding-bottom:43px !important;
    } */
}
