#sec-2 {
  background-image :url(../../images/sec-2/img1.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  
  padding: 3rem;
  color: white;

  position: relative;
  isolation: isolate;

  z-index: 2;
}

#sec-2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;

  background: 
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8),
      rgb(203, 11, 11, 0.6)
    )
}

#sec-2::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;

  background-color: rgba(0, 0, 0, 0.4);
}

#sec-2 main {
  display: flex;
  justify-content: center;
  min-width: 100%;
}

#sec-2 .img-cont {
  display: none;
  justify-content: center;
  max-width: max-content;
}

#sec-2 .about-bgcolor {
  display: flex;
}

#sec-2 .about-cont {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem;

}

#sec-2 h1 {
  font-size: clamp(3.2rem, 5vw, 5rem);
  text-shadow: 4px 4px 4px black;
  color: white;

  margin-bottom: 1.5rem;
}

#sec-2 p {
  max-width: 64.1rem;
font-size: 16px;
  margin-bottom: 1.5rem;
}

#sec-2 .contact-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sec-2 .contact-cont .btn {
  font-size: clamp(1.2rem, 2vw, 1.7rem);

  background-color: #CB0B0B;
  font-family: Montserrat;
  color: white;
  margin-bottom: 1.5rem;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-width: 13.4rem;
  min-height: 5.1rem;
  padding: 10px 20px;
}

#sec-2 .contact-cont .btn > * {
  min-height: min-content;
  margin: 0;
}


#sec-2 .call {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 1.3rem, 1.5rem);
  letter-spacing: 0.648px;
  line-height: 1.2;
}

#sec-2 .num {
  font-family: 'Good Times Rg';
  font-size: clamp(1.5rem, 5vw, 4.5rem);
}

@media screen and (min-width: 990px) {
  #sec-2 { 
    background-image: none;
    padding: 0;
    color: white;

    margin-top: -3rem;
  }

  #sec-2::before {
    content: '';
    position: absolute;
    display: none;
  }

  #sec-2::after {
    content: '';
    position: absolute;
    display: none;
  }

  #sec-2 .img-cont {
    display: block;
    z-index: 2;
  }

  #sec-2 .img-cont img {
    box-shadow: 4px 4px 4px black;
  }
  
  #sec-2 main {
    display: flex;
  }

  #sec-2 main > * {
    flex: 1 1 auto;
  }

  #sec-2 .about-bgcolor {
    background-image: url(../../images/sec-2/bg-red.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    isolation: isolate;

    margin-top: 3rem;
    margin-bottom: 4rem;
    margin-left: -1rem;
    z-index: 1;
  }

  #sec-2 .about-cont {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
  }

  #sec-2 .about-cont> * {
    margin-right: auto;
    margin-left: 5.4rem;
  }

  #sec-2 h1 {
    font-size: 3.2rem;
    text-shadow: 4px 4px 4px black;

    margin-bottom: 2.4rem;
  }

  #sec-2 p {
    max-width: 64.1rem;
    font-size: 1.2rem;

    margin-bottom: 1.5rem;
font-size: clamp(1.2rem, 2vw, 1.6rem);
  }

  #sec-2 .contact-cont {
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1rem;
  }

  #sec-2 .contact-cont .btn {
    font-size: 1.2rem;
padding: 0 10px;
  }

  #sec-2 .contacts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: -.5rem;
  }

  #sec-2 .call {
    font-size: 1rem;
  }

  #sec-2 .num {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1920px) {

  #sec-2 .about-cont {
    align-items: flex-start;
    justify-content: flex-start;

    padding-top: 15.2rem;
  }

  #sec-2 .about-cont> * {
    margin-left: 11.4rem;
  }

  #sec-2 h1 {
    font-size: clamp(3.2rem, 5vw, 5rem);
    margin-bottom: 3.4rem;
  }

  #sec-2 p {
    max-width: 64.1rem;
    font-size: 1.6rem;

    margin-bottom: 2.2rem;
  }

  #sec-2 .contact-cont {
    column-gap: 1.2rem;
  }

  #sec-2 .contact-cont .btn {
    font-size: 1.7rem;
    min-width: 23.4rem;
    min-height: 6.1rem;
  }

  #sec-2 .contacts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: -.5rem;
  }

  #sec-2 .contacts > * {
    max-height: min-content;
    line-height: 1.2;
  }

  #sec-2 .call {
    font-size: 1.5rem;
  }

  #sec-2 .num {
    font-size: 3.7rem;
  }
}