/*variables*/
/*common attributes for all elements*/
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/*setting wrapper styles*/
.wrapper {
  font-family: "Rastin-Line";
  overflow-x: hidden;
  background: rgb(242, 255, 255);
  background: linear-gradient(90deg, rgb(242, 255, 255) 0%, rgb(177, 224, 249) 100%);
  /*contact to school styles*/
  /*calendar styles*/
  /*clock styles*/
  /*back to top styles*/
}

.wrapper .contact-us-part {
  transform: translateY(-50px);
  animation: opacities 0.7s forwards;
  width: 70%;
}

.wrapper .contact-us-part .texts p {
  font-size: 16px;
}

.wrapper .contact-us-part .social-medias a img {
  width: 40px;
  height: auto;
}

.wrapper .contact-us-part .social-medias p {
  font-size: 16px;
}

.wrapper .contact-us-part .call-numbers .call-number-one a img,
.wrapper .contact-us-part .call-numbers .call-number-two a img {
  width: 35px;
  height: auto;
}

.wrapper .contact-us-part .call-numbers .call-number-one p,
.wrapper .contact-us-part .call-numbers .call-number-two p {
  font-size: 16px;
}

.wrapper .contact-us-part .emails .email span {
  font-size: 16px;
}

.wrapper .contact-us-part .location iframe {
  width: 500px;
  height: 450px;
}

.wrapper .calendar .calendar-btn {
  position: fixed;
  bottom: 205px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 20px;
  z-index: 1000;
}

.wrapper .calendar .calendar-box {
  position: fixed;
  bottom: 213px;
  right: 105px;
  width: 200px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 15px;
  display: none;
  text-align: center;
  z-index: 999;
}

.wrapper .calendar .calendar-box .date-display {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 5px;
}

.wrapper .clock #clockContainer {
  position: fixed;
  bottom: 110px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  z-index: 1000;
}

.wrapper .clock #clockContainer {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .clock #clockContainer .clickable {
  font-size: 20px;
}

.wrapper .clock #clockModal {
  position: fixed;
  bottom: 81px;
  right: 48px;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1001;
}

.wrapper .clock #clockModal #modalContent {
  text-align: center;
  height: 30px;
}

.wrapper .clock #clockModal #modalClock {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.wrapper .clock .hidden {
  display: none;
}

.wrapper .arrowtop-part {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .arrowtop-part .arrowtop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.wrapper .arrowtop-part .arrowtop img {
  background-color: #FFFFFF;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .arrowtop-part .arrowtop img:hover {
  opacity: 0.7;
}

/*making index responsive for 1600px or less*/
@media screen and (max-width: 1600px) {
  .wrapper .contact-us-part {
    width: 80%;
  }

  .wrapper .contact-us-part .location iframe {
    width: 530px;
    height: 430px;
  }
}

/*making index responsive for 1400px or less*/
@media screen and (max-width: 1400px) {
  .wrapper .contact-us-part {
    width: 95%;
  }

  .wrapper .contact-us-part .texts p {
    font-size: 14px;
  }

  .wrapper .contact-us-part .social-medias a img {
    width: 35px;
  }

  .wrapper .contact-us-part .social-medias p {
    font-size: 14px;
  }

  .wrapper .contact-us-part .call-numbers .call-number-one a img,
  .wrapper .contact-us-part .call-numbers .call-number-two a img {
    width: 30px;
  }

  .wrapper .contact-us-part .call-numbers .call-number-one p,
  .wrapper .contact-us-part .call-numbers .call-number-two p {
    font-size: 14px;
  }

  .wrapper .contact-us-part .emails .email span {
    font-size: 14px;
  }

  .wrapper .contact-us-part .emails .email img {
    width: 35px;
    height: auto;
  }

  .wrapper .contact-us-part .location iframe {
    width: 530px;
    height: 500px;
  }
}

/*making index responsive for 1200px or less*/
@media screen and (max-width: 1200px) {
  .wrapper .contact-us-part .location iframe {
    width: 430px;
    height: 400px;
  }
}

/*making index responsive for 992px or less*/
@media screen and (max-width: 992px) {
  .wrapper .contact-us-part {
    width: 90%;
  }

  .wrapper .contact-us-part .texts p {
    font-size: 16px;
  }

  .wrapper .contact-us-part .social-medias a img {
    width: 40px;
  }

  .wrapper .contact-us-part .social-medias p {
    font-size: 16px;
  }

  .wrapper .contact-us-part .call-numbers .call-number-one a img,
  .wrapper .contact-us-part .call-numbers .call-number-two a img {
    width: 35px;
  }

  .wrapper .contact-us-part .call-numbers .call-number-one p,
  .wrapper .contact-us-part .call-numbers .call-number-two p {
    font-size: 16px;
  }

  .wrapper .contact-us-part .emails .email span {
    font-size: 16px;
  }

  .wrapper .contact-us-part .emails .email img {
    width: 40px;
  }

  .wrapper .contact-us-part .location iframe {
    width: 75vw;
    height: 48vh;
  }
}

/*making index responsive for 700px or less*/
@media screen and (max-width: 700px) {
  .wrapper .contact-us-part .location iframe {
    width: 85vw;
    height: 43vh;
  }
}

/*making index responsive for 500px or less*/
@media screen and (max-width: 500px) {
  .wrapper .contact-us-part .location iframe {
    height: 35vh;
  }
}

/*making index responsive for 364px or less*/
@media screen and (max-width: 364px) {
  .wrapper .contact-us-part .location iframe {
    width: 280px;
    height: 280px;
  }
}

/*opacity animation*/
@keyframes opacities {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=contact-us-style.css.map */