@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");

:root {
    --clr_first: hsl(112, 12%, 35%);
    --clr_second:hsl(26, 69%, 83%);
    /* --clr_second:#C2996A; */
    
    --body_bg_clr: hsl(40, 100%, 98%);
    --clr_text: hsl(112, 11%, 30%);
    --clr_underline:hsl(26, 85%, 60%);
    --menu_hover_bg_clr: hsl(40, 47%, 93%);
}

*,
::before,
::after {
    margin : 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Le HTML occupe 100% et non 100vh qui ne fonctionne pas toujours sur mobile */
    height: 100%;  
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;

    color: var(--clr_text);
    background-color: var(--body_bg_clr);
    height: 100%;
    /*body est un enfant de html - il fait  100% de son parent (html),
    et permet de coller le footer en bas */
    
    /* méthode Flex */
    display: flex;
    flex-direction: column;
    /* min-height: 100vh; */

    /* ou méthode Grid */
    /* display: grid; */
    /* grid-template-rows: auto 1fr auto; */
    
    /* A cause de l'overlay */
    position: relative;
}


ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

input, textarea, button {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
}

img {
    max-width: 100%;
}

/*******************************************
    HEADER
********************************************/
.header {
    display: flex;
    justify-content: center;
}

.header_wraper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 90%;
    height: 100px;
    position: relative;
}

@media (max-width: 950px) {
    .header_wraper {
        height: 80px;
    }
}

@media (max-width: 700px) {
    .header_wraper {
        height: 60px;
    }
}

/*==================================
    LOGO
===================================*/
.header_logo {
    position: absolute;
    top: 20px;
    left: 0;
}

.header_logo a {
    display: block;
}

.header_logo img {
    width: 180px;
    height: 180px;
}

@media (max-width: 700px) {
    .header_logo {
        top: 5px;
    }
}

@media (max-width: 500px) {
    .header_logo {
        top: 0;
        left: -10px;
    }
}

@media (max-width: 300px) {
    .header_logo img {
        width: 150px;
        height: 150px;
    }
}

/*==================================
    HEADER BURGER
===================================*/
.header_burger {
    display: none;
    width: 1.6rem;
    height: 1.2rem;
    position: relative;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease;
}

.header_burger span {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 2rem;
    background-color: var(--clr_first);
    transition: all 0.3s ease;
}

.header_burger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
}

.header_burger span:nth-child(2) {
    top: 0;
}

.header_burger span:nth-child(3) {
    bottom: 0;
}

.header_burger.active {
    transform: rotate(180deg);
}

.header_burger.active span:nth-child(1) {
    display: none;
}

.header_burger.active span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: white;
}

.header_burger.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    background-color: white;
}

/*==================================
    HEADER NAVBAR
===================================*/
.header_navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    z-index: 89;
}

.header_navbar ul {
    display: flex;
    align-items: center;
}

.header_navbar ul li {
    white-space: nowrap;
    padding: 0 .4rem;
}

.header_navbar ul li a {
    color: var(--clr_first);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    border-radius: .4rem;
    padding: 0.4rem 1.4rem;
    transition: 0.4s;
}

.header_navbar ul li a:hover {
    background-color: var(--menu_hover_bg_clr);
}

.header_navbar ul li a.active {
    background-color: var(--clr_second);
}

@media (max-width: 950px) {
    .header_burger {
        display: block;
    }
    .header_navbar {
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100vh;
        background-color: hsla(112, 12%, 35%, 0.96);
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
        overflow: hidden;
    }
    .header_navbar.visible {
        width: 60%;
    }
    .header_navbar ul {
        flex-direction: column;
        width: 100%;
    }
    .header_navbar ul li {
        text-align: center;
        width: 95%;
        
    }
    .header_navbar ul li a {
        display: block;
        width: 100%;
        height: 100%;
        font-size: 1rem;
        color: white;
        padding: 1.1rem .6rem;
        border-radius: .8rem;
    }
    .header_navbar ul li a:hover {
        background-color: var(--menu_hover_bg_clr);
        color: var(--clr_first);
    }
    .header_navbar ul li a.active {
        background-color: var(--clr_second);
        color: var(--clr_first);
    }

}

@media (max-width: 500px) {
    .header_navbar.visible {
        width: 80%;
    }
}

/*==================================
    FOOTER
===================================*/
.footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: var(--clr_first);
}

.footer .copyright {
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    color: white;
    padding: 2rem 2rem;
}

/*==================================
    MAIN
===================================*/
.main {
    flex: 1 1 auto;
}


/*==================================
    Default title
===================================*/
.page_title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clr_first);
    letter-spacing: 0.06rem;
    position: relative;
}

.page_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 4rem;
    border-bottom: 3px dotted var(--clr_second);
}

/*==================================
    HOME
===================================*/
.home_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1%;
}

/*==================================
    HOME HERO
===================================*/
.home_hero {
    width: 100%;
    height: 600px;  
    overflow: hidden; 
    background-image: url("../img/forest_bckg.svg");
    background-position: center;
    background-size: cover;
    border-radius: .8rem;

    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;

    padding: 0 1rem;
}

.home_hero_title {
    flex: 1; /* la moitié de la largeur */
    max-width: 400px;
}

.home_hero_img {
    flex: 1;
    max-width: 400px;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_hero_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 870px) {
    .home_hero {
        height: 500px; 
        gap: 1.5rem
    }
    .home_hero_title,
    .home_hero_img {
        max-width: 300px;
    }
}

@media (max-width: 530px) {
    .home_hero {
        height: 400px; 
        gap: 1rem
    }
}

@media (max-width: 380px) {
    .home_hero {
        height: 300px; 
    }
}

/*==================================
    HOME PRODUCTS
===================================*/
.home_products {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 1rem 6rem 1rem;
}

.home_products .page_title {
    margin-bottom: 2rem;
}

.home_products_content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 0 1rem;
}

.home_product {
    width: 300px;
    height: 350px;
    border: 2px dashed var(--clr_second);
    border-radius: 10px;
    padding: .2rem;
}

.home_product_frame {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.home_product_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;
}

.home_product_frame:hover img {
    transform: scale(1.04);
}

@media (max-width: 750px) {
    .home_products_content {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
    }                  
}

@media (max-width: 350px) {
    .home_product {
        width: 100%;
        height: 300px;
    }                  
}

/*==================================
    HOME MISSION
===================================*/
.home_mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3rem 1rem;
    border-radius: .8rem;
    background-color: var(--menu_hover_bg_clr);
}

.home_mission .page_title {
    margin-bottom: 1.5rem;
}

.home_mission_content {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: var(--clr_text);
}

.home_mission_content p {
    text-align: center;
}

.home_mission_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--clr_second);
    border-radius: 10rem;
    padding: 1rem;
    margin: 0 1rem;
}

.home_mission_logo img {
    width: 100px;
    height: 100px;
}

@media (max-width: 870px) {
    .home_mission .page_title {
        margin-bottom: 2rem;
    }
    .home_mission_content {
        flex-direction: column;
        gap: 1rem;
    }   
    .home_mission_logo img {
        width: 90px;
        height: 90px;
    }               
}

/*==================================
    HOME PLANS
===================================*/
.home_plans {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5rem 1rem 5rem 1rem;
}

.home_plans .page_title {
    margin-bottom: 1.5rem;
}

.home_plans_content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 1.5rem;
}

.home_plans_img {
    max-width: 220px;
}

.home_plans_img img {
    width: 100%;
    height: auto;
}

@media (max-width: 790px) {
    .home_plans_content {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
    }                  
}

/*==================================
    ABOUT
===================================*/
.about_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 4rem auto 6rem auto;
}

.about_title {
    margin-bottom: 3rem;
}

.about_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 800px;
}

.about_section_content  {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2rem;
    color: var(--clr_text);
}

.about_section_img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .2rem;
}

/* Section founder */
.about_section.founder {
    margin-bottom: 6rem;
}

.about_section.founder .about_section_content  {
    flex: 1;
    max-width: 450px;
    margin-right: 2rem;
}

.about_section.founder .about_section_img  {
    border: 3px dashed var(--clr_second);
    border-radius: 50%;
}

.about_section.founder .about_section_img_frame  {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.about_section.founder .about_section_img_frame img {
    width: 260px;
    height: 260px;
    object-fit: cover;
}

/* Mission */
.about_section.mission .about_section_img  {
    margin-right: 4rem;
}

.about_section.mission .about_section_img img  {
    width: 220px;
}

.about_section.mission .about_section_content  {
    flex: 1;
    max-width: 500px;
}

.about_section.mission .about_section_content p:first-child {
    margin-bottom: 1.5rem;
}

@media (max-width: 810px) {
    .about_section {
        width: 100%;
    }     
}

@media (max-width: 680px) {
    .about_section.founder .about_section_img_frame img {
        width: 220px;
        height: 220px;
    }   
}

@media (max-width: 660px) {
    .about_section.mission {
        flex-direction: column;
    }
    .about_section.mission .about_section_img  {
        margin-right: 0rem;
        margin-bottom: 1.4rem;
    }
    .about_section.mission .about_section_img img  {
        width: 180px;
    }
}

@media (max-width: 520px) {
    .about_wrapper {
        margin: 6rem auto 4rem auto;
    }
    .about_section.founder {
        flex-direction: column;
        margin-bottom: 4rem;
    }
    .about_section.founder .about_section_img{
        order: 1;
        margin-bottom: 1.4rem;
    }
    .about_section.founder .about_section_content{
        order: 2;
        margin-right: 0rem;
    }
    .about_section.founder .about_section_img_frame img {
        width: 180px;
        height: 180px;
    }   
}

/*==================================
    PRODUCTS
===================================*/
.products_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 4rem auto 6rem auto;
}

.products_title {
    margin-bottom: 4rem;
}

.products_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1200px;
}

.products_section_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2rem;
    color: var(--clr_text);
}

.products_section_content {
    text-align: center;
}

.products_section_title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--clr_first);
    letter-spacing: 0.06rem;
    margin-bottom: 1.6rem;
    position: relative;
}

.products_section_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 5rem;
    border-bottom: 1px dotted var(--clr_second);
}

/* Introduction */
.products_section.intro {
    margin-bottom: 5rem;
}

.products_section.intro .products_section_content {
    max-width: 650px;
    margin-bottom: 2rem;
}

/* Items */
.products_section_items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.products_section_item {
    width: 300px;
    height: 390px;
    border: 2px dashed var(--clr_second);
    border-radius: 10px;
    padding: .2rem;
}

.products_section_item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.products_section_item_title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr_first);
    text-align: center;
    padding: .5rem .6rem;
}

.products_section_item_img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.products_section_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.products_section_item_img:hover img {
    transform: scale(1.04);
}

.products_section_item_view {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: .5rem .5rem .4rem 0;
}

.products_section_item_view span {
    background-color: hsl(112, 21%, 44%);
    color: white;
    font-size: 0.85rem;
    font-weight: 400;
    padding: .3rem 2rem;
    border-radius: 1rem;
    transition: 0.3s;
}

.products_section_item_view:hover span {
    background-color: var(--clr_first);
}

/* mumu_value */
.products_section.mumu_value {
    padding: 2rem 1rem 3rem 1rem;
    border-radius: .8rem;
    background-color: var(--menu_hover_bg_clr);
    margin-bottom: 5rem;
}

/* Ingredients */
.products_section.ingredients {
    margin-bottom: 4rem;
}

.products_section.ingredients .products_section_title{
    margin-bottom: 3rem;
}

.products_ingredients {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.4rem;
    max-width: 900px;
}

.product_ingredient {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

.product_ingredient span {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--clr_first);
    padding-top: .5rem;
}

/* Benefits */
.products_section.benefits {
    padding: 3rem 1rem;
    border-radius: .8rem;
    background-color: var(--menu_hover_bg_clr);
}

.products_section.benefits ul li {
    display: flex;
    align-items: center;
}

.products_section.benefits ul li span {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    color: var(--clr_first);
}

.products_section.benefits ul li i {
    font-size: 1.5rem;
    color: var(--clr_underline);
    margin-right: 1.2rem;
}

@media (max-width: 1250px) {
    .products_section {
        width: 100%;
    }
}

@media (max-width: 750px) {
    .products_section {
        width: 100%;
    }
    .products_section_items {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 520px) {
    .products_wrapper {
        margin: 8rem auto 4rem auto;
    }
    .products_title {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 360px) {
    .products_section_item {
        width: 100%;
        height: 350px;
        border: 2px dashed var(--clr_second);
        border-radius: 10px;
        padding: .2rem;
    }
    .products_section.benefits ul li span {
        font-size: 1rem;
        letter-spacing: 0;
    }
    .products_section.benefits ul li i {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
}


/*==================================
    ITEM PAGE
===================================*/
.item_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 5rem auto 6rem auto;
}

.item_page_back {
    position: absolute;
    left: 1.8rem;
    top: 1rem;
}

.item_page_back a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr_first);
    transition: 0.3s;
}

.item_page_back:hover a {
    transform: translateX(-.3rem);
}

.item_page_back i {
    font-size: 1.4rem;
}

.item_title {
    margin-bottom: 3rem;
}

.item_description {
    width: 300px;
    height: 350px;
    border: 2px dashed var(--clr_second);
    border-radius: 10px;
    padding: .2rem;
    margin-bottom: 4rem;
}

.item_description_frame {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.item_description_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;
}

.item_description_frame:hover img {
    transform: scale(1.04);
}

@media (max-width: 620px) {
    .item_wrapper {
        margin: 8rem auto 4rem auto;
    }
    .item_title {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 500px) {
    .item_page_back {
        left: 1.1rem;
    }
    .item_page_back i {
        font-size: 1.6rem;
    }
}

@media (max-width: 350px) {
    .item_description {
        width: 100%;
        height: 300px;
    }             
}

/*==================================
    TESTIMONIALS
===================================*/
.testimonials_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 4rem auto 6rem auto;
}

.testimonials_title {
    margin-bottom: 4rem;
}

.testimonials_container {
    width: 900px;
}

.testimonial_item {
    --testimonial_item_margin: 15rem;
    display: flex;
    align-items: center;
    background-color: hsla(112, 12%, 35%, .15);
    border-radius: .8rem;
    padding: 1rem 1rem;
    box-shadow: 9px 10px 28px -16px rgba(0,0,0,0.63);
    margin-bottom: 2rem;
}

.testimonial_item:nth-child(odd) {
    margin-right: var(--testimonial_item_margin);
}
  
.testimonial_item:nth-child(even) {
    margin-left: var(--testimonial_item_margin);
}

.testimonial_content {
    width: 100%;
}

.testimonial_item img {
    width: 50px;
    height: 50px;
    margin-right: .8rem;
}

.testimonial_text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2rem;
    color: var(--clr_first);
}

.testimonial_author {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 2rem;
    color: var(--clr_first);
}

@media (max-width: 900px) {
    .testimonials_container {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .testimonial_item {
        --testimonial_item_margin: 10rem;
    }
}

@media (max-width: 600px) {
    .testimonials_wrapper {
        margin: 6rem auto 4rem auto;
    }
    .testimonials_title {
        margin-bottom: 3rem;
    }
    .testimonial_item {
        --testimonial_item_margin: 5rem;
    }
    .testimonial_text {
        font-size: .9rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 450px) {
    .testimonial_item {
        --testimonial_item_margin: 4rem;
        padding-left: .5rem;
    }
    .testimonial_item img {
        margin-right: 0.1rem;
    }
}

@media (max-width: 360px) {
    .testimonial_item {
        padding-left: 1.1rem;
    }
    .testimonial_item img {
        display: none;
    }
}

/*==================================
    CONTACT PAGE
===================================*/
.contact_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 4rem auto 6rem auto;
}

.contact_title {
    margin-bottom: 3rem;
}

.contact_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 600px;
}

.contact_section a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--clr_second);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    width: 100%;
}

.contact_section a i {
    display: flex;
    justify-content: center;
    color: var(--clr_first);
    font-size: 2.6rem;
    width: 4rem;
    margin-right: 1.2rem;
}

.contact_section a img {
    width: 100px;
    height: 100px;
}

.contact_section.whatsapp span {
    margin-right: 3rem;
}

@media (max-width: 620px) {
    .contact_wrapper {
        margin: 6rem auto 4rem auto;
    }
    .contact_title {
        margin-bottom: 2.5rem;
    }
    .contact_section {
        width: 100%;
    }
}

@media (max-width: 415px) {
    .contact_section a i {
        font-size: 2.2rem;
        width: 2.8rem;
        margin-right: .7rem;
    }
    .contact_section a img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 350px) {
    .contact_section a {
        flex-direction: column;
        align-items: center;
    }
    .contact_section a i {
        margin-right: 0;
        margin-bottom: .8rem;
    }
    .contact_section.whatsapp span {
        margin-right: 0;
        margin-bottom: .8rem;
    }
}

@media (max-width: 300px) {
    .contact_title {
        font-size: 1.6em;
    }
}

/*==================================
    PROCESS PAGE
===================================*/
.process_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 4rem auto 6rem auto;
}

.process_title {
    margin-bottom: 3rem;
}

.process_section {
    display: flex;
    flex-direction: column;
    width: 800px;
    margin-bottom: 4rem;
}

.process_section_content  {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--clr_text);
    margin-bottom: .8rem;
}

.process_section_content::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 6rem;
    border-bottom: 1px dotted var(--clr_second);
}

.process_section_img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .2rem;
}

/*==================================
    VIDEO PAGE
===================================*/
.video_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video_content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    transition: 0.5s;
}

.video_content h1:hover {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

.video_content p {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

.video_content a {
    display: inline-block;
    color: white;
    font-size: 1.4rem;
    border: 2px solid white;
    padding: .6rem 3rem;
    border-radius: 50px;
    margin-top: 20px;
}

.video_bckgr {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
    .video_bckgr {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video_bckgr {
        width: auto;
        height: 100%;
    }
}