body {
    margin: 0;
    background: #eee;
    color: #fff;
    height: auto;
    font-family: "Barlow Condensed", sans-serif;
    scroll-behavior: smooth;
}

/* utilitiesCodeStart */

.container {
    max-width: 100%;
    margin: auto;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 25px;
}

.grid {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 25px;
}

.auto {
    margin: auto;
}

.tx-center {
    text-align: center;
}

.btn-prim {
    border-radius: 15px;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 2rem;
    padding: 13px 20px;
    font-size: 1.2rem;
    box-shadow: 2px 2px 8px #0d0d0d;
    text-transform: uppercase;
    background-color: #114379;
    transition: all 0.3s;
}

.btn-prim:hover {
    border: 1px solid #fff;
    background: none;
    cursor: pointer;
}

.btn-sec {
    width: 10rem;
    height: 2rem;
    border: 1px solid #fff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px;
    box-shadow: 2px 2px 8px #0d0d0d;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-sec:hover {
    background-color: #114379;
    border: 1px solid #114379;
    cursor: pointer;
}

.color-w {
    color: #fff;
    text-decoration: none;
}

/* utilitiesCodeEnd */

/* navCodeStart */

nav {
    background-color: #fff;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    margin: auto;
    box-shadow: 1px 1px 4px #0d0d0d;
}

nav.container.grid {
    margin: left;
    padding: 0;
}

.nav-holder {
    margin: auto;
}

.nav-holder.flex {
    justify-content: space-between;
    gap: 200px;
}

/* hamburgerCodeStart */

/* --- HAMBURGER MENU STYLES --- */
.hamburger-menu {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 30px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    z-index: 1100; /* Above menu */
}

.hamburger-menu div {
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    width: 2rem;
    border: 2px solid #114379;
}

/* Slide-in menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 200px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    padding-top: 5rem;
    gap: 1.5rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-menu a {
    text-decoration: none;
    color:#114379;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    padding-left: 50px;
}

/* Show menu */
.nav-menu.active {
    right: 0;
}

/* Responsive hamburger visibility */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-right ul {
        display: none;
    }
}



/* navCodeEnd */

/* heroSectionCodeStart */

.hero-section {
    background-image: url(../img/bckg4-crop.jpg);
    height: 60vh;
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
}

.hero-holder.grid {
    gap: 50px;
}

.hero-top div:first-child {
    font-size: 2.5rem;
    text-shadow: 1px 1px 4px #0d0d0d;
    padding-bottom: 1rem;
    text-align: center;
}

.hero-top div:last-child {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px #0d0d0d;
    text-align: center;
}

.hero-bottom.grid {
    gap: 1rem;
}

.hero-bottom {
    height: 10rem;
}

.hero-bottom a {
    text-decoration: none;
    color: #fff;
}

/* heroSectionCodeEnd */

/* benefitSectionCodeStart */

.benefit-section {
    background-color: #ebeced;
    color:#114379;
}

.bene-box {
    text-align: center;
}

.bene-box div:last-child {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.bene-box-img-one {
    background-image: url(../img/quickmontage.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 150px;
    height: 150px;
    margin: auto;
}

.bene-box-img-two {
    background-image: url(../img/silentmechanism.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 150px;
    height: 150px;
    margin: auto;
}

.bene-box-img-three {
    background-image: url(../img/moisture-proof.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 150px;
    height: 150px;
    margin: auto;
}

/* benefitSectionCodeEnd */

/* mountAndSupportCodeStart */

.mount-and-support {
    background-image: url(../img/bckg8-crop.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.mount-holder.grid {
    gap: 0;
}

.mount-holder h1 {
    text-align: center;
    text-shadow: 1px 1px 4px #0d0d0d;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 1rem;
}

.mount-holder h3 {
    font-weight: 500;
    background-color: #114379;
    color:#fff;
    padding: 20px;
    box-shadow: 2px 2px 4px #0d0d0d;
    width: 70%;
    margin: auto;
}

.mount-box div:first-child {
    font-size: 1.7rem;   
    text-transform: uppercase;
    text-align: center;
    text-shadow: 1px 1px 4px #0d0d0d;
}

.mount-box img {
    border: 2px solid #114379;
}


/* mountAndSupportCodeEnd */

/* specsCodeStart */

.specs {
    color:#114379;
}

.specs-holder {
    padding-bottom: 50px;
}

.specs-holder h1 {
    font-weight: 600;
    text-align: center;
    padding: 1.5rem;
}

.specs-holder ul li {
    font-size: 1.2rem;
    padding-bottom: 15px;
}

.specs-holder h2 {
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.specs-holder p {
    font-size: 1.2rem;
    padding-bottom: 1rem;
}

.specs-holder .btn-prim {
    color: #fff;
    margin: auto;
}

.specs-holder .btn-prim:hover {
    color:#114379;
    background-color: none;
    border: 1px solid #114379;
}

.specs-holder a {
    text-decoration: none;
}

/* specsCodeEnd */

/* transportCodeStart */

.transport {
    background-image: url(../img/transport.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
}

.transport-holder h1 {
    text-align: center;
    font-weight: 500;
    padding-bottom: 50px;
}

.transport-holder ul li {
    font-size: 1.3rem;
    padding-bottom: 25px;
}

/* transportCodeEnd */

/* priceCodeStart */

.price {
  padding-bottom: 50px;
}

.price-top div {
    color:#114379;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.price-box.flex {
    justify-content: space-between;
}

.price-box div {
    font-size: 1.2rem;
    font-weight: 500;
    color:#114379;
}

/* priceCodeEnd */

/* contact-sectionCodeStart */

.contact-section {
    padding-top: 90px;
}

.contact-sec-box h1 {
    color:#114379;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    padding-bottom: 25px;
}

.contact-sec-box ul {
    margin-left: -30px;
}

.contact-sec-box ul li {
    list-style-type: none;
    color:#114379;
    font-size: 1.1rem;
    padding: 15px;
}

.contact-sec-box ul li i {
    padding-right: 15px;
}

/* contact-sectionCodeEnd */

/* galleryCodeStart */

.gallery {
  margin-top: 88px;
  background-image: url(../img/bckg3-crop.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.gallery-holder.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.gallery h1 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
}

.box-img-one {
  background-image: url(../img/door-one.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-price {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-color: #114379;
  padding-bottom: 10px;
}

.box-img-two {
  background-image: url(../img/door-two.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}



.box-img-three {
  background-image: url(../img/door-three.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-img-four {
  background-image: url(../img/door-four.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-img-five {
  background-image: url(../img/door-five.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-img-six {
  background-image: url(../img/door-six.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-img-seven {
  background-image: url(../img/door-seven.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-img-eight {
  background-image: url(../img/door-eight.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-img-nine {
  background-image: url(../img/door-nine.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-img-ten {
  background-image: url(../img/door-ten.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

.box-img-eleven {
  background-image: url(../img/door-eleven.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 600px;
  border: 5px solid #114379;
}

/* galleryCodeEnd */

/* footerCodeStart */

footer {
    background-color: #114379;
    color: #fff;
}

footer h1 {
    font-weight: 400;
    font-size: 1.9rem;
    text-transform: uppercase;
}

.foot-top div {
    font-size: 1.3rem;
    padding-bottom: 5px;
    margin-left: -25px;
}

.foot-top a {
    text-decoration: none;
    color: #fff;
}

.foot-top i {
    padding-right: 15px;
}

.foot-bottom div {
    font-size: 1.3rem;
    padding-bottom: 5px;
    margin-left: -25px;
}

.foot-bottom a {
    text-decoration: none;
    color: #fff;
}

.foot-bottom i {
    padding-right: 15px;
}

/* footerCodeEnd */

/* mediaQueriesCodeStart */
/*indexCode*/
@media (min-width: 665px) {
  .nav-holder.flex {
    gap: 25rem;
  }

  .nav-left a img {
    width: 150px;
  }

  .wide-menu a:hover {
    border-bottom: 2px solid #114379;
  }

  .hamburger-menu div {
    width: 2.2rem;
  }

  .hero-top div:first-child {
    font-size: 3rem;
  }

  .hero-top div:last-child {
    font-size: 2rem;
  }

  .btn-prim {
    font-size: 1.8rem;
    padding: 17px;
    width: 13rem;
  }

  .btn-prim:hover {
    
  }

  .btn-sec {
    font-size: 1.8rem;
    padding: 17px;
    width: 13rem;
  }

  .benefit-holder {
    padding-bottom: 50px;
  }

  .bene-box-img-one {
    width: 175px;
    height: 175px;
  }

  .bene-box-img-two {
    width: 175px;
    height: 175px;
  }

  .bene-box-img-three {
    width: 175px;
    height: 175px;
  }

  .bene-box div:last-child {
    font-size: 1.8rem;
  }

  .mount-holder h1 {
    font-size: 2.6rem;
  }

  .mount-holder h3 {
    font-size: 1.8rem;
  }

  .mount-box div:first-child {
    font-size: 2rem;
    width: 100%;
  }

  .mount-box div:last-child a img{
    width: 250px;
  }

  .specs-holder h1 {
    font-size: 3rem;
  }

  .specs-holder ul li {
    font-size: 1.6rem;
  }

  .specs-holder h2 {
    font-size: 2.2rem;
  }

  .specs-holder p {
    font-size: 1.8rem;
  }

  .transport-holder h1 {
    font-size: 3rem;
  }

  .transport-holder ul li {
    font-size: 1.9rem;
  }

  .price-top div {
    font-size: 3rem;
  }

  .price-box div {
    font-size: 1.9rem;
  }

  .price-box.flex {
    gap: 150px;
  }

  .foot-top h1 {
    font-size: 2.5rem;
  }

  .foot-bottom h1 {
    font-size: 2.5rem;
  }

  .foot-holder a {
    font-size: 1.8rem;
  }

  .nav-menu {
    width: 300px;
  }

  .nav-menu a {
    font-size: 1.8rem;
    padding-left: 75px;
  }
/*contactCode*/

  .contact-sec-box h1 {
    font-size: 3rem;
  }

  .contact-sec-box ul li {
    font-size: 1.8rem;
  }
}

@media (min-width: 769px) {

  nav.grid {
    padding: 0;
  }

  .nav-holder.flex { 
    padding: 0;
    gap: 12rem;
  }

  .wide-menu a {
    text-decoration: none;
    color:#114379;
    font-size: 1.3rem;
    font-weight: 500;
  }
/*galleryCode*/
  .gallery h1 {
    font-size: 2.8rem;
  }
}

@media (min-width: 1024px) {
/*indexCode*/
  .container {
    max-width: 100%;
  }
  
  .nav-holder.flex {
    padding: 0;
  }

  .foot-holder.grid {
    display: flex;
    align-items: baseline;
    gap: 150px;
  }

/*contactCode*/
  .contact-section {
    padding-top: 110px;
  }

/*galleryCode*/
  .gallery {
    background-attachment: fixed;
  }

  .gallery h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .nav-holder.flex {
    gap: 500px;
  }

  .nav-left a img {
    width: 180px;
  }

  .wide-menu ul li a {
    font-size: 1.7rem;
  }

  .wide-menu ul.flex {
    gap: 50px;
  }

  .hero-top div:first-child {
    font-size: 4.5rem;
  }

  .hero-top div:last-child {
    font-size: 2.8rem;
  }

  .hero-bottom.grid {
    display: flex;
  }

  .benefit-section {
    height: 40vh;
  }

  .benefit-holder.grid {
    display: flex;
    gap: 150px;
  }

  .mount-and-support {
    background-attachment: fixed;
  }

  .mount-holder h1 {
    font-size: 3rem;
    font-weight: 500;
  }

  .mount-holder h3 {
    width: 40%;
  }

  .mount-box-holder.grid {
    display: flex;
    justify-content: center;
    align-items:baseline;
  }

  #second-door {
    width: 225px;
  }

  .specs-holder ul li {
    font-size: 2rem;
  }

  .transport {
    background-attachment: fixed;
  }

  .transport-holder ul li { 
    font-size: 2.2rem;
  }

  .price-box.flex {
    gap: 300px;
  }

  .price-box div {
    font-size: 2.2rem;
  }

  .foot-holder.grid {
    gap: 350px;
  }
  /*galleryCode*/
  .gallery {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .gallery h1 {
    font-size: 3.5rem;
  }
}


/* mediaQueriesCodeEnd */
