/* Hero */
.hero {
  margin-top: unset;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .slide-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-slides {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
}
.slide-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 4rem;
}
.slide-content .text-wrap {
  position: absolute;
  bottom: 10%;
  padding: 2rem 3rem;
  border-bottom: 5px var(--btn-bg) solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bts {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-title {
  font-size: 4rem;
  color: var(--sub-text-color);
  line-height: 1;
  text-align: center;
}
.slide-tag-txt {
  font-size: 2rem;
  color: var(--sub-text-color);
  line-height: 1;
  text-align: center;
  margin-top: 1rem;
}
.btn-ic {
  width: 25px;
  height: 25px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: var(--sub-text-color);
  font-weight: bold;
  font-size: var(--main-text-size);
  transition: 0.6s ease;
  background-color: var(--btn-bg);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.next {
  right: 1%;
}
.prev {
  left: 1%;
}
.prev:hover,
.next:hover {
  background-color: rgba(236, 113, 31, 0.76);
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* Hero */
/* About */
.about .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.about-left {
  max-width: 500px;
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-left .img {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-left .img .img-1 {
  position: absolute;
  width: 50%;
  height: 250px;
  border: 10px var(--sub-text-color) solid;
  bottom: 0;
  left: 0;
  border-top-right-radius: 4rem;
}
.about-left .img .img-1 img {
  border-top-right-radius: 3rem;
}

.about-left .img .img-2 {
  position: absolute;
  width: 50%;
  bottom: 0;
  right: 0;
  height: 150px;
  border: 10px var(--sub-text-color) solid;
  border-top-right-radius: 90%;
}
.about-left .img .img-2 img {
  border-top-right-radius: 95%;
}
.about-right {
  max-width: 600px;
  width: 100%;
  display: flex;
  padding-top: 2rem;
  flex-direction: column;
  align-items: center;
}
.about-right .about-txt {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about-right .about-txt h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.about-right .about-txt p {
  font-size: var(--main-text-size);
  margin-bottom: 0.5rem;
}
.mis {
  padding: 0.5rem;
  width: 100%;
  border-left: 5px solid var(--btn-bg);
  margin: 0.5rem;
}
.mis h2 {
  font-size: 1.5rem !important;
}
.mis p {
  font-size: 1.4rem !important;
}

/* About */
/* What we do */
.what-we-do .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.what-we-do .container h2 {
  font-size: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.what-we-do .container h2 span {
  font-size: 2rem;
  display: flex;
  align-items: center;
  text-align: center;
  border-bottom: 4px solid var(--btn-bg);
  padding-bottom: 0.5rem;
}
.what-we-do .container span {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  text-align: center;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}
.what-we-do-cont {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
.what {
  max-width: 300px;
  height: 300px;
  width: 100%;
  background-color: var(--sub-text-color);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 1rem;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
}
.what-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.what-icon img {
  width: 60%;
  height: 60%;
}
.what-dtls {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.what-dtls h3 {
  font-size: 1.8rem;
  text-align: center;
}
.what-dtls p {
  font-size: 1.5rem;
  text-align: center;
}
/* What we do */

/* cultures */
.cultures {
  height: 80vh;
}
.cultures .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cultures .container h2 {
  font-size: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
}
.cultures .container span {
  font-size: 2rem;
  display: flex;
  align-items: center;
  text-align: center;
  border-bottom: 4px solid var(--btn-bg);
  padding-bottom: 0.2rem;
  color: #000;
}
.culture-container {
  margin-top: 3rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.culture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
}
.culture .culture-img {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 1%;
}
.culture-dtls {
  width: 60%;
  position: absolute;
  background-color: #fff;
  padding: 2rem;
  right: 1%;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
  color: #000;
}
.cul-btns {
  position: absolute;
  right: 10%;
  display: flex;
  align-items: center;
  bottom: 0;
}
.cul-btns .cul-prev,
.cul-btns .cul-next {
  width: 45px;
  height: 45px;
  background-color: var(--btn-bg);
  color: #fff;
  font-size: 2rem;
  margin: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cul-btns .cul-prev:hover,
.cul-btns .cul-next:hover {
  background-color: var(--btn-bg-hover);
}
.culfade {
  animation-name: culfade;
  animation-duration: 2.5s;
}

@keyframes culfade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* cultures */
/* Contact */
.contact {
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
.contact-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.contact-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.addresses {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.address {
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
  margin: 1rem;
}
.add-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px var(--btn-bg) solid;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-icon svg {
  width: 50%;
  height: 50%;
}
.add-dtls .paragraph {
  font-size: 1.5rem;
  color: #000;
}
.contact-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.contact-right h2,
.contact-left h2 {
  text-align: center;
  font-size: 2rem;
}
.c-frm {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-frm .c-frm-rp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nms {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.nm {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 1rem;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
  padding: 2rem;
}
.nm label {
  width: 100%;
  text-align: left;
  font-size: var(--main-text-size);
}
.nm input {
  width: 100%;
  padding: 1rem 2rem;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
  margin-top: 1rem;
}
.ms {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
  margin-top: 1.5rem;
}
.ms label {
  text-align: left;
  font-size: var(--main-text-size);
}
.ms textarea {
  padding: 1rem 2rem;
  border: solid 1px rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
  margin-top: 1rem;
  width: 100%;
  height: 250px;
  resize: none;
}
/* Contact */

@media screen and (min-width: 1290px) {
  .about-container {
    align-items: flex-start;
  }
  .about-left {
    max-width: 400px;
  }
  .about-right {
    padding: 0 2rem;
  }
  .contact-container {
    align-items: flex-start;
  }
  .contact-left {
    max-width: 450px;
  }
  .contact-right {
    max-width: 700px;
    padding: 0 2rem;
  }
  .nm {
    max-width: 300px;
    margin: 1rem;
  }
  .slide-content .text-wrap {
    border-left: 5px var(--btn-bg) solid;
    border-bottom: none;
  }
}
@media screen and (max-width: 1000px) {
  .cultures,
  .cultures .container,
  .culture-container {
    height: unset;
  }
  .culture {
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
    height: unset;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .culture .culture-img {
    position: unset;
    width: 100%;
    height: unset;
  }
  .culture-dtls {
    position: unset;
    width: 100%;
    border-radius: unset;
    box-shadow: unset;
  }
  .slide-title,
  .what-we-do .container h2,
  .cultures .container h2 {
    font-size: 2rem;
  }
  .slide-content .text-wrap {
    width: 90%;
  }
  .what-we-do .container h2 span {
    margin-top: 1rem;
  }
  .cul-btns {
    bottom: -10%;
    left: 30%;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 735px) {
  .cultures,
  .cultures .container,
  .culture-container {
    height: unset;
  }
  .culture {
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
    height: unset;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .culture .culture-img {
    position: unset;
    width: 100%;
    height: unset;
  }
  .culture-dtls {
    position: unset;
    width: 100%;
    border-radius: unset;
    box-shadow: unset;
  }
  .slide-title,
  .what-we-do .container h2,
  .cultures .container h2 {
    font-size: 2rem;
  }
  .slide-content .text-wrap {
    width: 90%;
  }
  .what-we-do .container h2 span {
    margin-top: 1rem;
  }
  .cul-btns {
    bottom: -10%;
    left: 30%;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
}
