/* table of content - start
====================================================================================================

Project Name 	  :  Dodo digital product
File 			  : CSS Base
Version 		  :  1.0.0
Author 			  :  Deveable
Developer		  :  uzzal Kumar 
Author URL    :  https://www.templatemonster.com/authors/deveable/

==================================================
# Default Settings
    01 - import fonts
    02 - global css

# Sections
    03 - header section
	04 - hero section
	05 - features-section
	06 - about-section
	07 - why-section
	08 - products section
	09 - faq section 
	10 - testimonial section
	11 - contact section
	12 - footer area
*/

/*================================================
01 - import fonts
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/*================================================
02 - global css
==================================================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;

}
body{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1;
    overflow: hidden;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}
/* section{
  padding: 4.8rem 5%;
} */

.container{
    max-width: 120rem;
    margin: 0 auto;
}
p{
    font-size: 1.6rem;
    line-height: 1.6;
    color: #4D4D4D;
}
.heading-box{
    text-align: center;
}
.box-size{
    width: 76rem;
    margin: 0 auto;
}
.sub-heading{
    position: relative;
    color: #4D4D4D;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.sub-heading::before{
    position: absolute;
    top: -36%;
    left: 44%;
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    background: #FC5156;
    border-radius: 50%;
    padding: 1rem;
    z-index: -1;
}
.heading{
    color: #000;
    font-size: 4.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.btn:link,
.btn:visited{
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    border: 0.1rem solid #fff;
    display: inline-block;
}
.grid{
    display: grid; 
}
.grid-col-2{
    grid-template-columns: 2fr 1fr;
    gap: 2.4rem;
}
.grid-cols-2{
    grid-template-columns: repeat(2,1fr);
    gap: 2.4rem;
}
.grid-cols-3{
    grid-template-columns: repeat(3,1fr);
    gap: 2.4rem;
}
/*================================================
03 - header css
==================================================*/
.header{
    position: relative;
    padding: 6.4rem 0;
    z-index: 1;
}
.header .header-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.site-logo{
    padding-left: 4.8rem;
}
.site-logo .logo-white,
.site-logo .logo-black{
    height: 3.5rem;
}
.header .logo-black{
    display: none;
}
.navbar .navbar-list{
    list-style: none;
    display: flex;
    align-items: center;  
    gap: 4.8rem;  
}
.navbar .navbar-list .main-nav-link{
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
}
.navbar .navbar-list .main-nav-link:hover{
    color: #FC5156;
}

/* MOBILE-NAVIGATION */
.btn-mobile-nav{
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}
.icon-mobile-nav{
    height: 4.8rem;
    width: 4.8rem;
    color: #fff;
}
.icon-mobile-nav[name="close-outline"]{
    display: none;
}

/* STICKY NAVIGATION */
.sticky{
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    padding-top: 3.2rem;
    padding-bottom: 6.4rem;
    background: rgba(255, 255, 255, 0.97);
    z-index: 9999;
    box-shadow: 0 1.2rem 3.2rem rgb(0, 0, 0, 0.03);
}

.sticky .logo-white{
    display: none;
}

.sticky .logo-black{
    display: block;
}

.sticky .hero-section{
    margin-top: 9.6rem;
}

/*================================================
04 - hero-section css
==================================================*/
.hero-section{
    position: relative;
    height: 50rem;
}
.shape_01,
.shape_02,
.shape_03,
.shape_04,
.shape_05,
.shape_06{
    position: absolute;
    z-index: -1;
}
.shape_01{
    top: -16rem;
    left: 2rem;
    height: 45rem;
}
.shape_02{
    top: 54%;
    left: 10%;
    height: 20rem;
}
.shape_03{
    height: 30rem;
    top: 22%;
    right: 23%;
    z-index: 1;
}
.shape_04{
    height: 30rem;
    top: 20.5%;
    right: 22.5%;
}
.shape_05{
    height: 45rem;
    top: -4%;
    right: 6%;
    z-index: -2;
}
.shape_06{
    height: 20rem;
    top: 80%;
    left: 5%;
}
.hero-heading{
    margin: 0 6rem;
}
.heading-primary{
    font-size: 4.4rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: none;
    margin-bottom: 1.2rem;
}

.text-box {
    display: grid;
    grid-template-columns: 15rem 1fr;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 74%;
}

.text-box .hero-text{
    padding-left: 4.8rem;
}
.hero-image img{
    height: 30rem;
    position: absolute;
    top: 23%;
    right: 27%;
    z-index: 2;
}
.hero-btn:link,
.hero-btn:visited{
    padding: 1.2rem 1rem;
}
.hero-btn:hover{
   background: #FFFFFF;
   color: #000;
}

/*================================================
05 - features-section css
==================================================*/
.features{
    padding: 9.6rem 0;
}
.shape_0{
    position: absolute;
    left: 45%;
    z-index: -1;
 }
 .feature-box{
    padding-top: 6.4rem;
 }
 .feature-box .row{
    padding: 3.2rem;
    background: #FFE3E4;
    box-shadow: 0 0.5rem 0.5rem rgba(0,0,0,.1);
 }
 .feature-box .row:hover{
    background: #FC5156;
 }
 .feature-box .row:hover h3,
 .feature-box .row:hover p{
    color: #fff;
 }
 .feature-box .row .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
 }
 .feature-box .row .box h3{
    font-size: 2.4rem;  
 }
 .feature-box .row .box .icons .feature-icon{
    font-size: 2.4rem;
    color: #FC5156;
    text-align: center;
    width: 2.4rem;
    height: 2.4rem;
    background: #fff;
    padding: 1.2rem;
 }

 /*================================================
06 - about-section css
==================================================*/
.about{
    position: relative;
    padding-bottom: 9.6rem;
}
.about .pos1::before{
    position: absolute;
    top: -36%;
    left: 37%;
}
.about .row{
    padding-top: 3.2rem;
}
.about-image{
    text-align: center;
    padding-top: 2.4rem;
    position: relative;
}
.about-image img{
    height: 30rem;
}
.about_shape_01,
.about_shape_02{
    position: absolute;
    height: 30rem;
    z-index: -1;
}
.about_shape_01{
    top: 18%;
    left: 13%;
}
.about_shape_02{
    top: 15%;
    left: 13%;
}
.about-content{
    padding-bottom: 12.8rem;
}
.about-content P{
    margin-bottom: 3.2rem;
}
.about-content .list{
    list-style: none;
}
.about-content .list .list-item{
    margin-bottom: 1.8rem;
    font-size: 1.8rem;

    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.about-content .list .list-item i{
    padding: 0.5rem;
    background: #FFE2DE;
    font-size: 1.6rem;
    text-align: center;
    color: #FD5A22;
    border-radius: 0.5rem;
}
.about_bg_shape{
    position: absolute;
    height: 20rem;
    top: 38%;
    right: 2rem;
}
.about-image-box{
   position: relative;
   background-image:linear-gradient(to right bottom, rgba(252, 81, 87, 0.26), rgba(252, 81, 87, 0.37)), url(../img/about/about_img.png);
   background-size: cover;
   height: 40rem;
   clip-path: polygon(0 0, 100% 39%, 100% 100%, 0% 100%);
}
.about-icons .play-btn{
    position: absolute;
    top: 57%;
    left: 47%;
    width: 3.2rem;
    height: 3.2rem;
    background: #FC5156;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    padding: 1.2rem;
    cursor: pointer;
}
.about-icons::after{
    position: absolute;
    content: '';
    top: 55%;
    left: 46.4%;
    width: 4.8rem;
    height: 4.8rem;
    background: rgba(253, 116, 120, 0.747);
    border-radius: 50%;
    padding: 1.2rem;
    z-index: -1;
}
.about-icons::before{
    position: absolute;
    content: '';
    top: 53%;
    left: 45.7%;
    width: 6.4rem;
    height: 6.4rem;
    background: rgba(253, 151, 154, 0.534);
    border-radius: 50%;
    padding: 1.2rem;
    z-index: -1;
}

/* video play */
.videos{
    position: absolute;
    width: 100%;
    height: 41rem;
    top: 0;
    left: 0;
}

.videos .video-container{
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999;
}
.videos .video-container .play-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.videos .video-container span{
    font-size: 6rem;
    position: absolute;
    top: 15.5rem;
    right: 3rem;
    color: #fff;
    cursor: pointer;
}


 /*================================================
07 - why-section css
==================================================*/
.why{
    position: relative;
    padding-bottom: 9.6rem;
}
.why_bg {
    position: absolute;
    height: 85rem;
    top: -64%;
    left: 5%;
    opacity: 0.1;
    z-index: -1;
}
.why .pos-2::before{
    position: absolute;
    top: -44%;
    left: 37%;
}

 /*================================================
08 - products section css
==================================================*/
.product{
    position: relative;
    padding: 9.6rem 0;
}
.product .pos-3::before{
    left: 36%;
    top: -38%;
}
.products-heading{
    padding-top: 3.2rem;
    margin-bottom: 3.2rem;
}
.products-box{
    width: 40rem;
    padding: 2.4rem;
    background: #FFFFFF;
    border: .1rem solid #FC5156;
    box-shadow: 0 0.5rem 0.5rem rgba(0,0,0,.1);
    margin-top: 3.2rem;
}
.product-image{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
}
.product-image img{
    height: 20rem;
}
.product-image .price{
    align-self: flex-start;
    font-size: 3.2rem;
    color: #FD5A22;
    line-height: 1.5;
    font-weight: 500;
}
.products-content h3{
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin-bottom: 1.8rem;
}
.products-content p{
    font-size: 1.4rem;
    line-height: 1.7;
    color: #ABABAB;
    text-align: center;
}
.btn-box{
    text-align: center;
    margin-top: 3.2rem;
}
.btn-now{
    background: #FC5156;
    padding: 1.2rem 3.6rem;
    border: none;
    text-align: center;
}
.btn-now:hover{
    background: #FFFFFF;
    color: #000;
    box-shadow: inset 0 0 0 4px #FC5156 ;
 }
 .swiper-paginations{
    text-align: center;
    margin-top: 2.4rem;
 }
 /*================================================
09 - faq section css
==================================================*/
.faq {
    position: relative;
    padding-bottom: 9.6rem;
}
.faq-heading{
    margin-bottom: 3.2rem;
}
.faq-heading .sub-heading,
.faq-heading .heading{
    text-align: start;
}
.faq .pos-4::before{
    top: -39%;
    left: -1%;
}
.faq-box{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.2rem;
}
.accoridian{
    background-color: #FC5156;
    color: #fff;
    cursor: pointer;
    width: 100%;
    padding: 1.8rem;
    font-size: 1.6rem;
    border: none;
    outline: none;
    text-align: left;
    transition: 0.4s;
}
.accoridian i{
    margin-right: 1rem;
}
.accoridian::after{
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.active .accoridian::after{
    content: "\2212";
}
.panel{
    padding: 0 1.8rem;
    margin-bottom: 1.6rem;
    max-height: 0;
    background-color: #FC5156;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}  
.faq_content_box.active .panel{
    max-height: 10rem;
}
.panel p{
    font-size: 1.6rem;
    text-transform: none;
    text-align: justify;
    padding: 1.2rem;
    color: #fff;
    
}
.faq-image-box .faq-img{
    position: absolute;
    height: 51rem;
    top: 0;
    left: 61%;
    z-index: -1;
}
.faq-image-box .what-shape {
    position: absolute;
    height: 7rem;
    top: 10%;
    right: 29%;
}
 /*================================================
10 - testimonial section css
==================================================*/
.testimonial {
    position: relative;
    padding: 9.6rem 0;
}
.testimonial .pos-5::before{
    left: 43%;
    top: -46%;
}
.testimonial .shape_round{
    position: absolute;
    height: 20rem;
    top: 24%;
    right: 9%;
}
.review-box{
    position: relative;
    background: #FFE3E4;
    width: 100% !important;
    padding: 4.8rem;
    margin-top: 12.8rem;
    box-shadow:0 .5rem 1rem rgba(0,0,0,.1); 
}
.review-box img{
    position: absolute;
    height: 10rem;
    border-radius: 50%;
    border: 0.2rem solid #FC5156;
    top: -16%;
    left: 46%;
}
.author-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2.4rem;
    border-bottom: .1rem solid #FC5156;
}
.author-details h3{
    font-size: 2.4rem;
    font-weight: 500;
    color: #000;
    margin-bottom: .5rem;
}
.author-details p{
    font-size: 1.8rem;
}
.starts i{
   font-size: 1.8rem;
   color: #FC5156;
}
.author-text{
    text-transform: none;
    text-align: justify;
    margin-top: 3.2rem;
}
.swiper-pagination-bullet{
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0%;
}
.swiper-pagination-bullet-active{
    background: #FC5156;
}

 /*================================================
11 - contact section css
==================================================*/
.contact {
    padding-top: 12.8rem;
    padding-bottom: 9.6rem;
}
.contact .row{
    position: relative;
}
.contact .row::after{
    position: absolute;
    content: '';
    top: 4%;
    left: 0;
    background-color: #FFE3E4;
    width: 100%;
    height: 100%;
    z-index: -2;
    clip-path: polygon(0 72%, 100% 12%, 100% 100%, 0% 100%);
}
.contact .row::before{
    position: absolute;
    content: '';
    top: -18%;
    left: 0;
    z-index: -3;
    background-color: #FFEEEF;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 75%, 100% 0%, 100% 100%, 0% 100%);
}
.contact .row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
}
.newsletter-box{
    background: rgb(252, 81, 86);
    padding: 4.8rem 3.2rem;
    width: 40rem;
    height: 36rem;
    border: 0.5rem solid rgb(255, 255, 255);
    margin-left: 4.8rem;
    margin-bottom: 4.8rem;
}
.newsletter-box .sub-heading{
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    z-index: 1;
    margin-bottom: 2.4rem;
}
.newsletter-box .pos-6::before{
    background: #ffffff50;
    top: -62%;
    left: -5%;
    z-index: -1;
}
.newsletter-box .heading{
    font-size: 2.4rem;
    color: #fff;
}
.newsletter-box .newsletter-des{
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 3.2rem;
}

.newsletter-box form input{
    padding: 1.2rem;
    font-size: 1.6rem;
    width: 100%;
    background: #FFE3E4;
    border: none;
    outline: .3rem solid #fff;
    margin-bottom: 1.2rem;
}

.newsletter-btn{
    text-align: right;
    padding-right: 2.4rem;
    margin-top: -4.4rem;
}
.newsletter-btn button{
    font-size: 1.6rem;
    color: #fff;
    outline: none;
    background: #FC5156;
    padding: 1.2rem 1rem;
    border: 0.2rem solid #fff;
}
.newsletter-box form button:hover{
    background: #fff;
    color: #000;
}
.row .heading-box{
    margin-right: 12.8rem;
    margin-top: 9.6rem;
}
.row .heading-box .pos-7::before{
    top: -38%;
    left: 32%;
}
.contact-box{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.4rem;
}
.form{
    margin-top: 4.8rem;
}
.form form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}
.form form input,
.form form textarea{
    padding: 1rem;
    font-size: 1.6rem;
    outline: none;
    border: none;
    border-bottom: .1rem solid #000;
}
.form form textarea{
    grid-column: 1/-1;
}
.form form input::placeholder,
.form form textarea::placeholder{
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    color: #ABABAB;
}
.cta-btn-box{
    text-align: center;
    margin-top: 4.8rem;
}
.cta-btn{
    background: #FC5156;
}
.cta-btn:hover{
    background: #FFFFFF;
    color: #000;
    box-shadow: inset 0 0 0 4px #FC5156 ;
 }
.contact-info{
    width: 30rem;
    height: 33rem;
    background: #FFFFFF;
    border: .1rem solid #FC5156;
    padding: 2.4rem;
    margin-top: -1.6rem;
}
.info-box{
    padding-bottom: 1.2rem;
    margin-bottom: 2.4rem;
    border-bottom: .1rem solid #ABABAB;
    text-align: center;
}
.info-box:last-child{
    border: none;
}
.info-box h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2.4rem;
}
.info-box .info-list{
    list-style: none;
    margin-left: 4.8rem;
}
.info-icon{
    width: 1.8rem;
    height: 1.8rem;
    color: #FC5156;
}
.info-box .info-list li{
    font-size: 1.4rem;
    text-transform: lowercase;
    color: #ABABAB;
    margin-bottom: 1.2rem;

    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.info-box .info-list a{
    color: #ABABAB;
}
.info-tittle{
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}
.info-box .info-tittle h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

 /*================================================
12 - footer area css
==================================================*/
.footer {
    position: relative;
    background: #FC5156;
    height: 25rem;
    overflow: hidden;
    padding-top: 6.4rem;
}
.footer::before{
    position: absolute;
    content: '';
    bottom: -22%;
    right: -4%;
    width: 9.6rem;
    height: 9.6rem;
    padding: 2.4rem;
    border-radius: 50%;
    background: #FD7478;
}
.footer-box{
    padding: 3.2rem;
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}
.footer-box img{
    height: 3.5rem;
}
.border-line{
    border-bottom: .1rem solid #fff;
    opacity: 0.3;
    width: 100%;
}
.footer-social-link{
    text-align: center;
    margin-top: 4.8rem;
}
.footer-social-link .copyright-text{
    font-size: 1.6rem;
    letter-spacing: .2rem;
    font-weight: 300;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}
.social-link .fa-brands{
    font-size: 2.4rem;
    color: #FFE3E4;
    margin-left: 1rem;
    cursor: pointer;
}
.social-link .fa-brands:hover{
    transform: translateY(-1rem);
}