* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  font-family: 'Montserrat', sans-serif;
  background-color: #E0E0E0;
  color: #000000;
  overflow-x: hidden;
}

.container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.top-box {
    padding: 50px 0px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 50px;
}


.info-box h1 {
    margin-bottom: 10px;
}

.info-box h2 {
    font-weight: 400;
    margin-bottom: 10px;
}

.info-box h3 {
    font-weight: 400;
    margin-bottom: 20px;
}



.info-box  img {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.oxxo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 0px;
}

.buttons-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.buttons-icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
}


.extra-btn {    
  max-width: 900px;
  width: 100%;
  height: 35px;
  background: #444343;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}

.extra-btn a {
  text-decoration: none;
  color: white;
}

.btn-call {
    max-width: 160px;
    width: 100%;
    height: 35px;
    background-color: green;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.btn-write {
    max-width: 200px;
    width: 100%;
    height: 35px;
    background: #444343;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-loc {
    max-width: 40px;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    background: #444343;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.btn-insta {
    max-width: 40px;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    background: #444343;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.btn-telg {
    max-width: 40px;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    background: #444343;
    border: none;
    color: white;
    font-size: 18px;
}

.btn-whats {
    max-width: 40px;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    background: #444343;
    border: none;
    color: white;
    font-size: 18px;
}

.hr {
  max-width: 100%;
  width: 100%;
  height: 1px;
  margin-bottom: 15px;
  background: #4a4a4a;
}



.link-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 20px;
}

.bottom-box a {
    position: relative;
    color: #000000;
    text-decoration: none;
    font-size: 22px;
}

.page4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.page4::before {
  content: "";
  background-color: #000000;
  position: absolute;
  top: -17px;
  left: 0;
  height: 3px;
  width: 100%;
}

.page0 {
    opacity: 0.8;
    font-weight: 300;
}

.page2 {
    font-weight: 300;
    opacity: 0.8;
}

.page {
    font-weight: 300;
    opacity: 0.8;
}

.page3 {
    font-weight: 300;
    opacity: 0.8;
}

.images-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 50px;
}

.images-box img {
    max-width: 100%;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.texts-box {
    margin-bottom: 30px;
}

.texts-box h1 {
    text-align: center;
    font-weight: 200;
    font-size: 26px;
}

.modal {
    z-index: 999;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.start-modal {
    transition: 0.5s ease;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 600px;
    width: 100%;
    background: #444343;
    height: 350px;
    z-index: 100;
    border-radius: 6px;
    padding: 40px 40px;
}

.modal-text {
    margin-bottom: 40px;
    text-align: center;
}


.hidden {
    display: none;
}

.modal-input {
    display: flex;
    flex-direction: column;
}

.modal-input input {
    max-width: 100%;
    width: 100%;
    height: 40px;
    border: none;
    background: rgb(228, 228, 228);
    border-radius: 10px;
    outline: none;
    color: black;
    padding: 10px;
    font-size: 16px;
}

.inputbox {
    position: relative;
    /* border-bottom: 1px solid white; */
}

.modal-input input::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgb(52, 52, 52);
}

.modal-input button {
    max-width: 300px;
    width: 100%;
    height: 35px;   
    border: none;
    border-radius: 10px;
    background-color: green;
    color: white;
    font-size: 18px;
    margin-top: 30px;
}

    













.site-section {
    margin-bottom: 50px;
  }
  
  .section-h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing:  0.32em;
    text-align: center;
    margin-bottom: 80px;
  }
  
  .section-info p {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: grey;
  }


  .section-form input {
    font-family: Montserrat, sans-serif;
    max-width: 100%;
    width: 100%;
    height: 50px;
    border-radius: 0.75em;
    padding-left: 22px;
    color: #fff !important;
    background-color: #444343;
    border: 1px solid #323232;
    outline: none;
  }

  .site-section input::placeholder {
    color: white;
  }
  
  /* input:valid,
  input:focus {
    border: 2px solid #c5a47e;
  }
  textarea:valid,
  textarea:focus {
    border: 2px solid #c5a47e;
  } */
  
  
  .section-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .section-form22 textarea {
    font-family: Montserrat, sans-serif;
    max-width: 100%;
    height: 150px;
    background-color: #444343;
    border-radius: 0.75em;
    padding: 10px 22px;
    resize: none;
    margin-top: 10px;
    color: white !important;
  }

  .section-form22 textarea::placeholder {
    color: white;
  }
  
  .section-form22 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .inpBtn  {
    width: 160px;
    height: 40px;
    border-radius: 30px;
    background-color: #1D7873;
    color: white;
    border: none;
    cursor: pointer;
  }

  .contact-box {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }

  .contact-texts h2 {
    margin-bottom: 40px;
  }

  .texts-boxde {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 0px;
  }

  .company-name {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 18px;
  }

  .boxde-one p {
    font-weight: 200;
    font-size: 14px;
  }

.section-h2 {
    margin-bottom: 30px;
}

.ofis-h2 {
    margin-bottom: 30px;
}

.box-map iframe {
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
}

footer {
  /* background-color: #444343;
  color: white; */
}

.footer-box {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 200px;
  width: 100%;
}

.carry-footer h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

.carry-footer p {
  margin-bottom: 20px;
}

.finish-footer h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

.linksde {
  display: flex;
  align-items: center;
  gap: 30px;
}

.linksde a {
  text-decoration: none;
  color: #000000;
  font-size: 24px;
}

.linksde button {
  border-radius: 8px;
  font-size: 22px;
  border: none;
  width: 40px;
  max-width: 100%;
  height: 40px;
}


.image-box-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
}

.image-oneee {
  width: 910px;
  height: 500px;
  object-fit: cover;
}

.image-twooo {
  width: 400px;
  height: 500px;
  object-fit: cover;
}

.part-box {
  display: flex;  
  gap: 40px;
  margin-top: 30px;
}

.lets-box h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.lets-box p {
  font-size: 19px;
  margin-bottom: 30px;
}

.lets-box button {
  width: 100%;
  border-radius: 10px;
  max-width: 210px;
  height: 60px;
  background-color: #FFFFFF;
  border-color: #272727;
  font-size: 20px;
  border: none ;
  cursor: pointer;
}


.lets-box a {
  text-decoration: none;
  color: #000000;
}

.start-head-box {
  width: 100%;
  max-width: 1190px;
  display: flex;
  justify-content: space-between;
}

.start-icons-box {
  display: flex;
  gap: 10px;
}

.start-icons-box button {
  border-radius: 8px;
  font-size: 22px;
  border: none;
  width: 40px;
  max-width: 100%;
  height: 40px;
}


.both-box { 
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 100px;
}

.both-box h1 {
  font-size: 26px;
  margin-bottom: 20px;
}

.both-box p {
  font-size: 20px;
  margin-bottom: 20px;
}
.both-box button {
  font-family: Montserrat;
  width: 100%;
  max-width: 220px;
  height: 50px;
  border: none;
  border-radius: 8px;
  font-size: 22px;
}

.hrr {
  margin-bottom: 20px;
  color: #000000;
}

.start-icons-box a {
  text-decoration: none;
  color: #000000;
}



@media screen and (max-width:770px) {
  .contact-box {
    display: inline-block;
  }
  .modal-input button {
    max-width: 60%;
    width: 100%;
}
}

@media screen and (max-width:500px) {
.section-form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.texts-boxde {
  display: inline-block;
}
.adapt {
  margin-bottom: 20px !important;
}
.info {
  margin-bottom: 60px;
}
.contact-texts h2 {
  font-size: 36px;
}
.boxde-one div {
  font-size: 20px;
}
.boxde-one p {
  font-size: 16px;
}
.boxde-one {
  margin-bottom: 30px;
}
.boxde-two {
  margin-bottom: 30px;
}
.boxde-two div {
  font-size: 18px;
}
.boxde-thre div {
  font-size: 18px;
}
}

@media screen and (max-width:850px) {
.footer-box {
    display: flex;
    flex-direction: column;
}
.start-footer {
    margin-bottom: 50px;
}
.carry-footer {
    margin-bottom: 50px;
}
.link-box {
  display: block;
}
}


@media screen and (max-width:850px) {


  .image-box-two {
    display: none;
}

.image-oneee {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.image-twooo {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.part-box {
    display: block;
}

.lets-box {
    text-align: center;
}

.footer-box {
   display: block;
   padding: 30px 0px;
}
.start-footer {
    margin-bottom: 50px;
}
.carry-footer {
    margin-bottom: 50px;
}
.link-box {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.link-box a {
    font-size: 16px;
}
.images-box img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
}

@media screen and (max-width:700px) {
.top-box {
    display: block;
    padding: 50px 0 0 0;
}
.info-box h1 {
    display: none;
}
.info-box {
    text-align: left;
    font-size: 14px;
}
.img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.hiddenli {
    display: block;
}
.buttons-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 20px;
}
.oxxo {
    display: block;
}
.buttons-icon-box {
    display: flex;
    align-items: center;
    gap: 8px;
}
.buttons-box button {
    font-size: 14px;
}
.page0 {
    display: none;
}
.page4 {
    display: none;
}
.extra-btn {
    display: block;
    font-size: 14px;
}
.btn-call {
    max-width: 100%;
    width: 100%;
}
.btn-write {
    max-width: 100%;
    width: 100%;
}
.buttons-box {
    display: flex;
    gap: 8px;
}
.hr {
  margin-top: 30px;
}
}


@media screen and (max-width:600px) {
  .start-head-box {
      display: block;
  }
  .imagelar-box-one {
      margin-bottom: 20px;
  }
}