/* Fonts */
/* Satoshi */
@import url("../fonts/satoshi/stylesheet.css");
/* font-family: 'Satoshi'; */

/* Playfair Display */
@import url("../fonts/playfair-display/stylesheet.css");
/* font-family: 'Playfair Display'; */

/* Season */
@import url("../fonts/season/stylesheet.css");
/* font-family: 'Season'; */


/* Other common Css Start */
:root {
    --skinColor: #EF5927;
    --whiteColor: #FFF;
    --blackColor: #000;
    --secondaryColor: #333333;
    --secondaryColor2: #181818;
}

.mb-40px{
    margin-bottom: 40px !important;
}

/* Button */
.wch-sm-btn-skin{
    border: 0;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    overflow: hidden;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    border-radius: 77.7px;
    background-image: -webkit-gradient(linear, left top, right top, from(#EF5927), color-stop(50%, #FAA917), to(#EF5927));
    background-image: -o-linear-gradient(left, #EF5927 0%, #FAA917 50%, #EF5927 100%);
    background-image: linear-gradient(90deg, #EF5927 0%, #FAA917 50%, #EF5927 100%);
    padding: 12px 22px;
    color: var(--whiteColor);
    text-align: center;
    /* font-family: 'Satoshi'; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-size: 200% 100%;
}
.wch-sm-btn-skin:hover{
    color: var(--whiteColor);
    background-image: -webkit-gradient(linear, left top, right top, from(#EF5927), color-stop(50%, #FAA917), to(#EF5927));
    background-image: -o-linear-gradient(left, #EF5927 0%, #FAA917 50%, #EF5927 100%);
    background-image: linear-gradient(90deg, #EF5927 0%, #FAA917 50%, #EF5927 100%);
    background-position: 100% 0;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.wch-sm-btn-skin:active{
    color: var(--whiteColor) !important;
    background-image: -webkit-gradient(linear, left top, right top, from(#EF5927), color-stop(50%, #FAA917), to(#EF5927)) !important;
    background-image: -o-linear-gradient(left, #EF5927 0%, #FAA917 50%, #EF5927 100%) !important;
    background-image: linear-gradient(90deg, #EF5927 0%, #FAA917 50%, #EF5927 100%) !important;
    background-position: 100% 0;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.wch-sm-btn-skin svg{
    display: block;
}
/* Other common Css End */



/* Footer Css Start ***
*********************/
.wch-footer-section{
    background-color: var(--skinColor);
    padding-bottom: 24px;
    overflow-x: clip;
    margin-top: 53px;
    position: relative;
}
.wch-footer-section::after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    max-width: 860px;
    width: 100%;
    aspect-ratio: 860 / 132;
    background: url(../images/footer-shape.png) no-repeat scroll center center / cover;
}
.footer-typo-text{
    max-width: calc(1512px + 74px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -53px;
    margin-bottom: 14px;
}
.footer-typo-text .text{
    width: 100%;
}

.footer-content-area{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
    row-gap: 30px;
}

.footer-left-area{
    padding-bottom: 113px;
}
.footer-info-text{
    color: var(--whiteColor);
    /* font-family: 'Satoshi'; */
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 392px;
    margin-bottom: 55px;
}
.ft-socail-text{
    color: var(--whiteColor);
    /* font-family: 'Satoshi'; */
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.ft-social-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15.37px;
}
.ft-social-link{
    border-radius: 50%;
    border: 1.822px solid #F9FAFB;
    height: 58px;
    width: 58px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58px;
            flex: 0 0 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.ft-social-link:hover{
    background-color: var(--whiteColor);
    border-color: var(--whiteColor);
}
.ft-social-link path{
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.ft-social-link:hover path{
    fill: #012F2C;
}

.footer-copyright-text{
    color: var(--whiteColor);
    /* font-family: 'Satoshi'; */
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.footer-right-area{
    margin-top: 28px;
}
/* nav */
.footer-navbar-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 34px;
       -moz-column-gap: 34px;
            column-gap: 34px;
    row-gap: 18px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 43px;
}
.footer-nav-link{
    color: var(--whiteColor);
    /* font-family: 'Satoshi'; */
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.footer-nav-link:hover{
    color: rgba(255, 255, 255, 0.70);
}

.ft-newsletter-form{
    max-width: 500px;
    width: 100%;
    margin-left: auto;
}
.newsletter-input-wrap{
    width: 100%;
    padding: 40px 0 40px 28px;
    position: relative;
    z-index: 1;
}
.newsletter-input-wrap::after{
    z-index: -1;
    position: absolute;
    content: "";
    width: 500%;
    height: 100%;
    background: var(--whiteColor);
    top: 0;
    left: 0;
}
.ft-newsletter-label{
    color: var(--blackColor);
    /* font-family: 'Satoshi'; */
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 0;
    position: absolute;
    top: 8px;
    left: 0;
    -webkit-transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
    -o-transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}
.ft-newsletter-input{
    border: 0;
    border-bottom: 4.807px solid var(--blackColor);
    border-radius: 0;
    color: var(--blackColor);
    /* font-family: 'Satoshi'; */
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    padding: 8px 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-color: transparent;
}
.ft-newsletter-input:hover{
    border-color: var(--secondaryColor2);
}
.ft-newsletter-input:focus{
    border-color: var(--secondaryColor2);
    background-color: transparent;
    color: var(--blackColor);
}
.ft-newsletter-input:not(:-moz-placeholder-shown) + .ft-newsletter-label{
    top: -14px;
    font-size: 14px;
}
.ft-newsletter-input:not(:-ms-input-placeholder) + .ft-newsletter-label{
    top: -14px;
    font-size: 14px;
}
.ft-newsletter-input:focus + .ft-newsletter-label,
.ft-newsletter-input:not(:placeholder-shown) + .ft-newsletter-label{
    top: -14px;
    font-size: 14px;
}
.newsletter-email-wrap{
    margin-bottom: 40px;
}


/* Responsive */
@media all and (max-width: 1399px){
    .footer-info-text {
        font-size: 25px;
    }
    .ft-socail-text {
        font-size: 23px;
    }
    .footer-nav-link {
        font-size: 26px;
    }
    .wch-footer-section::after {
        max-width: 665px;
    }
    .footer-typo-text {
        top: -40px;
    }
}
@media all and (max-width: 1199px){
    .footer-content-area {
        -webkit-column-gap: 50px;
           -moz-column-gap: 50px;
                column-gap: 50px;
    }
    .ft-newsletter-form {
        max-width: 450px;
    }
    .footer-info-text {
        font-size: 23px;
    }
    .ft-socail-text {
        font-size: 22px;
    }
    .footer-nav-link {
        font-size: 24px;
    }
    .wch-footer-section::after {
        max-width: 565px;
    }
    .ft-newsletter-label{
        font-size: 20px;
    }
    .ft-newsletter-input{
        font-size: 18px;
    }
    .footer-navbar-nav{
        row-gap: 16px;
    }
    .footer-typo-text {
        top: -32px;
    }
}
@media all and (max-width: 991px){
    .footer-content-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .footer-info-text {
        font-size: 22px;
        max-width: 100%;
    }
    .footer-left-area {
        padding-bottom: 0px;
    }
    .ft-socail-text {
        font-size: 20px;
    }
    .footer-nav-link {
        font-size: 23px;
    }
    .newsletter-input-wrap {
        padding: 40px 28px 40px 28px;
    }
    .ft-newsletter-form {
        max-width: 100%;
        margin-left: 0;
    }
    .wch-footer-section::after{
        display: none;
    }
    .footer-typo-text {
        top: -24px;
    }
}
@media all and (max-width: 767px){
    .footer-info-text {
        font-size: 21px;
        margin-bottom: 30px;
    }
    .footer-right-area {
        margin-top: 10px;
    }
    .footer-navbar-nav {
        margin-bottom: 24px;
    }
    .ft-socail-text {
        font-size: 19px;
    }
    .footer-nav-link {
        font-size: 22px;
    }
    .ft-newsletter-label{
        font-size: 19px;
    }
    .ft-newsletter-input{
        font-size: 17px;
    }
    .footer-typo-text {
        top: -18px;
    }
    .footer-right-area {
    	margin-bottom: 54px;
    }
}
@media all and (max-width: 575px){
    .footer-copyright-text {
        font-size: 19px;
    }

    .footer-info-text {
        font-size: 20px;
    }
    .ft-socail-text {
        font-size: 18px;
    }
    .footer-nav-link {
        font-size: 20px;
    }
    .ft-newsletter-label{
        font-size: 18px;
    }
    .ft-newsletter-input{
        font-size: 16px;
    }
    .footer-typo-text {
        top: -10px;
    }
}
/* Footer Css Start ***
*********************/

/* Compact modern Watch footer */
.wch-footer-section {
    margin-top: 56px;
    padding: 42px 0 0;
    overflow: hidden;
    background: #f4f5f6;
    border-top: 1px solid #e7e9eb;
    color: #30343a;
}
.wch-footer-section::before,
.wch-footer-section::after { display: none; }
.watch-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr .85fr 1.35fr;
    gap: 52px;
    padding-bottom: 34px;
}
.watch-footer-column h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}
.watch-footer-logo {
    display: inline-flex;
    align-items: center;
    height: 38px;
    margin-bottom: 16px;
}
.watch-footer-logo img {
    display: block;
    width: auto;
    max-width: 155px;
    max-height: 38px;
    object-fit: contain;
    object-position: left center;
}
.watch-footer-about > p,
.watch-footer-newsletter > p {
    max-width: 340px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.65;
}
.watch-footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.watch-footer-links a {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.35;
    transition: color .2s ease, transform .2s ease;
}
.watch-footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}
.watch-footer-socials {
    display: flex;
    gap: 8px;
}
.watch-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .42);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .2s ease;
}
.watch-footer-socials a:hover {
    border-color: #ef5927;
    background: #ef5927;
    color: #fff;
    transform: translateY(-2px);
}
.watch-footer-form-row {
    display: flex;
    height: 42px;
    overflow: hidden;
    border: 1px solid #dfe2e5;
    border-radius: 7px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.watch-footer-form-row:focus-within {
    border-color: #ef5927;
    box-shadow: 0 0 0 3px rgba(239,89,39,.1);
}
.watch-footer-form-row input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 14px;
    color: #30343a;
    font-size: 13px;
}
.watch-footer-form-row input::placeholder { color: #a1a6ad; }
.watch-footer-form-row button {
    width: 46px;
    flex: 0 0 46px;
    border: 0;
    background: #ef5927;
    color: #fff;
    font-size: 15px;
    transition: background .2s ease;
}
.watch-footer-form-row button:hover { background: #d7471c; }
.watch-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
}
.watch-footer-bottom p { margin: 0; }
.watch-footer-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
}
.watch-footer-bottom span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef5927;
}
@media (max-width: 991px) {
    .watch-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px 48px; }
}
@media (max-width: 575px) {
    .wch-footer-section { margin-top: 42px; padding-top: 34px; }
    .watch-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px 22px; padding-bottom: 28px; }
    .watch-footer-about, .watch-footer-newsletter { grid-column: 1 / -1; }
    .watch-footer-column h3 { margin-bottom: 13px; font-size: 15px; }
    .watch-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; min-height: 72px; gap: 5px; }
}