#unHome {
  opacity: 1;
  background-color: #49bcce;
}

.btn {
  font-family: myfont-light;
  font-size: large;
  color: white;
  background-image: linear-gradient(45deg, #005273, #49bcce 120%);
  border: none;
  border-radius: 10px;
  padding: 0.5em;
  width: 65%;
  cursor: pointer;
  transition: opacity ease 0.5s;
}
@media (max-width: 1000px) {
  .btn {
    font-size: x-large;
  }
}

.btn:hover {
  opacity: 0.8;
  transition: opacity ease 0.5s;
}

.head-sec {
  display: flex;
  align-items: center;
  justify-content: first baseline;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .head-sec {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .head-sec img {
    width: 100%;
  }
}
.head-sec .parag {
  margin: auto;
  text-align: center;
  font-weight: 600;
}
.head-sec .parag p {
  font-size: large;
  line-height: 2.5em;
}
.head-sec .parag h1 {
  color: #49bcce;
  font-weight: 800;
  font-size: 2em;
}
@media (max-width: 1000px) {
  .head-sec .parag {
    font-size: medium;
    width: 60%;
  }
  .head-sec .parag p {
    line-height: 3em;
    font-size: x-large;
  }
  .head-sec .parag h1 {
    font-size: 3em;
    font-weight: 800;
  }
}

.box-sec {
  margin: 8% auto;
}
.box-sec .cont {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 1000px) {
  .box-sec .cont {
    flex-direction: column-reverse;
    gap: 8%;
  }
}
.box-sec .cont .box {
  display: grid;
  grid-template-rows: 30% 20% 20%;
  width: 30%;
  justify-items: center;
  background-color: #ade1e9;
  border-radius: 20px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .box-sec .cont .box {
    display: grid;
    margin: 5px auto;
    width: 98%;
    grid-template-columns: 20% 75%;
  }
}
.box-sec .cont .box img {
  margin: 2% auto;
  width: 18%;
}
@media (max-width: 1000px) {
  .box-sec .cont .box img {
    width: 75%;
    grid-column: 1;
    grid-row: 1/5;
    align-self: center;
  }
}
.box-sec .cont .box h1 {
  margin: 5% auto;
  text-align: center;
  font-weight: 600;
  color: #004059;
}
@media (max-width: 1000px) {
  .box-sec .cont .box h1 {
    grid-column: 2;
    font-size: 35px;
    width: 90%;
  }
}
.box-sec .cont .box h3 {
  width: 90%;
  text-align: center;
  font-weight: 600;
  font-size: medium;
  line-height: 45px;
  color: #004059;
}
@media (max-width: 1000px) {
  .box-sec .cont .box h3 {
    grid-column: 2;
    font-size: 25px;
    line-height: 50px;
  }
}
.box-sec .cont .box .hoverbox {
  grid: 3;
  width: 100%;
  height: 15px;
  border-radius: 0px 0px 20px 20px;
  align-self: flex-end;
  background-image: linear-gradient(45deg, #00658c, #49bcce 120%);
  transition: opacity 0.5s linear;
  opacity: 0;
}
.box-sec .cont .box:hover .hoverbox {
  opacity: 1;
  transition: opacity 0.5s ease;
}
@media (max-width: 1000px) {
  .box-sec .cont .box:hover .hoverbox {
    opacity: 0;
  }
}

.gallerybox-sec .cont {
  margin: auto;
  width: 95%;
  display: flex;
  justify-content: center;
}
@media (max-width: 1000px) {
  .gallerybox-sec .cont {
    flex-wrap: wrap;
  }
}
.gallerybox-sec .cont .box {
  width: 35%;
  margin: auto 10px;
  background-color: #ade1e9;
  border-radius: 20px;
  display: grid;
  grid-row: 80% 20%;
  justify-content: center;
}
@media (max-width: 1000px) {
  .gallerybox-sec .cont .box {
    margin-top: 6em;
    width: 64%;
    height: 50em;
  }
}
.gallerybox-sec .cont .box .image {
  grid-row: 1;
  display: grid;
  grid-template-rows: 99% 1%;
  justify-content: center;
  width: 100%;
}
.gallerybox-sec .cont .box .image .image-holder {
  margin-top: 20px;
  width: 350px;
  height: 350px;
}
@media (max-width: 1000px) {
  .gallerybox-sec .cont .box .image .image-holder {
    width: 500px;
    height: 500px;
  }
}
.gallerybox-sec .cont .box .image .image-holder img {
  position: absolute;
  border-radius: 10px;
  width: 350px;
}
@media (max-width: 1000px) {
  .gallerybox-sec .cont .box .image .image-holder img {
    width: 500px;
    height: 500px;
  }
}
.gallerybox-sec .cont .box .image .bar {
  grid-row: 2;
  margin: auto;
  width: 100%;
  height: 10px;
  border-radius: 20px;
  background-color: #004059;
  animation: loaderbar linear 7s infinite;
}
.gallerybox-sec .cont .box .text {
  grid-row: 2;
  margin: -70px auto;
  width: 100%;
  background-color: transparent;
}
.gallerybox-sec .cont .box .text svg {
  justify-self: center;
  stroke: #ade1e9;
  stroke-width: 6;
  fill: white;
  width: 100%;
  scale: 1 0.8;
}
.gallerybox-sec .cont .box .text div {
  display: grid;
  grid-template-rows: 1fr 1fr;
  color: #004059;
  font-weight: 600;
  position: absolute;
  margin: -15em auto;
  padding: 20px;
  width: 28%;
  height: 120px;
}
@media (max-width: 1000px) {
  .gallerybox-sec .cont .box .text div {
    width: 55%;
    font-size: 25px;
    margin: -10em auto;
  }
}
.gallerybox-sec .cont .box .text div .btn {
  grid-row: 3;
  justify-self: center;
  width: 60%;
  font-size: medium;
}
@media (max-width: 1000px) {
  .gallerybox-sec .cont .box .text div .btn {
    justify-self: center;
    width: 80%;
    font-size: large;
  }
}

.video-sec {
  margin: 8% auto;
}
.video-sec .vid-box {
  width: 100%;
  height: 500px;
  background-color: #ade1e9;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .video-sec .vid-box {
    height: 650px;
  }
}
.video-sec .vid-box video {
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 98%;
  height: 450px;
  opacity: 0.6;
}
@media (max-width: 1000px) {
  .video-sec .vid-box video {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.video-sec .vid-box .text-cont {
  position: absolute;
  margin-top: 200px;
  width: 100%;
  display: grid;
  z-index: 1;
}
.video-sec .vid-box .text-cont p {
  margin: auto;
  text-align: center;
  padding: 20px;
  color: #004059;
  font-weight: 600;
  font-size: x-large;
  grid-column: 10;
}
@media (max-width: 1000px) {
  .video-sec .vid-box .text-cont p {
    grid-column: 1;
  }
}
.video-sec .vid-box .text-cont .btn {
  grid-column: 10;
  width: 40%;
  margin: auto;
}
@media (max-width: 1000px) {
  .video-sec .vid-box .text-cont .btn {
    grid-column: 1;
    width: 20%;
  }
}

.faq-sec {
  margin: 8% auto;
  background-color: #ade1e9;
  width: 100%;
  height: 30em;
}
@media (max-width: 1000px) {
  .faq-sec {
    height: 38em;
  }
}
.faq-sec h1 {
  font-size: x-large;
  color: #004059;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 1000px) {
  .faq-sec h1 {
    font-size: 30px;
    line-height: 60px;
  }
}
.faq-sec .cont {
  margin: auto;
  width: 85%;
  height: 18em;
  background-color: white;
  display: grid;
  grid-template-rows: 80% 20%;
}
@media (max-width: 1000px) {
  .faq-sec .cont {
    width: 95%;
    border-radius: 5px;
    height: 30em;
  }
}
.faq-sec .cont .box {
  grid-row: 1;
  display: grid;
  grid-template-columns: 20% 80%;
}
.faq-sec .cont .box img {
  justify-self: center;
  align-self: center;
  width: 55%;
  grid-column: 1;
  margin: 10%;
}
@media (max-width: 1000px) {
  .faq-sec .cont .box img {
    width: 80%;
  }
}
.faq-sec .cont .box .faqs {
  grid-column: 2;
  width: 100%;
  height: 100%;
}
.faq-sec .cont .box .faqs h3 {
  margin: 30px auto;
  text-align: right;
  color: #49bcce;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .faq-sec .cont .box .faqs h3 {
    width: 98%;
    font-size: 28px;
    text-align: justify;
  }
}
.faq-sec .cont .box .faqs p {
  width: 80%;
  text-align: right;
  font-weight: 600;
  color: #004059;
}
@media (max-width: 1000px) {
  .faq-sec .cont .box .faqs p {
    font-size: 27px;
    width: 98%;
    text-align: justify;
  }
}
.faq-sec .cont .box .faqs .faq_on {
  opacity: 1;
  transition: all ease 1s;
}
.faq-sec .cont .box .faqs .faq_def {
  position: absolute;
  opacity: 0;
}
.faq-sec .cont .slide {
  grid-row: 2;
  display: grid;
  grid-template-columns: 20% 60% 20%;
  z-index: 1;
}
.faq-sec .cont .slide .icon {
  grid-column: 2;
  display: flex;
  justify-content: center;
}
.faq-sec .cont .slide .icon div {
  grid-column: 2;
  width: 17px;
  height: 17px;
  margin: auto 4px;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .faq-sec .cont .slide .icon div {
    width: 25px;
    height: 25px;
    margin: auto 8px;
  }
}
.faq-sec .cont .slide .icon .slideicon {
  background-color: #004059;
}
.faq-sec .cont .slide .icon .slideicon_On {
  background-color: #49bcce;
  transition: background-color ease 1s;
}
.faq-sec .cont .slide .link {
  grid-column: 3;
  align-self: center;
}
@media (max-width: 1000px) {
  .faq-sec .cont .slide .link {
    font-size: 23px;
    text-align: center;
  }
}
.faq-sec #en-sec {
  direction: ltr;
}
.faq-sec #en-sec h3 {
  text-align: left;
}
.faq-sec #en-sec p {
  text-align: left;
}

.contact-sec {
  margin: 8% auto;
  width: 100%;
}
.contact-sec .cont {
  margin: auto;
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-sec .cont .contact div {
  display: grid;
  grid-template-columns: 10% 90%;
}
@media (max-width: 1000px) {
  .contact-sec .cont .contact div {
    display: flex;
    flex-direction: column;
    margin: 10px auto;
  }
}
.contact-sec .cont .contact div img {
  align-self: center;
  grid-column: 1;
  width: 80%;
}
@media (max-width: 1000px) {
  .contact-sec .cont .contact div img {
    width: 12%;
  }
}
.contact-sec .cont .contact div .text {
  grid-column: 2;
  display: flex;
  flex-direction: column;
}
.contact-sec .cont .contact div .text h1 {
  color: #004059;
  font-size: large;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .contact-sec .cont .contact div .text h1 {
    font-size: 28px;
    text-align: center;
    font-weight: 600;
  }
}
.contact-sec .cont .contact div .text h3 {
  color: #49bcce;
  margin-top: -10px;
}
@media (max-width: 1000px) {
  .contact-sec .cont .contact div .text h3 {
    font-size: 35px;
    font-weight: 800;
    text-align: center;
  }
}
.contact-sec .cont .map {
  width: 550px;
  height: 450px;
  border: 0;
  box-shadow: 0px 0px 5px 3px #49bcce;
  border-radius: 20px;
}

.showpic_ON {
  transition: all 1s ease-in;
  opacity: 1;
}

.showpic_OFF {
  transition: all 1s ease-out;
  opacity: 0;
}

@keyframes loaderbar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}/*# sourceMappingURL=home.css.map */