*{
    margin: 0;
    padding: 0;
}

:root{
    --main-color: #c02739;
    --bg-color: #333333;
    --white-color: #d4d4d4;
    --secondary-text: #acacac;

}

body{

    background-color: var(--bg-color);
}

.navigationBar{
    position: fixed;
    width: 0px;
    height: 100%;
    background-color:#C02739 ;
    
    z-index: 999999999999;
}

.navControl{
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #C02739;
    left: 100%;
    top: 50%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--white-color);
    cursor: pointer;
    overflow: hidden;
}


.navClose{
    display: none !important;
}

.navItems{
    
    width: 0px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    display: none;
    transition: 0.5s;

}

.navItems p{
    cursor: pointer;
    padding-top: 10px;
    padding-left: 10px;
    color: var(--white-color);
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    position: relative;
}

.navItems p:hover{
    color: var(--bg-color);
    transition: 0.5s;
}

.heroWrapper{
    width: 100%;
    height: fit-content;
    overflow: hidden;
}

.heroSection{
    width: 100%;
    height: 604px;
    text-align: center;
    background-size: cover;
background-repeat: no-repeat;
animation: slideshow 15s ease-in-out infinite;
background-position: center;
}

@keyframes slideshow {
    0% { background-image: url("assets/hero-images/image1.png"); }
    20% { background-image: url("assets/hero-images/image2.png"); }
    40% { background-image: url("assets/hero-images/image3.png"); }
    60% { background-image: url("assets/hero-images/image4.png"); }
    100% { background-image: url("assets/hero-images/image1.png"); }
    }

    .bg-shadow{
        position: absolute;
        width: 100%;
        height: 604px;
        background-color: #333333;
        opacity: 65%;
    }


.navWrapper{
    width: 100%;
    height: 100px;

}

.navbar{
    width: 100%;
    height: fit-content;
    /* background-color: white; */
    padding: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;

}

.logoWrapper{
    width: 15%;
    height: fit-content;
        z-index: 999999999;
}

.logo{
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.socialLinksWrapper{
    width: 100px;
    height: fit-content;
    z-index: 999999999;
    padding-right: 25px;
}

.socialLinksWrapper i{
    color: var(--main-color);
    font-size: 30px;
    padding: 2px;
    cursor: pointer;
}

.socialLinksWrapper i:hover{
    color: var(--white-color);
    transition: 0.5s;
}

.headlineTextWrapper{
    position: relative;
    width: 100%;
    height: fit-content;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    top: 180px;

    
}

.headlineTextWrapper h1{
    font-size: 50px;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

#output {
    color: var(--main-color);
    /* background: #C02739; */
    /* background: linear-gradient(90deg, rgba(192, 39, 57, 1) 0%, rgba(212, 212, 212, 1) 63%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding-left: 10px;
 
}

.aboutWrapper{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    padding: 25px;
    text-align: center;
    background: #C02739;
    /* background: linear-gradient(0deg, rgba(192, 39, 57, 1) 0%, rgba(51, 51, 51, 1) 50%); */
}

.aboutWrapper h1{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding-bottom: 15px;
    padding-top: 25px;
}

.aboutWrapper h2{
    color: var(--secondary-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 15px;
}

.servicesWrapper{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    background: #C02739;
    background: linear-gradient(180deg, rgba(192, 39, 57, 1) 0%, rgba(51, 51, 51, 1) 100%);
    padding: 25px;
    text-align: center;
    padding-bottom: 40px;
}

.servicesWrapper h1{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding-bottom: 15px;
    padding-top: 25px;
}

.servicesIconsWrapper{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding-top: 15px;
}

.serviceIcon{
    width: 150px;
    height: 70px;
    background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 6px 3px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
    margin: 10px;

    display: flex;
    flex-direction: column;
}

.serviceIcon span{
    color: var(--white-color);
    padding: 10px;
    font-size: 20px;
}

.serviceIcon p{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500px;
    color: var(--white-color);
}


.ourWorkWrapper{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    width: 100%;
    background-color: var(--bg-color);
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}

.ourWorkWrapper h1{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding-bottom: 30px;
    padding-top: 15px;
}

.ourWorkWrapper h2{
    color: var(--secondary-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-style: italic;
    font-size: 15px;
    padding-bottom: 35px;
}

@media screen and (max-width: 770px) {

    .ourWorkWrapper h1{
        font-size: 18px;
    }
    
}

.videosWrapper{

    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;

}

.videoCard{
    width: fit-content;
    height: fit-content;
    padding: 10px;
    /* background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -1px 0 rgba(255, 255, 255, 0.1),
      inset 0 0 6px 3px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
      margin: 10px;
      padding: 10px; */

}

.videoCard img{
    width: 200px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 999999;
}

.videoCard:hover{
    scale: 1.5;
    transition: 0.5s;
    
}

.videoCard:hover .videoTitleWrapper{
    display: block;
    
}

#ourWorkPage{
    scale: 1 !important;
}

.videoCard:hover .videoCardImg{
    filter: brightness(0.5);
    transition: 0.5s;
    
}


.videoTitleWrapper{
    width: fit-content;
    display: none;
    position: absolute;
    text-align: left;
    top: 0;
    z-index: 999999;
    padding-top: 10px;
}

.videoTitleWrapper h1{
    color: var(--white-color);
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.videoTitleWrapper p{
    color: var(--secondary-text);
    font-size: 10px;
    padding-left: 10px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.videoTitleWrapper button{
    width: fit-content;
    height: fit-content;
    padding: 5px;
    margin: 10px;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-text);
    background-color: var(--main-color);
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.videoTitleWrapper button:hover{
    box-shadow: #acacac 0 5px 32px;
    transition: 0.5s;
    background-color: var(--secondary-text);
    color: var(--main-color);
}

.watchMoreButtonWrapper{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.watchMoreButtonWrapper button{
    width: fit-content;
    height: fit-content;
    padding: 5px;
    margin: 10px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--main-color);
    background-color: var(--white-color);
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.videoPlayerHolder{
    position: absolute;
  background-color: #000;
  border-radius: 20px;
  width: 80%;
  height: fit-content;
  display: none;
  z-index: 99999;
  /* top: 0px; */
  padding: 15px;
  
}

.centeringPlayer{
    position: fixed;
    
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: row;
    z-index: 999999999999999999;
    top: 0;
}

@media screen and (max-width: 770px) {


    #ourWorkVideoHolder{
        width: 90%;
        height: 900px;
    }

    
}

/* video::-webkit-media-controls-panel {
    display: flex !important;
    opacity: 1 !important;} */

.videoPlayerNav{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.videoPlayerNav h1{
    padding: 10px;
    font-size: 20px;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.videoPlayerNav span{
    color: #acacac;
    padding: 10px;
    cursor: pointer;
    z-index: 99999999;
}

.videoAds{
    position: relative;
    width: 100%;
    height: 80%;
    padding-bottom: 15px;
}

.videoShadowBG{
    position: absolute;
    display: none;
    opacity: 80%;
    width: 100%;
    height: 2800px;
    background-color: #000;
    z-index: 9999;
}

.ourClients{
    height: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow: hidden;
    background: #C02739;
    background: linear-gradient(0deg, rgba(192, 39, 57, 1) 0%, rgba(51, 51, 51, 1) 50%);

}

.clientsBGImg{
    position: absolute;
    background-image: url('assets/job-5382501_1920.jpg');
    width: 100%;
    height: 300px;
    filter: blur(8px) grayscale(1) brightness(0.75);
    background-position: center;
}

.clientsTitleWrapper{
    
    padding-top: 55px;
    z-index: 999;
    text-align: center;
    
}

.clientsTitleWrapper h1{
    padding-bottom: 20px;
}

.ourClients h1{
    position: relative;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;

}

.ourClients h2{
    color: var(--secondary-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-style: italic;
    font-size: 15px;
    padding-bottom: 35px;
}

.brandsLogosWrapper{
    width: 100%;
    height: fit-content;
    padding: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow: hidden;
    z-index: 999;
}

.brandsLogosWrapper img{
    width: 25%;
    height: 65%;
    margin-right: 20px;
    margin-left: 20px;
    filter: drop-shadow(0 0 0.75rem var(--secondary-text));
}

#hanbatLogo{
    width: 10%;
    height: 100%;
    margin-right: 20px;
    margin-left: 55px;
    scale: 1.75;
    
}

#zaffaLogo{
    width: 10%;
    height: 100%;
    margin-right: 20px;
    margin-left: 55px;
    
    
}

@media screen and (max-width: 770px) {

    .brandsLogosWrapper{
        width: 90%;
    }

    .brandsLogosWrapper img{
        margin-bottom: 30px;
    }
    
}

.testimonialsWrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    min-height: 300px;
    background-color: var(--main-color);
    padding-bottom: 20px;
    
}
.testimonalCard{
    width: 350px;
    min-height: 150px;
    max-height: 150px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 6px 3px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.testimonalCard p{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-style: italic;
    margin-bottom: 20px;
    text-align: left;
    overflow-y: scroll;
    height: 110px;
    max-height: 87px;
    scrollbar-width: none; /* Firefox */

}



#scrollableTestimonial{
    scrollbar-width: none; /* Firefox */
    
    
  }


  .scrollBadge{
    width: 100%;
    height: fit-content;
    text-align: left;
  }

  .scrollBadge h3{
    color: var(--white-color);
    font-size: 10px;
    width: fit-content;
    padding: 5px;
    border-radius: 20px;
    border: 1px solid var(--white-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
  }

  #swipeIcon{
    font-size: 15px;
    padding-right: 2.5px;
  }


  .testimonalCard::-webkit-scrollbar {
    display: none;
  }


.testimonialTitleWrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    position: fixed;
    bottom: 10px;
    left: 0;
    
}

.testimonalCard h1{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding-right: 20px;
}

.testimonalCard h2{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    padding-right: 20px;
}

.footerWrapper{
    width: 100%;
    height: 300px;
    display: flex;
    overflow: hidden;
}

.footerInfo{
    width: 50%;
    text-align: left;
    padding: 5px;
}

.footerInfo h1{
    background: #C02739;
    background: linear-gradient(90deg, rgba(192, 39, 57, 1) 0%, rgba(212, 212, 212, 1) 63%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding-left: 10px;
    padding-top: 20px;
}

.footerInfo h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding-left: 10px;
    color: var(--white-color);
    padding-top: 20px;
}

.footerMap{
    width: 50%;
}


.footerSocialWrapper{
    width: 100px;
    height: fit-content;
    z-index: 999999999;
    padding-left: 5px;
    padding-top: 20px;
}

.footerSocialWrapper i{
    color: var(--main-color);
    font-size: 30px;
    padding: 2px;
    cursor: pointer;
}

.footerSocialWrapper i:hover{
    color: var(--white-color);
    transition: 0.5s;
}

@media screen and (max-width: 770px) {

    .footerWrapper{
        flex-wrap: wrap;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .footerInfo{
        width: 100%;
        padding-bottom: 20px;
    } 

    .footerMap{
        width: 100%;
    }
}

/* About page */

.aboutHeader{
    width: 100%;
    height: 600px;

    overflow: hidden;
}

.aboutHeader img{
    position: relative;
    width: 100%;
    bottom: 200px;
    filter: blur(2px) brightness(0.5);
}

.aboutHeaderTextWrapper{
    width: 100%;
    z-index: 999999;
    position: relative;
    text-align: center;
    top: 45px;
}

.aboutHeaderTextWrapper h1{
    padding: 20px;
    font-size: 50px;
    color: var(--main-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;

}

.aboutHeaderTextWrapper h2{

    color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;

}

.blurredCircle{
    width: 750px;
    height: 700px;
    position: absolute;
    z-index: 9999;
        top: 0px;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 100%;
        background: rgba(255, 255, 255, 0.19);
        backdrop-filter: blur(26px);
        -webkit-backdrop-filter: blur(26px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.149),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 14px 7px rgba(255, 255, 255, 0.174);
    
}

@media screen and (max-width: 770px) {

    .blurredCircle {
        display: none;
    }

    .aboutHeader{
        height: 450px;
    }

    .aboutHeader img{
        scale: 3;
    }


    .aboutHeaderTextWrapper h1{
        font-size: 50px;
    }

    .aboutHeaderTextWrapper h2{
        font-size: 20px;
        color: var(--white-color);
    }
    
}

.globalSection{
    width: 100%;
    height: 500px;
    background-color: var(--bg-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.globalSection h1{
    position: relative;
    font-size: 50px;
    color: var(--main-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding: 20px;
    bottom: 60px;
}

/* Slider */

.slider-container {
    width: 200px;
  height: 100px;
  overflow: hidden;
  position: relative;
  top: 130px;
  left: 60%;
  transform: translate(-50%, -50%);
  padding: 10px;
  scale: 2;

  }

  .slider {
    display: flex;
    width: 800px; /* 4 divs × 200px each */
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    width: 500px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;

    /* background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 6px 3px rgba(255, 255, 255, 0.3); */
  }

  @media screen and (max-width: 770px) {

    .globalSection{
        height: 600px;
    }

    .globalSection h1{
        font-size: 30px;
    }

    .slider-container{
        left: 50%;
        scale: 1;
    }
    
  }

  .differenceSection{
    width: 100%;
    height: 400px;
    background: #C02739;
    background: linear-gradient(0deg, rgba(192, 39, 57, 1) 0%, rgba(51, 51, 51, 1) 50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .differenceSection h1{
    font-size: 50px;
    color: var(--main-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding: 20px;
  }

  .differenceSection h2{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 20px;
    font-style: italic;
    padding: 20px;
  }

  .differenceBubblesWrapper{
    width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  }

  .differenceBubble{
    display: flex;
    align-content: center;
    justify-content: center;

    align-items: center;

    width: 400px;
    height: 150px;
    margin: 10px;
    
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 6px 3px rgba(255, 255, 255, 0.3);

  }

  .differenceBubble p{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;

  }

  .contactTransferSection{
    width: 100%;
    height: 400px;
    background-color: var(--main-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
  }

  .contactTransferSection h1{
    font-size: 50px;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding: 20px;
  }

  .contactTransferSection h2{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 20px;
    font-style: italic;
    padding: 20px;
  }

  .contactTransferSection button{
    width: 90px;
  height: 30px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white-color);
  color: var(--bg-color) ;
  }

  .contactTransferSection button:hover{
    background-color: white;
    transition: 0.5s ease-in-out;
  }

  @media screen and (max-width: 770px) {

    .differenceSection{
        height: 600px;
    }

    .differenceSection h1{
        font-size: 30px;
    }

    .differenceSection h2{
        font-size: 20px;
    }
    
  }

  /* Contact page */

  .contactHeader{

    width: 100%;
    height: fit-content;
    text-align: center;
  }

  .contactHeader h1{
    font-size: 50px;
    color: var(--main-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding: 20px;
  }

  .contactHeader h2{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 20px;
    font-style: italic;
    padding: 20px;
  }

  .contactFormWrapper{
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #C02739;
    background: linear-gradient(0deg, rgba(192, 39, 57, 1) 0%, rgba(51, 51, 51, 1) 50%);
  }

  #contactForm input, textarea{
    width: 350px;
  height: 30px;
  border-radius: 10px;
  border: 0;
  padding: 10px;
  background-color: var(--secondary-text);
  }

  #contactForm input:focus{
    background-color: var(--white-color);
    transition: 0.5s;
    outline: none;

  }

    textarea:focus{
    background-color: var(--white-color);
    transition: 0.5s;
    outline: none;
  }

  textarea {
    resize: none;
    height: 80px;
  }

  #contactForm button{
    width: 60px;
  height: 30px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white-color);
  color: var(--bg-color) ;
  font-weight: 600;
  }

  #contactForm button:hover{
    background-color: white;
    transition: 0.5s ease-in-out;
  }

  #formResponse{
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: var(--white-color);
    padding-top: 20px;
  }

  /* work page */

  .workHeader{

    width: 100%;
    height: fit-content;
    text-align: center;
  }

  .workHeader h1{
    font-size: 50px;
    color: var(--main-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding: 20px;
  }

  .workHeader h2{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 20px;
    font-style: italic;
    padding: 20px;
  }

  .workWrapper h1{
    font-size: 50px;
    color: var(--main-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding: 20px;
  }

  .workWrapper h2{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 20px;
    font-style: italic;
    padding: 20px;
  }

  .workWrapper{
    width: fit-content;
    height: fit-content;
  }

  .workVidWrapper{
    width: fit-content;
    height: fit-content;
  }

  .workWrapper h1{
    font-size: 30px;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding: 20px;
  }

  .workWrapper h2{
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 15px;
    font-style: italic;
    padding: 20px;
  }
  .workWrapper img{
    width: 400px;
    padding: 20px;
  }

  @media screen and (max-width: 770px) {

    .workWrapper img{
        width: 280px;
    }
    
  }
