:root {
  --Orange: #e16206;
  --ClearOrange: #ea8035;
  --Blue: #1c64a3;
  --ClearBlue: #6a9ac3;
  --Gray: #8d8d8d;
  --ClearGray: #c5c5c5;
  --Yellow: #efce20;
  --ClearYellow: #f8ecaf;

  --Credits: rgb(35, 31, 44);
  
  --Size0: 10px;
  --Size1: 20px;
  --Size2: 40px;
  --Size3: 80px;
  --Size4: 160px;
  --Size5: 320px;
  --Size6: 640px;

  --Direction: row;

  --Shadow: 0 0 var(--Size1) rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
    :root {
        --Size0: 5px;
        --Size1: 10px;
        --Size2: 20px;
        --Size3: 40px;
        --Size4: 80px;
        --Size5: 160px;
        --Size6: 320px;

        --Direction: Column;
    }
}
    
body {
    font-family: 'Poppins', sans-serif;
    transition: 0.5s;
    margin: 0px;
}

.Btn{
    border: none;
    margin: none;
    padding: none;
    font-family: 'Poppins', sans-serif;
}

.Menu{
    padding: var(--Size0);
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
}

#MenuBtn{
    transition: all 0.5s ease;
}

#SectionBtn{
    transition: width 0.5s ease;
}

.MenuBtn{
    margin: var(--Size0);
    display: flex;
    width: var(--Size3);
    height: var(--Size3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.5s ease;
    background-color: var(--Orange);
    border: 0;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.MenuIcon {
    color: white;
    width: 70%;
    height: 70%;;
}

#HomeBtn {
    transition: all 0.5s ease;
}

.Sections{
    display: flex;
    justify-content: flex-end;
    align-items: end;
}

.SectionBtns {
    display: flex;
    flex-direction: row-reverse;
}

.SectionBtn {
    margin: var(--Size0);
    border: none;
    position: relative;
    display: flex;
    max-width: 0px;
    width: auto;
    height: auto;
    align-items: flex-end;
    justify-content: end;
    flex-direction: row;
    cursor: pointer;
    background-color: var(--Orange);
    transition: all 0.5s ease;
    clip-path: polygon(25px 0, 100% 0, 100% 100%, 25px 100%, 0 50%);
    white-space: nowrap;
    padding: 0px;
}

.SectionBtn.Open {
    max-width: 400px;
}

.SectionBtn.Close {
    width: 0px;
}

.SectionBtn:hover {
    background-color: var(--Blue);
}

.SectionBtnTxt{
    text-align: right;
    margin: var(--Size0);
    margin-left: var(--Size1);
    margin-right: var(--Size1);
    color: white;
    font-size: var(--Size1);
}

/* Main section */

.HeaderBG{
    padding: var(--Size2);
    box-sizing: border-box;
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue));
}

.TTB{
    transform: scaleY(-1);
}

.Header{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    background-color: white;
    border-radius: var(--Size3);
    box-shadow: var(--Shadow);
    box-sizing: border-box;
    padding-top: var(--Size4);
    padding-bottom: var(--Size4);
}

.Logo{
    width: var(--Size5);
    height: var(--Size4);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.Clear{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.titleBG{
    margin: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue), var(--ClearBlue));
    clip-path: polygon(0 0, 0 100%, 70% 100%, calc(70% + 25px) 50%, 70% 0);
    transition: all 5s ease;
    max-width: 0px;
}

.titleBG.Show{
    max-width: 9999px;
}

.title{
    color: white;
    font-size: var(--Size2);
    margin: var(--Size0);
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
}

.subtitleBG{
    margin: 0;
    margin-top: var(--Size1);
    width: 100%;
    justify-content: center;
    display: flex;
    background: linear-gradient(270deg, var(--Orange), var(--ClearOrange), var(--ClearOrange));
    clip-path: polygon(100% 100%, 100% 0, 30% 0, calc(30% - 25px) 50%, 30% 100%);
    margin-bottom: var(--Size0);
    transition: all 5s ease;
    max-width: 0px;
    margin-left: auto;
}

.subtitleBG.Show{
    max-width: 9999px;
}

.subtitle{
    color: white;
    font-size: var(--Size1);
    margin: var(--Size0);
    font-weight: bolder;
    white-space: nowrap;
    overflow: hidden;
}

/* Cases Section */

.Cases{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: var(--Size2);
}

.SectionTitleBG{
    width: fit-content;
    margin-bottom: var(--Size2);
    background: linear-gradient(90deg, var(--Orange), var(--ClearOrange));
    border-radius: var(--Size2);
    padding-left: var(--Size1);
    padding-right: var(--Size1);
    box-sizing: border-box;
    box-shadow: var(--Shadow);
    max-width: 0px;
    transition: all 10s ease;
    overflow: hidden;
}

.SectionTitleBG.Show {
    max-width: 9999px;
}

.SocialMedia {
    display: flex;
    flex-direction: var(--Direction);
}

.SocialMediaBtn{
    display: flex;
    flex-direction: row;
    align-items: center;
    background: white;
    justify-content: space-between;
    border-radius: 500px;
    box-sizing: border-box;
    padding: var(--Size0);
    transition: all 0.5s ease;
    margin: var(--Size1);
    box-shadow: var(--Shadow);
    cursor: pointer;
    transition: all 0.5s ease;
}

.SocialMediaBtn:hover {
    background-color: var(--ClearYellow);
    box-shadow: var(--Shadow);
}

.SocialMediaBtn p {
    flex: 1;
    text-align: start;
    color: var(--Blue);
    font-size: var(--Size1);
    margin: 0;
    margin-left: var(--Size1);
}

.SocialMediaBtn .Icon{
    width: var(--Size3);
    height: var(--Size3);
    color: var(--Blue);
    transition: all 0.5s ease;
    margin: var(--Size0);
    flex-shrink: 0;
}

.SocialMediaBtn .Arrow{
    width: var(--Size3);
    height: var(--Size3);
    color: var(--Blue);
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.HalftoneBG{
    width: 100%;
    height: auto;
}

.Halftone{
    -webkit-mask-image: url('../Resources/Halftone.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: var(--Size4);
    -webkit-mask-position: bottom;
    
    mask-image: url('../Resources/Halftone.png');
    mask-repeat: repeat-x;
    mask-size: var(--Size4);
    mask-position: bottom;

    width: 100%;
    height: var(--Size4);
    margin: 0;
}

.Blue {
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue));
}

.Orange {
    background: linear-gradient(90deg, var(--Orange), var(--ClearOrange));
}

.White{
    background: white;
}

.CreditsColor{
    background: var(--Credits);
}

/* Benefits */

.Benefits{
    width: 100%;
}

.Tittle3{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, var(--Orange), var(--ClearOrange));
}

.Tittle3::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    box-shadow: var(--Shadow);
    z-index: 1;
}

.BenefitsList{
    width: 100%;
    display: flex;
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue));
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.Ben{
    display: flex;
    flex-direction: column;
    border-radius: var(--Size2);
    background-color: white;
    margin: var(--Size1);
    justify-content: center;
    align-items: center;
    box-shadow: var(--Shadow);
}

.Ben img{
    height: var(--Size4);
    width: auto;
    margin: var(--Size1);
    margin-bottom: 0;
    border-radius: var(--Size1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.Text{
    margin: 0;
    color: var(--Blue);
    font-size: var(--Size1);
    background-color: var(--Yellow);
    border-radius: 9999px;
    box-sizing: border-box;
    padding: var(--Size0);
    width: 100%;
    text-align: center;
}

/* Working With */

.WorkingWith {
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue));
    box-sizing: border-box;
    padding-top: var(--Size2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: var(--Size3);
}

.Logo2{
    width: 40%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(1);
}

.WWBtn{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--Yellow);
    border-radius: 900px;
    box-sizing: border-box;
    padding: 0;
    padding-left: var(--Size0);
    padding-right: var(--Size0);
    transition: all 0.5s ease;
    cursor: pointer;
    margin: var(--Size1);
}

.WWBtn:hover{
    background-color: var(--ClearYellow);
}

.WWBtn p {
    color: var(--Blue);
    margin: var(--Size0);
    font-size: var(--Size1);
}

.WWBtn svg{
    width: var(--Size2);
    height: var(--Size2);
    color: var(--Blue);
}

/* Maps */

.Maps{
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue));
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.MapsBG{
    background-color: white;
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: var(--Size2);
    border-radius: var(--Size2);
    box-shadow: var(--Shadow);
    margin-bottom: var(--Size2);
}

.MapsList{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: var(--Direction);
}

.MapContainer {
    width: 100%;
    aspect-ratio: 10/7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    box-shadow: var(--Shadow);
    box-sizing: border-box;
    padding: var(--Size0);
    border-radius: var(--Size2);
    margin: var(--Size1);
}

.Map{
    border-radius: var(--Size2);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AllWidth{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Media */

.GallerySection{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Carrousel{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
}

.IconBtn{
    background-color: var(--Blue);
    width: var(--Size3);
    height: var(--Size3);
    border-radius: 9999px;
    margin: 0;
    padding: 0;
    position: absolute;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 1;
}

.IconBtn:hover{
    background-color: var(--ClearBlue);
}

.Icon{
    color: white;
    width: 70%;
    height: 70%;
}

.Left{
    transform: rotate(-90deg);
    left: var(--Size2);
}

.Right{
    transform: rotate(90deg);
    right: var(--Size2);
}

.ViewGallery{
    display: flex;
    width: 100%;
    overflow: hidden;
    overflow: hidden;
    justify-content: center;
}

.GalleryContainer{
    display: flex;
    width: 70%;
    flex-direction: row;
    transition: all 0.5s ease;
    scroll-behavior: smooth;
    box-sizing: border-box;
    padding: var(--Size2);
}

.Gallery{
    margin-top: var(--Size2);
    display: flex;
    min-width: 100%;
    aspect-ratio: 10/7;
    justify-content: center;
    box-sizing: border-box;
    padding: var(--Size2);
    box-shadow: var(--Shadow);
    margin-left: var(--Size2);
    margin-right: var(--Size2);
    border-radius: var(--Size2);
}

.Video{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--Size2);
    overflow: hidden;
}

/* Products */

.WallBG {
    display: flex;
    background-image: url('../Resources/Wall.jpg');
    width: 100%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-top: var(--Size2);
    transition: all 0.5s ease;
    flex-direction: column;
}
.ProductList{
    width: 90%;
    display: flex;
    flex-direction: row;
    overflow: scroll-x;
    overflow-x: auto;
    transition: all 0.5s ease;
    scrollbar-width: none;
    transition: all 0.5s ease;
}

.ProductContainer{
    border: none;
    background: none;
    padding: 0;
    margin: var(--Size1);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ProductIMG{
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.5));
    height: var(--Size4);
    width: auto;
}

.ProductText{
    color: var(--Blue);
    font-family: 'Poppins', sans-serif;
    font-size: var(--Size1);
    background-color: white;
    box-shadow: var(--Shadow);
    border-radius: 9999px;
    box-sizing: border-box;
    padding: var(--Size0);
    transition: all 0.5s ease;
    min-width: calc(var(--Size4) + var(--Size3));
}

.ProductContainer:hover .ProductText {
    background-color: var(--ClearYellow);
}

/* About us */

.AboutUs{
    margin: 0;
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue));
}

.AboutUsInfo{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    box-sizing: border-box;
    padding-top: var(--Size2);
}

.NormalText{
    color: white;
    font-size: var(--Size1);
    width: auto;
    box-sizing: border-box;
    margin: 0;
    padding: var(--Size0);
    width: 50%;
    text-align: center;
}

.TimeLine{
    display: flex;
    width: 60%;
    height: auto;
    justify-content: center;
    align-items: start;
    position: relative;
}

.CentralLine {
    position: absolute;
    width: var(--Size0);
    height: 100%;
    border-radius: 999px;
    background: inherit;
    overflow: hidden;
}

.CentralLine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 2s ease;
    border-radius: inherit;
}

.CentralLine.Show::before {
    transform: scaleY(1);
}

.TimeLineLeft{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 40%;
    box-sizing: border-box;
    padding-left: var(--Size2);
}

.TimeLineRight{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 40%;
    box-sizing: border-box;
    padding-right: var(--Size2);
    padding-top: var(--Size3);
}

.TimeLineTxt{
    color: white;
    font-size: var(--Size1);
    margin: var(--Size0);
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: all 2s ease;
    transform: scale(0);
}

.TxtLeft{
    transform-origin: right;
}

.TxtRight{
    transform-origin: left;
}

.TimeLineTxt.Show{
    transform: scale(1);
}

.SideLine{
    background-color: white;
    width: 0%;
    transition: all 2s ease;
    height: var(--Size0);
}

.SLLeft{
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

.SLRight{
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;

}

.SideLine.Show{
    width: 50%;
}

.TimeLineBtn{
    display: flex;
    width: 100%;
    aspect-ratio: 10/7;
    height: var(--Size4);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    padding: 0;
    transform: scale(0);
    transition: all 2s ease;
    padding: var(--Size1);
    background: none;
    filter: drop-shadow(0px 0px var(--Size1) rgba(0, 0, 0, 0.5));
    cursor: pointer;
}

.TLBLeft{
    padding-left: 0;
}

.TLBRight{
    padding-right: 0;
}

.BtnLeft{
    transform-origin: top right;
}

.BtnRight{
    transform-origin: top left;
}

.TimeLineBtn.Show{
    transform: scale(1);
}

.IMGBorder{
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    overflow: hidden;
    border: var(--Size0) solid white;
    transition: all 0.5s ease;
}

.TimeLineBtn:hover .IMGBorder {
    border: var(--Size0) solid var(--ClearYellow);
}

.TimeLineImg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.InstagramIcon{
    width: var(--Size3);
    height: var(--Size3);
    transition: all 0.5s ease;
}

.Actual{
    transform: scale(0);
    transition: all 2s ease;
}

.Actual.Show{
    transform: scale(1);
}

.InstagramBtn{
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    padding: 0;
    margin: 0;
}

.InstagramBtn .NormalText{
    width: calc(var(--Size5)+var(--Size2));
    margin: var(--Size1);
    transition: all 0.5s ease;
    border-radius: 9999px;
    background: linear-gradient(90deg, #f04c5b, #ffcc52, #c837ab, #863ac8);
    border: none;
}

.InstagramBtn:hover .NormalText {
    border: var(--Size0) solid white;
}

.Contact{
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue));
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding-top: var(--Size2);
    flex-direction: column;
    align-items: center;
}

a{
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    margin: var(--Size1);
    padding: 0;
    justify-content: center;
    transition: all 0.5s ease;
}

a:hover {
    color: var(--Yellow);
}

.ContactIcon{
    width: var(--Size3);
    height: var(--Size3);
    transition: all 0.5s ease;
}

.ContactText{
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: var(--Size1);
}

.Credits{
    background: var(--Credits);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: var(--Size1);
}

.CreditsLogo{
    height: var(--Size3);
    width: auto;
}

.CreditsContact{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.CreditsText{
    font-family: 'Poppins', sans-serif;
    font-size: var(--Size0);
    margin: var(--Size0);
    color: white;
}

.FullIMGBG{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: linear-gradient(90deg, var(--Blue), var(--ClearBlue));
    transition: all 0.5s ease;
}


.FullIMG{
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: var(--Size2);
    transition: all 0.5s ease;
    box-shadow: var(--Shadow);
}