@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

main.landing-main {
  display: flex;
  align-items: center;
  gap: 65px;
  height: 100vh;
}

section.image-section {
  display: flex;
  height: 100vh;
  width: 50%;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: fit-content;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 50%;
  padding-right: 50px;
  padding-block: 40px;
  height: 100vh;
  justify-content: space-between;
}

.main-logo {
  display: flex;
  width: 100%;
  justify-content: center;
}

.main-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.content-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 15px;
}

.content-header h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.content-header p {
  line-height: 1.2;
}

.events {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.events h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.event-listing {
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
}

.event-listing .evening-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  width: 30%;
  overflow: hidden;
}

.event-listing .evening-item img {
  width: 100%;
}

.address {
  display: flex;
  gap: 60px;
}

.address-block {
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

h5.address-title {
  font-weight: 700;
  text-transform: uppercase;
}

.email {
  display: flex;
  width: 100%;
}

.email p {
  font-size: 16px;
}

.email p strong {
  font-weight: 500;
}

.email a {
  text-decoration: underline;
  color: #58585b;
}

.email a:hover {
  color: #3d62a3;
}

.phone {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.phone-block {
  display: flex;
  flex-direction: column;
}

.phone-block a {
  text-decoration: none;
  color: #58585b;
  line-height: 1.2;
  margin-block: 5px;
}

.phone-block a:hover {
  color: #3d62a3;
}

.copyright {
  display: flex;
  justify-content: center;
  width: 100%;
}

.copyright p {
  color: #58585b;
}

@media screen and (max-width: 1600px) {
  .main-wrap {
    gap: 25px;
  }
}

@media screen and (max-width: 1400px) {
  .main-wrap {
    justify-content: flex-start;
    max-height: 550px;
    overflow: auto;
  }
  .image-section img {
    width: fit-content;
    height: 100%;
    object-position: -2vh;
  }
  section.image-section {
    width: 45%;
  }
  .content-section {
    width: 55%;
  }
}

@media screen and (max-width: 1370px) {
  .image-section img {
    object-position: 0vh;
  }
}

@media screen and (max-width: 1280px) {
  section.image-section {
    width: 40%;
  }
  .content-section {
    width: 60%;
  }
}

@media screen and (max-width: 1230px) {
  .image-section img {
    object-position: -8vh;
  }
}

@media screen and (max-width: 1024px) {
  .image-section img {
    object-position: -13vh;
  }
}

@media screen and (min-width: 993px) {
  .small-screen {
    display: none;
  }
  .sm {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .md {
    display: none;
  }
  .sm {
    display: flex;
  }
  main.landing-main {
    gap: 0;
    height: auto;
    align-items: flex-start;
  }
  .small-screen {
    display: flex;
    width: 100%;
  }
  .small-screen img {
    width: 100%;
  }
  section.image-section {
    display: none;
  }
  .content-section {
    width: 100%;
    padding-right: 0;
    gap: 25px;
  }
  .main-wrap {
    overflow: visible;
    max-height: unset;
    padding: 30px;
  }
  .copyright {
    padding: 20px;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .copyright p {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .event-listing {
    padding-right: 0;
  }
  .content-section {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .email p {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

@media screen and (max-width: 568px) {
  .event-listing {
    flex-wrap: wrap;
    gap: 20px;
  }
  .event-listing .evening-item {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .events h2 {
    font-size: 22px;
    font-weight: 600;
  }
  .main-wrap {
    padding: 10px;
  }
  .address {
    gap: 30px;
    flex-wrap: wrap;
  }
  .phone {
    gap: 2px;
    flex-wrap: wrap;
  }
  .phone-block {
    width: 100%;
  }
}
