@font-face {
  src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype");
  font-family: archivo-black;
  font-style: normal;
}
@font-face {
  src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
  font-family: open-sans;
  font-weight: bolder;
}
@font-face {
  src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
  font-family: open-sans;
  font-weight: bold;
}
@font-face {
  src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
  font-family: open-sans;
  font-style: normal;
}
@font-face {
  src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
  font-family: open-sans;
  font-weight: normal;
  font-style: italic;
}
.temp-intro {
  display: none;
}

.page-alert {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
}
.page-alert.hide {
  display: none;
}
.page-alert .content {
  width: 50%;
  max-height: 70%;
  overflow: auto;
  background-color: white;
  border-radius: 7px;
  padding: 10px 20px;
  box-shadow: 0px 0px 5px #808285;
}
@media screen and (max-width: 1023px) {
  .page-alert .content {
    width: 90%;
    max-height: 100%;
  }
}
.page-alert .content h2 {
  color: #28aae2;
  font-size: 22px;
  text-align: center;
  margin: 10px auto;
}
.page-alert .content p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.5px;
  color: #403e41;
}
.page-alert .content button {
  width: 100px;
  height: 40px;
  font-size: 14px;
  color: white;
  background-color: #28aae2;
  border: 0px;
  border-radius: 3px;
  display: block;
  margin: 10px auto;
  cursor: pointer;
}

section h3 {
  font-size: 36px;
  font-family: "Archivo Black", sans-serif;
  line-height: 1.2;
  color: #403e41;
}
@media screen and (max-width: 1024px) {
  section h3 {
    text-align: center;
  }
}
section h3 mark {
  color: #28aae2;
}
section p {
  color: #808285;
  font-size: 16px;
  letter-spacing: 0.8px;
}
section figure {
  width: 50%;
}
section figure img {
  width: 100%;
  height: 100%;
}
section .description {
  width: 50%;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  section .description {
    width: 100%;
  }
}
section .description p {
  line-height: 1.8;
}

#home {
  box-shadow: 0 8px 20px -6px #a6a8ab;
  display: flex;
  height: 80vh;
}
@media screen and (max-width: 1024px) {
  #home {
    flex-direction: column;
  }
}
#home p {
  padding: 30px 0;
  width: 75%;
}
@media screen and (max-width: 1024px) {
  #home p {
    margin: 0 auto;
  }
}
#home figure {
  opacity: 1;
  transition: opacity 500ms ease;
  text-align: center;
  align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  #home figure {
    width: 100%;
    margin-top: 30px;
  }
}
#home figure.hide {
  opacity: 0;
}
#home figure img {
  width: 90%;
}
#home .description {
  overflow-x: hidden;
}
#home .description button,
#home .description p {
  position: relative;
  left: 0;
  opacity: 1;
  transition: left 500ms ease, opacity 500ms ease;
}
#home .description h3 {
  opacity: 1;
  left: 0;
  position: relative;
  transition: left 500ms ease, opacity 500ms ease;
}
@media screen and (max-width: 1024px) {
  #home .description h3 {
    position: absolute;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
}
#home .description p {
  transition-delay: 500ms;
}
#home .description button {
  transition-delay: 1000ms;
}
#home .description.hide button,
#home .description.hide h3,
#home .description.hide p {
  left: 10%;
  opacity: 0;
}
#home button {
  border: none;
  background-color: #28aae2;
  color: white;
  padding: 20px 30px;
  outline: none;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #home button {
    display: block;
    margin: 0 auto 40px;
  }
}
#home button .fas {
  padding-left: 12px;
  font-size: 14px;
  position: relative;
  left: 0;
  transition: left 500ms ease;
}
#home button:hover .fas {
  left: 10px;
}

#about,
#home {
  position: relative;
}
@media screen and (max-width: 1024px) {
  #about,
#home {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  #about h3,
#home h3 {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}

#about {
  background-color: #f0f0f0;
  display: block;
  margin-bottom: 225px;
}
@media screen and (max-width: 1024px) {
  #about {
    margin-bottom: 50px;
  }
}
#about .wrapper {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  #about .wrapper {
    flex-direction: column-reverse;
    padding-bottom: 30px;
  }
}
#about .wrapper a {
  display: inline-block;
  margin: 10px 0;
}
#about .wrapper a button {
  color: white;
  padding: 10px 15px;
  background-color: #28aae2;
  border: none;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background-color 500ms ease;
}
#about .wrapper a button:hover {
  background-color: #403e41;
}
#about figure {
  width: 35%;
  position: relative;
  left: 6%;
  opacity: 0;
  transition: left 1000ms ease, opacity 1000ms ease;
}
#about figure.show {
  left: 0;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  #about figure {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
#about figure img {
  transform: scale(1.3);
  top: 25%;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #about figure img {
    transform: scale(1);
  }
}
#about .description {
  opacity: 0;
  transition: opacity 1000ms ease;
  width: 55%;
}
@media screen and (max-width: 1024px) {
  #about .description {
    width: 100%;
  }
}
#about .description.show {
  opacity: 1;
}
#about p {
  padding: 14px 0;
}

#service {
  display: block;
}
#service h3 {
  text-align: center;
}
#service p {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 40px;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  #service p {
    width: 90%;
  }
}
#service .owl-service {
  width: 82%;
  margin: 30px auto 0;
  display: block;
}
@media screen and (max-width: 1024px) {
  #service .owl-service {
    width: 100%;
  }
}
#service .owl-service li {
  list-style: none;
  background-color: #f0f0f0;
  width: 90%;
  margin: 0 auto;
}
#service .owl-service li .inner-contents {
  padding-top: 20px;
}
#service .owl-service li .inner-contents img {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
  padding-top: 20px;
}
#service .owl-service li .inner-contents p {
  width: 90%;
  margin: 0 auto;
  font-size: 14px;
  height: 20vh;
}
#service .owl-service li .inner-contents .title {
  text-align: center;
  padding-top: 20px;
  color: #403e41;
  font-size: 14px;
  font-weight: bold;
}
#service .service-carousel-btn {
  margin: 20px auto;
  text-align: center;
  padding: 20px 0;
}
#service .service-carousel-btn i {
  font-size: 16px;
  padding: 0 10px;
  color: #28aae2;
  cursor: pointer;
}

#branches {
  background-color: #f0f0f0;
  padding: 20px 0;
}
#branches h3 {
  text-align: center;
  padding: 20px 0;
}
#branches p {
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #branches p {
    width: 90%;
  }
}
#branches .owl-branches {
  width: 80%;
  margin: 0 auto;
  height: 55vh;
}
@media screen and (max-width: 1024px) {
  #branches .owl-branches {
    width: 100%;
  }
}
#branches .owl-branches .owl-item-branches {
  width: 97%;
  background-color: white;
  margin: 50px 0;
}
@media screen and (max-width: 1024px) {
  #branches .owl-branches .owl-item-branches {
    width: 90%;
    margin: 50px auto;
  }
}
#branches .owl-branches .owl-item-branches figure {
  width: 100%;
  height: 90%;
}
#branches .owl-branches .owl-item-branches figure img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
}
#branches .owl-branches .owl-item-branches .description {
  margin: 0 20px;
  padding: 10px 0;
  width: 90%;
  height: 140px;
  overflow: hidden;
}
#branches .owl-branches .owl-item-branches .description .person-info,
#branches .owl-branches .owl-item-branches .description .person-name {
  font-size: 14px;
  font-weight: bold;
}
#branches .owl-branches .owl-item-branches .description .person-info {
  padding: 2px 0;
  color: #808285;
}
#branches .owl-branches .owl-item-branches .description .person-name {
  color: #28aae2;
  text-transform: uppercase;
}
#branches .branches-carousel-btn {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
  padding-top: 85px;
}
#branches .branches-carousel-btn i {
  padding: 10px;
  background-color: #d2d4d5;
  color: #57595b;
  margin: 0 0 0 12px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #branches .branches-carousel-btn i {
    margin: 50px 0 0 12px;
  }
}

#enquiry {
  background: linear-gradient(#28aae2, #2b3991);
}
#enquiry h3 {
  text-align: center;
  color: white;
  padding: 60px 0 30px;
}
#enquiry p {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  color: #fafafa;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  #enquiry p {
    width: 90%;
  }
}
#enquiry form fieldset {
  border: none;
  width: 35%;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (max-width: 1024px) {
  #enquiry form fieldset {
    width: 90%;
  }
}
#enquiry form fieldset input {
  background-color: transparent;
  border: 2px solid white;
  padding: 8px 18px;
  clear: both;
  width: 48%;
  margin: 10px 0;
}
#enquiry form fieldset input:nth-child(even) {
  float: right;
}
#enquiry form fieldset ::-webkit-input-placeholder {
  color: #fafafa;
}
@media screen and (max-width: 1024px) {
  #enquiry form fieldset ::-webkit-input-placeholder {
    padding-left: 13px;
  }
}
#enquiry form fieldset ::-moz-placeholder {
  color: #fafafa;
}
@media screen and (max-width: 1024px) {
  #enquiry form fieldset ::-moz-placeholder {
    padding-left: 13px;
  }
}
#enquiry form fieldset :-ms-input-placeholder {
  color: #fafafa;
}
@media screen and (max-width: 1024px) {
  #enquiry form fieldset :-ms-input-placeholder {
    padding-left: 13px;
  }
}
#enquiry form fieldset :-moz-placeholder {
  color: #fafafa;
}
@media screen and (max-width: 1024px) {
  #enquiry form fieldset :-moz-placeholder {
    padding-left: 13px;
  }
}
#enquiry form fieldset textarea {
  background-color: transparent;
  border: 2px solid white;
  width: 100%;
  padding: 8px;
  font-family: open-sans;
}
#enquiry form fieldset button {
  display: block;
  margin: 20px auto;
  padding: 8px 18px;
  width: 40%;
  background-color: transparent;
  border: none;
  border: 2px solid white;
  color: white;
  font-size: 14px;
}

#contact {
  padding: 30px 0;
}
#contact h3 {
  text-align: center;
  padding: 10px 0 20px;
}
#contact p {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  #contact p {
    width: 90%;
  }
}
#contact .inner-container {
  display: flex;
  width: 80%;
  margin: 40px auto;
  padding: 20px 0;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #contact .inner-container {
    flex-direction: column;
    width: 90%;
  }
}
#contact .inner-container figure {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  #contact .inner-container figure {
    width: 100%;
  }
}
#contact .inner-container .description-container {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  #contact .inner-container .description-container {
    width: 100%;
  }
}
#contact .inner-container .description-container li {
  display: flex;
  justify-content: space-evenly;
  padding: 15px 0;
}
#contact .inner-container .description-container li:last-child a {
  color: #28aae2;
}
#contact .inner-container .description-container li address {
  font-size: 16px;
  color: #57595b;
  font-family: open-sans;
  font-style: normal;
  line-height: 1.8;
}
#contact .inner-container .description-container li label {
  color: #57595b;
  font-weight: bold;
  font-size: 16px;
}
#contact .inner-container .description-container li .contact-content,
#contact .inner-container .description-container li address {
  width: 70%;
}
#contact .inner-container .description-container li .contact-content {
  display: flex;
  font-size: 16px;
}
#contact .inner-container .description-container li .contact-content li {
  color: #57595b;
  padding: 0 15px 0 0;
}
#contact .inner-container .description-container li .contact-content li i {
  font-size: 18px;
}

.toast {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #403e41;
  z-index: 5;
  width: 300px;
  height: 400px;
  padding: 10px;
  transition: transform 500ms ease;
  overflow: auto;
}
.toast.hide {
  transform: translateY(345px);
}
.toast.hide .close-toast {
  transform: rotate(180deg);
}
.toast header {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  color: white;
}
.toast .close-toast {
  position: absolute;
  top: 20px;
  left: 10px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  transition: tranform 500ms ease;
}
.toast .close-toast img {
  width: 20px;
  height: 20px;
}
.toast ul {
  width: 80%;
  margin: 0 auto;
}
.toast ul li {
  color: white;
  text-decoration: underline;
  font-size: 14px;
  margin: 0 0 10px;
}
.toast ul li.highlight {
  animation: glow 1.5s infinite linear;
  font-weight: 600;
  font-size: 16px;
}

@keyframes glow {
  0% {
    color: white;
  }
  50% {
    color: #28aae2;
  }
  100% {
    color: white;
  }
}

/*# sourceMappingURL=home.css.map */
