@import url("./common-style.css");
.main-screen {
  width: 100%;
  height: 80vh;
  margin-bottom: -4px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-screen__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.main-screen__title__heading {
  display: flex;
  padding: 10px 60px;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #F40107;
  border-bottom: 2px solid #F40107;
  background: linear-gradient(270deg, #810101 0%, #F30006 32.81%, #F30006 51.56%, #F30006 70.83%, #810101 100%);
  box-shadow: 0px 7.1px 11.584px 0px #260502;
  text-align: center;
  color: #FFF;
  font-family: Montserrat;
  font-size: var(--step-2);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 10.8px;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .main-screen__title__heading {
    font-size: var(--step-0);
  }
}

.main-screen-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.main-screen-img__source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-screen__content {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  gap: 3rem;
}

.main-screen__logo {
  width: 80%;
  max-width: 1200px;
  height: auto;
  margin-top: -15px;
}
.main-screen__logo__source {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-screen__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
}

.main-screen__caption {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: var(--step-2);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.main-screen__buttons-wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.button {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #FFF;
  border-radius: 100px;
  background: #3BAA34;
  /* Montserrat SemiBold_24 */
  font-family: Montserrat;
  font-size: var(--step-1);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.3s;
  box-sizing: border-box;
}
.button:hover {
  opacity: 0.8;
}
.button._white {
  background: #fff;
  color: #21201f;
}

.title {
  text-align: center;
  width: 100%;
}
.title .main-heading {
  position: relative;
  z-index: 50;
  padding: 20px;
  color: #fff;
  background: linear-gradient(45deg, #7A0000, #FE0000, #7A0000);
  border-top: 2px solid #FE0000;
  border-bottom: 2px solid #FE0000;
  box-shadow: 0px 3px 8px 1px rgba(120, 20, 11, 0.46);
}

.maps {
  position: relative;
  padding: 50px 30px;
  background: #4c0b06;
  z-index: 40;
}
@media screen and (max-width: 768px) {
  .maps {
    padding: 20px 10px 30px 10px;
  }
}

.maps-heading {
  width: calc(100% - 40px);
  text-align: center;
  margin: 10px 0 0 0;
  padding: 20px;
  border-radius: 30px 30px 0 0;
  color: #fff;
  background: #db1a08;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .maps-heading {
    width: calc(100% - 20px);
    font-size: 16px;
    padding: 15px 10px;
  }
}

.maps-wrapper {
  background: #db1a08;
  border-radius: 0 0 30px 30px;
  display: flex;
  flex-direction: row;
  gap: 0;
  position: relative;
}

iframe {
  border-radius: 30px 0 0 30px;
  box-shadow: 0px -1px 18px 0px rgba(84, 20, 11, 0.48);
  overflow: hidden;
  z-index: 0;
  width: 60%;
}

.address-list {
  display: flex;
  padding: 25px 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 35px;
  background: #FFF;
  box-shadow: 0px -1px 18px 0px rgba(84, 20, 11, 0.48);
  border-radius: 0 30px 30px 0;
  z-index: 5;
  width: 40%;
  box-sizing: border-box;
}
.address-list ul {
  width: 100%;
}

.address-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  background-color: #3BAA34;
  border-radius: 25px;
}
.address-item .button {
  width: 100%;
  margin-top: 15px;
}

.address-item__location,
.address-item__time {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}
.address-item__location svg,
.address-item__time svg {
  height: 20px;
  width: 20px;
}

.address-item__heading {
  color: #fff;
  /* Montserrat Medium_20 */
  font-family: Montserrat;
  font-size: var(--step-2);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7px;
}

.address-item__caption {
  color: #fff;
  /* Montserrat Medium_20 */
  font-family: Montserrat;
  font-size: var(--step-1);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.address-list__sub {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.address-item__sub {
  margin: 7px 0;
}

.address-item__sub__heading {
  color: #fff;
  /* Montserrat Medium_20 */
  font-family: Montserrat;
  font-size: var(--step-1);
  font-style: normal;
  font-weight: 500;
  line-height: 103%;
  margin-bottom: 5px;
}

.address-item__sub__caption {
  color: #fff;
  /* Montserrat Medium_20 */
  font-family: Montserrat;
  font-size: var(--step-0);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 992px) {
  .button {
    padding: 15px 20px;
  }
  .main-screen__content {
    justify-content: space-between;
    gap: 10rem;
  }
  .main-screen__title__heading {
    padding: 10px 15px;
    letter-spacing: 5.8px;
  }
  .main-screen__footer {
    padding: 0 0 5rem;
    gap: 15px;
  }
  .maps-wrapper {
    flex-direction: column;
  }
  iframe {
    height: 400px;
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
  .address-list {
    width: 100%;
    border-radius: 0 0 30px 30px;
    padding: 15px;
    gap: 25px;
  }
  .address-item__sub {
    margin: 3px 0;
  }
  .address-item__location,
  .address-item__time {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 7px;
    margin: 5px 0;
  }
  .address-item__location svg,
  .address-item__time svg {
    height: 20px;
    width: 20px;
  }
}/*# sourceMappingURL=style.css.map */