/*

Theme Name : Tasting Spoon

//========== INDEX ==========//
1.Common CSS
2.Preloader CSS
3.Banner CSS
4.About Us CSS
5.Our Sources & Aim CSS
6.Contact Us CSS
7.Responsive CSS
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*========== Common CSS Start ==========*/
:root {
    --primary_color: #8b0810;
    --secondary_color: #f4e7d6;
    --dark_color: #361d0d;
    --common_color: #555555;
    --gray_color: #EAEAE7;
    --white_color: #ffffff;
    --black_color: #000000;
    --body_font:
    'Poppins', sans-serif;
    --title_font:
    'Lobster', sans-serif;
}

body {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--common_color);
    font-family: var(--body_font);
    background: var(--secondary_color);
}

p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title_font);
    color: var(--dark_color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul,
ol {
    margin: 0;
    padding-left: 20px;
}

.for-des {
    display: block;
}

.for-mob {
    display: none;
}

main {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    z-index: 10;
}

img {
    max-width: 100%;
    height: auto;
}

.back-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-wraper {
    width: 100vw;
    height: 100vh;
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

.main-wraper::-webkit-scrollbar {
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.main-wraper::-webkit-scrollbar-thumb {
    background: var(--primary_color);
}

.main-wraper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.5);
}

.common-sec {
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.common-sec.back-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary_color);
    z-index: 1;
}

.bg-img-slider {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 50vw;
    height: 100vh;
    z-index: 0;
}

.bg-img {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    animation: zoom 10s linear infinite alternate;
    z-index: 0;
}

@keyframes zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.common-sec .container-fluid {
    position: relative;
    z-index: 10;
    padding-inline: 100px;
}

.common-sec-wp {
    position: relative;
}

.sec-title {
    font-size: 60px;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--primary_color);
    margin-bottom: 50px;
    font-weight: normal;
    letter-spacing: 0.1rem;
    position: relative;
}

.sec-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary_color);
}

.sec-slide {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
    /* opacity: 0; */
    transition: 0.3s;
    z-index: 20;
}

.sec-slide:hover {
    opacity: 1;
}

.sec-slide.prev-slide {
    left: 0;
    justify-content: flex-start;
    /* background: linear-gradient(to left, transparent, rgba(0,0,0,1)); */
}

.sec-slide.next-slide {
    right: 0;
    justify-content: flex-end;
    /* background: linear-gradient(to right, transparent, rgba(0,0,0,1)); */
}

.sec-slide a {
    width: 60px;
    height: 60px;
    background: var(--white_color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: var(--primary_color);
    border: 2px solid var(--white_color);
    transition: 0.3s;
}

.sec-slide a:hover {
    background: var(--primary_color);
    color: var(--white_color);
}

.sec-slide a i {
    position: relative;
    left: 3px;
    animation: move 0.6s linear infinite alternate;    
}

@keyframes move {
    from {
        position: relative;        
        left: -3px;
    }
    to {
        position: relative;        
        left: 3px;
    }
}
/*========== Common CSS End ==========*/

/*========== Preloader CSS Start ==========*/
body.fixed {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
}

.preloader-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 500px;
    max-width: 70%;
    overflow: hidden;
}

.preloader-box img {
    width: 100%;
}
/*========== Preloader CSS End ==========*/

/*========== Banner CSS Start ==========*/
#toast {
    display: none;
}
.common-box {
    text-align: center;
}

.common-box img {
    max-width: 500px;
    width: auto;
    height: auto;
    max-height: 45vh;
    object-fit: contain;
    object-position: center;
    margin-bottom: 40px;
}

.common-box p {
    color: var(--dark_color);
    font-weight: 500;
}

.common-sec.banner {
    --space : 20vh;
    padding-bottom: var(--space);
}

.banner-coffee-img {
    position: absolute;
    top: calc(100% - var(--space));
    left: 0;
    width: 100%;
    height: var(--space);
    background-size: 115vh;
    background-position: top center;
    background-repeat: repeat;
    z-index: 5;
}
/*========== Banner CSS End ==========*/


/*========== About Us CSS Start ==========*/
.about-content {
    position: relative;
    color: var(--white_color);
}

.about-img {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    z-index: 0;
}

.about-img:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 100%;
    height: 100%;
    background: var(--secondary_color);
    opacity: 1;
    z-index: 0;
}

.about-text {
    position: relative;
    width: 800px;
    max-width: 100%;
    color: var(--dark_color);
    font-weight: 500;
    text-align: center;
    display: block;
    margin: auto;
    z-index: 5;
}

.icon-box-wp {
    position: relative;
    z-index: 5;
}

.icon-box-wp ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.icon-box-wp ul li {
    display: flex;
    gap: 15px;
}

.icon-box-wp ul li .icon {
    width: 80px;
    height: 80px;
    background: var(--white_color);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.icon-box-wp ul li .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.icon-box-wp ul li .text {
    align-self: center;
}

.icon-box-wp ul li .text h4 {
    font-size: 20px;
}

.icon-box-wp ul li .text p {
    font-size: 14px;
    line-height: 1.35;
}
/*========== About Us CSS End ==========*/

/*========== Our Sources & Aim CSS Start ==========*/
.sources-aim-content {
    position: relative;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--dark_color);
    font-weight: 500;
}

.sources-aim-content:before,
.sources-aim-content:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translate(0,-50%);
    width: 60vw;
    height: 100vh;
    background: var(--secondary_color);
    z-index: 0;
}

.sources-aim-content:after {
    background-image: url(../images/bg-shape.png);
    background-blend-mode: exclusion;
    background-color: var(--secondary_color);
    background-size: 500px;
    background-repeat: repeat;
    background-position: top left;
    opacity: 0.05;
}

.sources-aim-text {
    position: relative;
    z-index: 5;
}

.sources-aim-text .sec-title {
    color: var(--primary_color);
    margin-bottom: 30px;
}

.sources-aim-text .sec-title:before {
    left: 0;
    transform: none;
    background: var(--primary_color);
}

.sources-aim-img {
    position: relative;
}

.sources-aim-img .back-img {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translate(0,-50%);
    width: calc(50vw - 2px);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gray_color);
    border-inline: 1px solid rgba(0,0,0,0.2);
}

.sources-aim-img .back-img img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    object-position: center;
}
/*========== Our Sources & Aim CSS End ==========*/

/*========== Contact Us CSS Start ==========*/
.common-box.contact-us {
    text-align: left;
}

.common-box.contact-us .sec-title:before {
    transform: none;
    left: 0;
}

.common-box-text ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.common-box-text ul li a {
    font-size: 20px;
    color: var(--dark_color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    word-break: break-word;
    transition: 0.3s;
}

.common-box-text ul li a .icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--white_color);
    color: var(--primary_color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    margin-right: 15px;
    transition: 0.3s;
}

.common-box-text ul li a:hover .icon {
    background: var(--primary_color);
    color: var(--white_color);
}

.enquiry-img {
    text-align: center;
}

.enquiry-img img {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    object-position: center;
}

.copy-right {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 20px;
}

.copy-right p {
    font-size: 14px;
    margin: 0;
}

.copy-right p a {
    color: var(--primary_color);
    font-weight: 600;
    text-decoration: underline;
    transition: 0.3s;
}

.copy-right p a:hover {
    color: var(--dark_color);
}

.common-box.contact-us .sec-title {
    margin-bottom: 30px;
}

.contact-logo img {
    width: 140px;
    margin-bottom: 30px;
}

.manufacture-text {
    margin-top: 30px;
}

.manufacture-text p {
    margin-bottom: 0;
}

.manufacture-text p a {
    color: var(--common_color);
}

.manufacture-text p a:hover {
    color: var(--primary_color);
}
/*========== Contact Us CSS End ==========*/

/*========== Responsive CSS Start ==========*/
@media screen and (min-width: 992px) {
    #toast {
        position: fixed;
        bottom: 80%;
        right: 65px;
        padding: 15px;
        background: var(--white_color);
        border-radius: 10px;
        border: 2px dashed rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 9999;
    }
    #toast p {
        font-weight: bold;
        margin-bottom: 0;
    }
    #toast img {
        position: absolute;
        top: 165%;
        left: 30%;
        width: 200px;
        opacity: 0.5;
        transform: rotate(24deg);
    }
}
@media screen and (max-width: 1499px) {
    .sec-title {
        font-size: 45px;
        line-height: 1.4;
    }
    .common-box img {
        max-width: 450px;
    }
    .bg-moving-shape img {
        max-width: 150px;
        max-height: 150px;  
    }
    .sources-aim-content {
        padding-right: 30px;
        gap: 20px;
    }
    .sources-aim-text .sec-title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .common-sec .container-fluid {
        padding-inline: 60px;
    }
    .sec-slide {
        width: 60px;
        padding: 10px;
    }
    .sec-slide a {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-width: 1px;
    }
    .bg-moving-shape img {
        max-width: 120px;
        max-height: 120px;
    } 
    .sec-title,    
    .sources-aim-text .sec-title {
        font-size: 42px;
        margin-bottom: 25px;
    }   
    .sec-title::before {
        width: 70px;
    }
    .sources-aim-content {
        padding-right: 0px;
    }
    .common-box-text ul {
        gap: 20px;
    }
    .common-box-text ul li a {
        font-size: 16px;
    }
    .common-box-text ul li a .icon {
        width: 35px;
        height: 35px;
    }
    .copy-right {
        margin-top: 50px;
    }
}

@media screen and (min-width: 992px) and (max-height: 800px) {
    p {
        font-size: 14px;
    }
    #toast {
        bottom: 85%;
    }
    .sec-title {
        font-size: 35px;
    }
    .icon-box-wp ul li .text h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .icon-box-wp ul li .text p {
        font-size: 13px;
    }
    .sources-aim-text .sec-title {
        margin-bottom: 10px;
    }
    .icon-box-wp ul li .icon {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
    .icon-box-wp ul,
    .sources-aim-content {
        gap: 15px;
    }
    .contact-logo img {
        width: 100px;
        margin-bottom: 20px;
    }
    .common-box-text ul {
        gap: 20px;
    }
    .common-box-text ul li a {
        font-size: 18px;
    }
    .common-box-text ul li a .icon {
        width: 40px;
        height: 40px;
    }
    .manufacture-text,
    .copy-right {
        margin-top: 20px;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --sec-spacing: 100px;
    }
    .common-sec.banner {
        --space: 120px;
    }
    .banner-coffee-img {
        background-size: 100%;
    }
    .main-wraper {
        width: 100%;
        height: auto;
        overflow: auto;
        overflow-x: hidden;
        display: block;
    }
    .common-sec.back-img:before {
        background: var(--secondary_color);
        opacity: 0.9;
    }
    .common-sec .container-fluid {
        padding-inline: 30px;
        max-width: 800px;
    }
    .common-box img {
        max-width: unset;
        max-height: unset;
        width: 300px;
    }
    .common-sec {
        height: auto;
        display: block;
        padding-block: var(--sec-spacing);
        border-bottom: 5px solid var(--primary_color);
    }
    .common-sec:last-child {
        border-bottom: 0;
    }
    .sec-slide {
        top: auto;
        left: 0;
        width: 100%;
        height: 60px;
        opacity: 1;
        display: none;
    }    
    .sec-slide.next-slide {
        bottom: 0;
        justify-content: center;
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,1));
    }    
    .sec-slide a {
        transform: rotate(90deg);
    }    
    .sec-slide.prev-slide {
        top: 0;
        background: linear-gradient(to top, transparent, rgba(0,0,0,1));
        justify-content: center;
    }
    .sources-aim-content:before, .sources-aim-content:after {
        right: auto;
        left: 50%;
        top: calc(var(--sec-spacing) * -1);
        transform: translate(-50%,0);
        width: 100vw;
        height: calc(100% + var(--sec-spacing));
    }
    .about-img {
        height: 100%;
        background-attachment: unset;
    }
    .bg-moving-shape {
        height: 100%;
    }
    .bg-moving-shape img {
        max-width: 100px;
        max-height: 100px;
    }
    .sources-aim-content {
        padding-right: 0;
        padding-block: var(--sec-spacing);
    }
    .sources-aim-img .back-img {
        position: relative;
        left: 50%;
        top: 0;
        transform: translate(-50%,0);
        width: 101vw;
        height: auto;
        aspect-ratio: 1/1;
        border-inline: 0;
        border-top: 1px solid rgba(0,0,0,0.2);
    }
    .common-sec.about-sec,
    .common-sec.source-aim-sec {
        padding: 0;
    }
    .enquiry-img img {
        max-height: unset;
        width: 400px;
        margin-bottom: 20px;
    }
    .common-box.contact-us {
        text-align: center;
    }
    .common-box.contact-us .sec-title {
        padding-bottom: 10px;
    }
    .common-box.contact-us .sec-title:before {
        transform: translate(-50%);
        left: 50%;
    }
    .common-box-text ul {
        gap: 30px;
    }
    .common-box-text ul li a {
        gap: 10px;
        flex-direction: column;
    }
    .common-box-text ul li a .icon {
        margin-right: 0;
    }
    .copy-right {
        flex-direction: column;
        gap: 10px;
        padding-top: 30px;
        border-top: 2px dashed var(--primary_color);
    }
    .common-sec.contact-sec {
        padding-bottom: 30px;
    }
    .bg-img-slider {
        position: relative;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 101vw;
        height: auto;
        aspect-ratio: 1/0.7;
        overflow: hidden;
    }
    .sources-aim-img .bg-img-slider .back-img {
        aspect-ratio: 1/0.7;
    }
}
@media screen and (max-width: 767px) {
    :root {
        --sec-spacing: 80px;
    }
    .banner-coffee-img {
        background-size: 770px;
    }
    .about-text {
        width: 80%;
    }
    .bg-moving-shape img {
        max-width: 80px;
        max-height: 80px;
    }
    .bg-moving-shape img:nth-child(1) {
        top: 7%;
    }
    .bg-moving-shape img:nth-child(2) {
        right: 5%;
    }
    .bg-moving-shape img:nth-child(3) {
        bottom: 5%;
    }
}
@media screen and (max-width: 575px) {
    :root {
        --sec-spacing: 60px;
    }
    .common-box img {
        width: 45vw;
    }
    .sec-title, .sources-aim-text .sec-title {
        font-size: 40px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    .common-box.contact-us .sec-title {
        padding-bottom: 15px;
    }
    .sources-aim-content {
        gap: 40px;
    }  
    .enquiry-img img {
        width: 300px;
    }  
    .about-text {
        width: 100%;
    }
    .bg-moving-shape img:nth-child(1) {
        top: 2%;
        left: 2%;
    }  
    .bg-moving-shape img:nth-child(2) {
        right: 2%;
        top: 2%;
    }
    .bg-moving-shape img:nth-child(3) {
        bottom: 2%;
        left: 2%;
    }
    .bg-moving-shape img:nth-child(3) {
        bottom: 2%;
        right: 2%;
    }   
    .copy-right p {
        font-size: 13px;
    }   
}
@media screen and (max-width: 400px) {
    .common-sec .container-fluid {
        padding-inline: 15px;
    }
    .common-box img {
        width: 50vw;
    }
    .bg-moving-shape img {
        max-width: 60px;
        max-height: 60px;
    }
    .icon-box-wp ul li .icon {
        width: 65px;
        height: 65px;
        padding: 12px;
    }
}
/*========== Responsive CSS End ==========*/