/*
TODO: adding some pages styles to this file, pages like blog detail or gallery detail
      and some simple detail page.
*/
/*---------------------------------- fonts ----------------------------------*/
/*---------------------------------- ellipsis ----------------------------------*/
/*---------------------------------- line text ----------------------------------*/
/*---------------------------------- text gradient ----------------------------------*/
/*---------------------------------- glass effect ----------------------------------*/
/*---------------------------------- card shadow ----------------------------------*/
/*---------------------------------- font icon ----------------------------------*/
/*---------------------------------- overlay ----------------------------------*/
/*---------------------------------- border radius ----------------------------------*/
/*---------------------------------- line ----------------------------------*/
/*---------------------------------- background image ----------------------------------*/
/*---------------------------------- scroll bar ----------------------------------*/
/*---------------------------------- media query ----------------------------------*/
/*---------------------------------- flex ----------------------------------*/
/*---------------------------------- Second Language ----------------------------------*/
.contact-us {
  margin-top: 0;
  margin-bottom: 9rem;
}
.contact-us iframe {
  margin: 5% 0 !important;
  border: none;
  width: 100%;
  height: 300px;
  padding: 0;
  box-shadow: 0 0 5px #e3e3e3;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.contact-us__img {
  margin: auto;
  width: 400px;
}
@media only screen and (max-width: 575.98px) {
  .contact-us__img {
    width: 100%;
  }
}
.contact-us__sub-title {
  width: 100%;
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.contact-us .main-btn {
  padding: 15px 30px;
  border-radius: 5px;
  transition: all 150ms linear;
}
.contact-us .main-btn:hover {
  background-color: #072560;
}
.contact-us .main-btn__text {
  font-size: 13.5px;
  color: #fff !important;
}

.contact-info__title {
  width: 100%;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.contact-info__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-flow: column;
  font-size: 15px;
}
.contact-info__list-item {
  color: #737373;
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
}
.contact-info__list-item:hover .contact-info__list-icon {
  color: #0d49c0;
}
.contact-info__list-text {
  color: #1a1a1a;
  margin: 0px;
}
.contact-info__list-text:hover {
  color: #0a3790;
}
.contact-info__list-icon {
  font-size: 18px;
  color: #0a3790;
  margin-left: 7px;
  transition: all 150ms linear;
}
.contact-info .contact-social {
  margin-top: 15px;
}
.contact-info .contact-social__text {
  color: #333;
  line-height: 1.9;
}

.social-media {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.social-media__icon {
  padding: 5px;
  font-size: 30px;
  transition: all 150ms linear;
}
.social-media__item {
  margin: 5px;
}
.social-media__item:first-child .social-media__icon {
  padding-left: 0;
}

.custom-select {
  position: relative;
  right: 0;
  display: block;
  height: 42px;
  top: 0;
  line-height: 42px;
  margin-bottom: 20px;
  border: 1.5px solid #bcbdc09c;
  transition: all 150ms linear;
}
.custom-select.disabled {
  pointer-events: none;
  border-color: #f2f2f2;
}
.custom-select.disabled .select-selected {
  color: #9f9f9f;
}
.custom-select.disabled .select-selected:after {
  border-color: #f2f2f2 transparent transparent transparent;
}
.custom-select:hover {
  box-shadow: 0 0 4px #cccccc;
}
.custom-select select, .custom-select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected.select-arrow-active {
  background-color: transparent !important;
  color: #999 !important;
}

.select-selected {
  color: #999 !important;
  background-color: transparent !important;
  top: 3px;
  width: 100%;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  margin-top: 3px;
  content: "";
  right: 10px;
  top: 14px;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #0a3790 transparent transparent transparent;
}

.select-selected:before {
  position: absolute;
  margin-top: 3px;
  content: "";
  right: 10px;
  top: 0px;
  width: 16px;
  height: 20px;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #0a3790 transparent;
  margin-top: -3px;
}

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
  position: absolute;
  top: 0;
  font-size: 12px;
  color: #ffffff;
  border-radius: 4px;
  padding-right: 35px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
@media screen and (max-width: 600px) {
  .select-items div, .select-selected {
    font-size: 11px;
  }
}

.select-items div {
  color: #6c6c6c;
  white-space: nowrap;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #eee;
  height: 42px;
  position: relative;
}

/*style items (options):*/
.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(100% + 0.5px);
  max-height: 250px;
  margin-top: -3px;
  background-color: #fff;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 0 1px #ced4da;
  z-index: 99;
  overflow: auto;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover {
  background-color: #0a3790;
  color: #fff !important;
  border-radius: 0 !important;
}

.same-as-selected {
  color: #999 !important;
  border-radius: 0 !important;
}

/*# sourceMappingURL=pages.css.map */
