*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  background-color: transparent !important;
  background: url("../img/bg-pattern.jpg") !important;
}

@media (min-width: 75em) {
  .container {
    max-width: 960px !important;
  }
}

@media (max-width: 75em) {
  .main-content {
    padding-top: 60px;
  }
}

@font-face {
  font-family: "Corbel";
  src: url("../fonts/Corbel-Italic.woff2") format("woff2"), url("../fonts/Corbel-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Corbel";
  src: url("../fonts/Corbel.woff2") format("woff2"), url("../fonts/Corbel.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Corbel";
  src: url("../fonts/Corbel-Bold.woff2") format("woff2"), url("../fonts/Corbel-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}  
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
body {
  /*font-family: "Times New Roman", Times, serif !important;*/
  font-family: "Montserrat", serif !important;
  line-height: 1.7;
  color: #686868;
}

.section-title {
  font-size: 24px;
  color: #686868;
  position: relative;
  padding-bottom: 10px;
}
.section-title::after {
  content: "";
  background-color: #00aeef;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 80px;
}

.border-bottom-title {
  border-bottom: 1px solid #d7d7d7;
}

.section-title-footer {
  font-size: 18px;
  color: #686868;
  position: relative;
  padding-bottom: 10px;
}
.section-title-footer::after {
  content: "";
  background-color: #00aeef;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 80px;
}

@media (max-width: 75em) {
  .hidden-mobile {
    display: none !important;
  }
}

.show-mobile {
  display: none !important;
}
@media (max-width: 75em) {
  .show-mobile {
    display: block !important;
  }
}

@media (max-width: 56.25em) {
  .md-100 {
    width: 100%;
  }
}

.saperator-grey {
  border-bottom: 1px solid #ebebeb;
}

.truncate-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-dark-color {
  color: #686868;
}

.responsive-img {
  width: 100%;
}

input {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input:focus {
  outline: none;
}

select:focus {
  outline: none;
}

button {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
button:focus {
  outline: none;
}

a {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.btn.custom-gray-light-btn {
  border-radius: 0;
  background-color: #ebebeb;
  font-size: 13px;
  color: #555555;
  padding-right: 20px;
  position: relative;
  border: none;
}
.btn.custom-gray-light-btn:focus {
  outline: none;
  box-shadow: none;
}
.btn.custom-gray-light-btn i {
  vertical-align: middle;
}
.btn.custom-gray-light-btn:hover {
  background-color: #00aeef;
  color: #ffffff;
}
.btn.custom-gray-light-btn:hover::after {
  border-bottom: 12px solid #0072bc;
}
.btn.custom-gray-light-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 0;
  width: 0;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #cccccc;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.custom-gray-light-btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 0;
  width: 0;
  border-bottom: 12px solid transparent;
  border-right: 12px solid #f7f7f7;
}

.header {
  position: relative;
}
@media (max-width: 75em) {
  .header {
    background-color: #ffffff;
    border-bottom: 1px solid #d7d7d7;
    position: static;
    top: 0;
    left: 0;
	hight 100px;
    width: 100%;
    z-index: 9999;
  }
}
.header.mobile-view .main-nav {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.header.mobile-view .menu-bar i.menu-bar-icon {
  display: none;
}
.header.mobile-view .menu-bar i.close-icon {
  display: block;
}
.header .menu-bar {
  float: right;
  padding: 10px 0;
  font-size: 20px;
  height: 45px;
}
.header .menu-bar i.close-icon {
  display: none;
}
.header .menu-bar:focus {
  color: #00aeef;
  outline: none !important;
  box-shadow: none !important;
}
.header .main-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d7d7d7;
  padding-top: 30px;
  z-index: 9999;
}
@media (max-width: 75em) {
  .header .main-nav {
    position: fixed;
    top: 43px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: inherit;
    height: calc(100vh - 43px);
    overflow: auto;
    padding: 15px;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
.header .main-nav li {
  list-style: none;
  position: relative;
  z-index: 99;
}
.header .main-nav li a {
  font-family: "Corbel";
  color: #555555;
  font-size: 18px;
  padding: 8px 0;
  display: block;
  position: relative;
  font-weight: lighter;
}
.header .main-nav li a:after {
  background-color: transparent;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .main-nav li a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 8px solid transparent;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .main-nav li a:hover {
  color: #00aeef;
  text-decoration: none;
}
.header .main-nav li a:hover:after {
  background-color: #00aeef;
}
.header .main-nav li a:hover:before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom-color: #00aeef;
}
.header .main-nav li a.active {
  color: #00aeef;
}
.header .main-nav li a.active:after {
  background-color: #00aeef;
}
.header .main-nav li a.active:before {
  border-bottom-color: #00aeef;
}

.footer {
  padding-top: 100px;
}
.footer .new-item .news-title {
  margin: 0;
}
.footer .new-item .news-title a {
  font-size: 18px;
  color: #00aeef;
}
.footer .new-item .news-title a:hover {
  text-decoration: none;
  color: #555555;
}
.footer .new-item span {
  font-size: 13px;
  display: block;
  margin-bottom: 15px;
}
.footer .new-item p {
  font-size: 13px;
  color: #555555;
  line-height: 18px;
}
.footer .footer-sitemap-nav li {
  list-style: none;
  line-height: 21px;
}
.footer .footer-sitemap-nav li a {
  font-size: 13px;
  color: #555555;
}
.footer .footer-sitemap-nav li a:hover {
  color: #00aeef;
  text-decoration: none;
}
.footer .contact-info .contact-item {
  font-size: 13px;
  color: #414141;
  margin-bottom: 15px;
  display: flex;
}
.footer .contact-info .contact-item a {
  font-size: 13px;
  color: #414141;
}
.footer .contact-info .contact-item a:hover {
  color: #00aeef;
}
.footer .contact-info .contact-item label {
  margin: 0;
}
.footer .contact-info .contact-item i {
  flex: 0 0 20px;
  width: 20px;
  text-align: center;
  margin-right: 5px;
}
.footer .copy-right {
  border-top: 1px solid #ebebeb;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}
.footer .copy-right p {
  margin: 0;
  color: #959595;
  font-size: 14px;
}
.footer .copy-right label {
  display: block;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: bold;
}

.home-banner {
  padding-bottom: 25px;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 40px;
}
@media (max-width: 56.25em) {
  .home-banner {
    margin-bottom: 25px;
  }
}

.not-text {
  font-family: "Corbel";
  background-color: #ffffff;
  border-left: 5px solid #00aeef;
  font-size: 36px;
  padding: 10px 15px;
  line-height: 40px;
  font-style: italic;
  margin-bottom: 50px;
}
@media (max-width: 56.25em) {
  .not-text {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 28px;
  }
}

.client-logo-carousel {
  margin: 50px 0 90px;
}
@media (max-width: 56.25em) {
  .client-logo-carousel {
    margin: 20px 0 30px;
  }
}
.client-logo-carousel .slick-slide {
  margin: 10px;
}
.client-logo-carousel .slick-slide img {
  max-width: 100%;
}

.button-set-row {
  margin-bottom: 40px;
}

.grey-text-box {
  background-color: #ffffff;
  
  font-size: 16px;
  color: #023C6A;
  margin-bottom: 40px;
}
@media (max-width: 56.25em) {
  .grey-text-box {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .containerAdmin {
    max-width: 1200px !important;
  }
}



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

.searchResult {
  background-color: rgba(80, 80, 80, 0.178);
  display: none;
}

.searchResult #closeIcon {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.search {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 10px;
  margin-bottom: 50px;
  position: relative;
}

.search h1 {
  color: #212529;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  width: 100%;
}

.search .searchWrap {
  width: 760px;
  position: relative;
}

.search .searchWrap img {
  position: absolute;
  top: 16px;
  left: 29px;
}

.search .searchWrap input {
  padding: 16px 0px 16px 63px;
  color: rgba(33, 37, 41, 0.60);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  border-radius: 30px;
  background: #EAE9E9;
  border: none;
  outline: none;
  width: 100%;
}

.search button {
  border: none;
  outline: none;
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  padding: 14px 45px;
  border-radius: 30px;
  background: linear-gradient(195deg, #1E608A 6.85%, #2EB0E9 187.8%);
}

.search .searchResult {
  position: absolute;
  top: 60px;
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.055);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  padding: 30px 60px;
  flex-direction: column;
  gap: 16px;
  min-height: 50px;
  z-index: 10000;
}

.search .searchResult div {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 16px;
  width: 100%;
  padding: 14px 22px;
}

.search .searchResult div h4 {
  color: black;
  font-size: 24px;
}

.search .searchResult div a {
  color: black;
  font-size: 14px;
}

.search .searchResult p {
  font-size: 20px;
  color: white;
  font-weight: 700;
}

.tempSearchContent {
  display: none;
}


@media screen and (max-width: 992px) {
  .search .searchWrap input {
    font-size: 14px;
    padding: 16px 59px;
  }

  .search .searchWrap img {
    width: 20px;
    height: 20px;
  }

  .search .searchWrap {
    width: 80%;
  }

  .search {
    align-items: center ;
  }

  .search button {
    font-size: 14px;
    padding: 14px 30px;
    height: max-content;
  }
}

@media screen and (max-width: 767px) {
  .search .searchWrap {
    width: 100%;
  }

  .search h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .search {
    row-gap: 0;
    flex-direction: column;
  }

  .search button {
    width: 100%;
    order: -1;
    margin-bottom: 10px;
  }

  .search .searchResult {
    padding: 10px 50px 10px 14px;
  }

  .search .searchResult div h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .search .searchResult div a {
    font-size: 12px;;
  }

  .search .searchResult {
    top: 110px;
  }
}