/* Variables
======================*/
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;500;700&display=swap");
/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: #0072bc !important;
  color: #fff !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #efefef;
  width: 5px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #efefef;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #0072bc;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* Loading
=========================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loading img {
  animation: fadeinout 0.8s ease-in-out alternate infinite;
}

.spin {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  width: 240px;
  height: 240px;
  margin: auto;
  border: 3px solid transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border-top-color: #faaf43;
  animation: spin 1.5s infinite linear;
}

.spin:before {
  content: "";
  border: 3px solid transparent;
  border-top-color: #0072bc;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  position: absolute;
  animation: antispin 0.7s infinite linear;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes antispin {
  from {
    -webkit-transform: rotate;
    -moz-transform: rotate;
    -o-transform: rotate;
    transform: rotate;
  }
  to {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes antispin {
  from {
    -webkit-transform: rotate;
    -moz-transform: rotate;
    -o-transform: rotate;
    transform: rotate;
  }
  to {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
body {
  font-family: "Tajawal", sans-serif;
  font-weight: 300;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  position: relative;
  text-align: start;
  padding-top: 130px;
}
@media (max-width: 991px) {
  body {
    padding-top: 75px;
  }
}

/* Mouse Cursor
=========================*/
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 991px) {
  .mouse-cursor {
    display: none !important;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #0072bc;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -20px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-color: #0072bc;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border: 1px solid #0072bc;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 80ms ease-out;
  -moz-transition: all 80ms ease-out;
  -ms-transition: all 80ms ease-out;
  -o-transition: all 80ms ease-out;
  transition: all 80ms ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Placholders
======================*/
.btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  padding: 0 25px;
  background-color: #faaf43;
  color: #212121;
  border: 0;
  box-shadow: none;
  font-weight: bold;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
@media (max-width: 575px) {
  .btn {
    line-height: 35px;
    padding: 0 15px;
    font-size: 12px;
  }
}
.btn i {
  margin-inline-start: 10px;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 50% 100%);
  background-color: #00aeef;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.btn span {
  position: relative;
  z-index: 999;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  clip-path: circle(140% at 50% 50%);
}
.btn.more {
  margin: 15px auto 0;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  padding: 0;
  background-color: #00aeef;
  color: #fff;
  border: 0;
  box-shadow: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 50% 100%);
  background-color: #faaf43;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.icon i,
.icon::before {
  z-index: 999;
  position: relative;
}
.icon:hover {
  color: #212121;
}
.icon:hover::after {
  clip-path: circle(100% at 50% 50%);
}
.icon:hover i,
.icon:hover::before {
  color: #212121;
}

.list {
  margin: 15px 0;
}
.list li {
  display: block;
  line-height: 25px;
  margin-bottom: 15px;
  padding-inline-start: 25px;
  font-size: 15px;
  color: #212121;
  position: relative;
  font-weight: 500;
}
.list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: #00aeef;
}
@media (max-width: 575px) {
  .list {
    font-size: 13px;
  }
}

/* Page Setting
=====================*/
section {
  position: relative;
  padding: 70px 0;
  z-index: 99;
}
section.colored {
  background-color: #efefef;
}
@media (max-width: 991px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  section {
    padding: 35px 0;
  }
}
@media (max-width: 575px) {
  section {
    padding: 20px 0;
  }
}

.section_img {
  background: url(../images/bc.jpg) no-repeat fixed;
}
.section_img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.9) 50%,
    rgba(0, 0, 0, 0.7) 70%
  );
}
.section_img .hint {
  font-weight: 500;
  font-size: 26px;
  margin: 0 auto 40px;
  color: #fff;
  z-index: 9999;
  position: relative;
  max-width: 991px;
  padding: 0 70px;
}
.section_img .hint::before,
.section_img .hint::after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-weight: 900;
  font-size: 40px;
  opacity: 50%;
  color: #00aeef;
}
.section_img .hint::before {
  content: "\f10d";
  bottom: 0px;
  left: 0px;
}
.section_img .hint::after {
  content: "\f10e";
  top: 0px;
  right: 0px;
}
@media (max-width: 991px) {
  .section_img .hint {
    padding: 0 50px;
    font-size: 19px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .section_img .hint {
    padding: 0 15px;
    font-size: 12px;
  }
  .section_img .hint::before,
  .section_img .hint::after {
    font-size: 14px;
  }
}

/* Section Title
=======================*/
.section_title {
  position: relative;
  text-align: center;
  margin: 0 auto 40px;
  color: #0072bc;
  font-size: 32px;
  font-weight: bold;
  line-height: 35px;
}
.section_title small {
  line-height: 22px;
  margin: 15px auto 0;
  max-width: 768px;
  color: #212121;
  display: block;
  font-size: 50%;
}
@media (max-width: 575px) {
  .section_title {
    margin-bottom: 15px;
    line-height: 25px;
    font-size: 16px;
  }
}

/* Page Head
=======================*/
.page_head {
  background: url(../images/bc.jpg) no-repeat center;
  background-position: 0;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page_head::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.8);
}
.page_head h3 {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 15px;
}
.page_head li {
  display: inline-block;
  color: #fff;
  font-size: 18px;
}
.page_head li a {
  font-size: 18px;
  display: block;
  color: #fff;
  padding: 0 15px;
  margin-inline-end: 5px;
  position: relative;
}
.page_head li a::after {
  content: " / ";
  position: absolute;
  top: 0;
  inset-inline-end: 0px;
  font-size: 18px;
  color: #0072bc;
}
@media (max-width: 991px) {
  .page_head .col-12 {
    flex-direction: column;
  }
  .page_head .col-12 h3 {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .page_head {
    padding: 40px 0 !important;
  }
}
@media (max-width: 575px) {
  .page_head h3 {
    font-size: 18px;
    margin: 0;
  }
  .page_head li,
  .page_head li a {
    font-size: 14px;
  }
}

/* Social
=======================*/
.social a {
  line-height: 38px;
  width: 38px;
  height: 38px;
  text-align: center;
  font-size: 12px;
  margin: 0px;
  color: #fff;
  display: block;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.social a:hover i {
  color: #fff;
}
.social a i {
  color: #fff;
  line-height: 38px;
  font-size: 16px;
  display: block;
}

/* Header
==========================*/
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 9997;
  padding: 5px 0;
}
@media (max-width: 767px) {
  header .container {
    padding: 0 5px;
  }
  header .col-12 {
    align-items: center;
  }
  header .logo {
    width: 140px;
  }
}
header .logo {
  display: inline-block;
  width: 160px;
}
header .btns li {
  vertical-align: middle;
  margin-inline-start: 15px;
}
header .btns a {
  display: inline-block;
  color: #212121;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
}
header .btns a span {
  display: inline-block;
  direction: ltr;
}
header .btns a i {
  width: 35px;
  height: 35px;
  font-size: 14px;
  line-height: 35px;
  text-align: center;
  color: #212121;
  background-color: #faaf43;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 767px) {
  header .btns li {
    vertical-align: middle;
    margin-inline-start: 10px;
  }
  header .btns a {
    display: inline-block;
    line-height: 35px;
    width: 35px;
    height: 35px;
    margin-bottom: 0;
    border: 1px solid #fff;
  }
  header .btns a span {
    display: none;
  }
  header .btns a i {
    line-height: 35px;
    text-align: center;
    display: block;
  }
}

.toggle_menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: none;
  width: 35px;
  height: 25px;
  margin: 15px auto;
  background-color: transparent;
  border: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .toggle_menu {
    display: flex;
  }
}
@media (max-width: 767px) {
  .toggle_menu {
    width: 30px;
    margin: 0;
    margin-inline-start: 3px;
  }
}
.toggle_menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #0072bc;
  -webkit-transition: 0.2s linear transform;
  -moz-transition: 0.2s linear transform;
  -ms-transition: 0.2s linear transform;
  -o-transition: 0.2s linear transform;
  transition: 0.2s linear transform;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.toggle_menu span:nth-child(2) {
  margin: 5px 0;
}
.toggle_menu.active span {
  -webkit-transform: rotate(-45deg) translateY(8px) translatex(-6px);
  -moz-transform: rotate(-45deg) translateY(8px) translatex(-6px);
  -ms-transform: rotate(-45deg) translateY(8px) translatex(-6px);
  -o-transform: rotate(-45deg) translateY(8px) translatex(-6px);
  transform: rotate(-45deg) translateY(8px) translatex(-6px);
}
.toggle_menu.active span:nth-child(2) {
  -webkit-transform: rotate(45deg) translateY(-6px) translateX(-3px);
  -moz-transform: rotate(45deg) translateY(-6px) translateX(-3px);
  -ms-transform: rotate(45deg) translateY(-6px) translateX(-3px);
  -o-transform: rotate(45deg) translateY(-6px) translateX(-3px);
  transform: rotate(45deg) translateY(-6px) translateX(-3px);
}
.toggle_menu.active span:last-child {
  display: none;
}

nav {
  background-color: #0072bc;
  position: fixed;
  top: 75px;
  right: 0;
  width: 100%;
  z-index: 9998;
  -webkit-transition: 0.4s linear inset-inline-start;
  -moz-transition: 0.4s linear inset-inline-start;
  -ms-transition: 0.4s linear inset-inline-start;
  -o-transition: 0.4s linear inset-inline-start;
  transition: 0.4s linear inset-inline-start;
}
nav .logo {
  display: none;
  width: 100px;
}
nav.move {
  inset-inline-start: 0;
}
nav ul.social a {
  line-height: 55px;
  height: 55px;
  font-size: 16px;
}
nav a {
  margin-inline-end: 30px;
  display: block;
  position: relative;
  line-height: 55px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}
nav a::after {
  content: "";
  position: absolute;
  top: 0px;
  inset-inline-start: 0;
  width: 0;
  height: 3px;
  background-color: #faaf43;
  -webkit-transition: 0.4s linear width;
  -moz-transition: 0.4s linear width;
  -ms-transition: 0.4s linear width;
  -o-transition: 0.4s linear width;
  transition: 0.4s linear width;
}
nav a.active,
nav a:hover {
  color: #fff;
}
nav a.active::after,
nav a:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  nav {
    padding: 25px 0;
    background-color: #212121;
    top: 0;
    inset-inline-start: -270px;
    height: 100%;
    width: 270px;
    overflow: hidden;
    overflow-y: auto;
  }
  nav .logo {
    display: block;
  }
  nav .container,
  nav .row {
    height: 100%;
    padding: 0;
  }
  nav .col-12 {
    flex-direction: column;
    justify-content: flex-start !important;
    height: 100%;
    padding: 0;
  }
  nav ul {
    width: 100%;
    margin: 35px auto;
  }
  nav ul li {
    display: block;
  }
  nav ul li a {
    padding: 15px 50px;
    line-height: 35px;
    margin: 0;
  }
  nav ul li a::after {
    top: auto;
    bottom: 0;
  }
  nav ul li a.active,
  nav ul li a:hover {
    background-color: #fff1;
  }
  nav ul.social {
    text-align: center;
  }
  nav ul.social li {
    display: inline-block;
  }
  nav ul.social li a {
    width: 30px;
    height: auto;
    line-height: 30px;
    margin: 0;
    padding: 0;
  }
}

/* Footer
=====================*/
footer {
  padding: 50px 0 0;
  position: relative;
  z-index: 9997;
  background-color: #212121;
}
@media (max-width: 991px) {
  footer {
    padding-top: 10px;
  }
}
footer::before {
  content: "";
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  position: absolute;
  opacity: 0.4;
  background: url(../images/shap.png) center repeat;
}
footer .container {
  z-index: 999;
}
footer .logo {
  margin: 20px 0 35px;
  width: 220px;
}
footer p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
}
footer h3 {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
  line-height: 20px;
  color: #fff;
}
footer ul.quick_links .row {
  margin: 0;
}
footer ul.quick_links li {
  display: block;
  position: relative;
  padding: 0;
  padding-inline-start: 20px;
  margin-bottom: 5px;
}
footer ul.quick_links li a {
  display: inline-block;
  color: #fff;
  line-height: 30px;
  font-size: 14px;
  font-weight: 300;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
footer ul.quick_links li a:hover {
  color: #faaf43;
  -webkit-transform: translatex(-5px);
  -moz-transform: translatex(-5px);
  -ms-transform: translatex(-5px);
  -o-transform: translatex(-5px);
  transform: translatex(-5px);
}
footer ul.quick_links li::before {
  content: "";
  color: #fff9;
  position: absolute;
  content: "\f104";
  inset-inline-start: 0;
  line-height: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
footer .social a {
  background-color: #fff1;
}
@media (max-width: 1199px) {
  footer .social a {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}
footer .social a:hover {
  background-color: #fff;
  color: #00aeef;
}
footer .subscribe_form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 15px;
}
footer .subscribe_form .form-control {
  width: 100%;
}
footer .subscribe_form .icon {
  margin: 0;
  position: absolute;
  inset-inline-end: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
footer .copyrights {
  text-transform: uppercase;
  position: relative;
  z-index: 999;
  color: #fff;
  padding: 15px;
  margin-top: 50px;
  border-top: 1px solid #fff1;
  text-align: center;
}

.up_btn {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  font-size: 16px;
  z-index: 9998;
}

.chat_btns {
  position: fixed;
  inset-inline-end: 10px;
  bottom: 10px;
  width: 45px;
  height: 105px;
  z-index: 9998;
  text-align: center;
}
.chat_btns a {
  display: block;
  position: relative;
  font-size: 22px;
  margin: auto;
  color: #fff !important;
  border: 0;
  width: 45px;
  height: 45px;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.chat_btns a i {
  line-height: 45px;
}
.chat_btns a::after,
.chat_btns a::before {
  width: 45px;
  height: 45px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
  animation: ripple 1.5s infinite;
  animation-delay: 0.6s;
}
.chat_btns a::after {
  animation-delay: 0.6s;
}
.chat_btns a.whats {
  background-color: #25d366;
}
.chat_btns a.whats::after,
.chat_btns a.whats::before {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
}
.chat_btns a.mes {
  background-color: #09f;
  margin-bottom: 15px;
}
.chat_btns a.mes::after,
.chat_btns a.mes::before {
  box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.6);
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.main_section {
  background-color: #fff;
  text-align: start;
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 100vh;
  max-height: 580px;
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .main_section {
    height: auto;
    max-height: none;
  }
}
.main_section .carousel-inner,
.main_section .carousel-item {
  height: 100%;
}
.main_section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.main_section .caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 70px;
  background-color: rgba(33, 0, 0, 0.4);
  text-align: center;
  height: 100%;
}
.main_section .caption::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pattern.png) repeat;
  z-index: 0;
}
.main_section .caption h3 {
  color: #fff;
  font-size: 48px;
  max-width: 991px;
  font-weight: bold;
  margin: 0;
}
.main_section .caption p {
  color: #fff;
  max-width: 768px;
  font-size: 22px;
  margin: 35px auto;
}
@media (max-width: 767px) {
  .main_section .caption {
    padding: 70px 15px;
  }
  .main_section .caption h3 {
    font-size: 32px;
  }
  .main_section .caption p {
    font-size: 18px;
    margin: 20px auto;
  }
}
@media (max-width: 767px) {
  .main_section .caption h3 {
    font-size: 26px;
  }
  .main_section .caption p {
    font-size: 14px;
  }
}

.carousel-indicators {
  margin: 0;
  bottom: 20px;
  padding: 0;
}

.carousel-indicators li {
  width: 14px;
  height: 14px;
  background-color: #00aeef;
  opacity: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #fff;
}

/* About
=====================*/
.about .about_cont h1 {
  font-weight: bold;
  font-size: 42px;
  margin: 0 0 30px;
  color: #0072bc;
  line-height: 55px;
}
.about .about_cont h3 {
  font-size: 18px;
  line-height: 30px;
  margin: 15px 0;
  padding-inline-start: 25px;
  border-inline-start: 5px solid #faaf43;
}
.about .about_cont h4 {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  color: #0072bc;
}
.about .about_cont p {
  font-size: 14px;
  margin: 10px 0;
  line-height: 25px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .about .about_cont h1 {
    font-size: 34px;
    margin: 0 0 20px;
    line-height: 40px;
  }
  .about .about_cont h3 {
    font-size: 16px;
    line-height: 25px;
  }
  .about .about_cont h4 {
    font-size: 16px;
    line-height: 25px;
  }
  .about .about_cont p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .about .about_cont h1 {
    font-size: 18px;
    margin: 0 0 15px;
    line-height: 25px;
  }
  .about .about_cont h3 {
    padding-inline-start: 15px;
    font-size: 14px;
    line-height: 20px;
  }
  .about .about_cont h4 {
    margin-bottom: 10px;
  }
  .about .about_cont p {
    font-size: 12px;
  }
}

.about_img img {
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* Gallery
=========================*/
.media_slider .owl-dots {
  margin: 25px auto 0;
}

.gallery .gallery_item {
  margin-bottom: 80px;
}
.gallery .gallery_item span {
  font-weight: bold;
}

.gallery_item {
  display: block;
  position: relative;
  margin: 10px auto;
}
.gallery_item img {
  z-index: 999;
  position: relative;
  height: 180px;
  object-fit: cover;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.gallery_item span {
  display: block;
  position: absolute;
  bottom: -50px;
  text-align: center;
  width: 100%;
  font-size: 18px;
  color: #0072bc;
}
.gallery_item::before,
.gallery_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00aeef;
  opacity: 10%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
.gallery_item::after {
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  transform: rotate(5deg);
}

/* News
=======================*/
.service_item {
  position: relative;
  margin-bottom: 30px;
  display: block;
  position: relative;
  height: 350px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.service_item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.9) 60%,
    rgba(0, 0, 0, 0.3) 90%,
    rgba(0, 0, 0, 0.01) 100%
  );
}
.service_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.service_item h3 {
  z-index: 999;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  line-height: 22px;
}
.service_item:hover img {
  -webkit-transform: scale(1.1) rotate(2deg);
  -moz-transform: scale(1.1) rotate(2deg);
  -ms-transform: scale(1.1) rotate(2deg);
  -o-transform: scale(1.1) rotate(2deg);
  transform: scale(1.1) rotate(2deg);
}
@media (max-width: 767px) {
  .service_item {
    height: 220px;
  }
  .service_item h3 {
    padding: 25px 15px 15px;
    font-size: 16px;
  }
}

.service {
  background-color: #fff;
  padding: 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.service h2 {
  margin: 15px 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  color: #0072bc;
}
.service h3 {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #212121;
}
.service p {
  line-height: 30px;
  margin: 15px auto;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
}
.service img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin: 0 auto 15px;
}
.service .media_slider .owl-dots {
  display: none;
}
@media (max-width: 767px) {
  .service {
    padding: 15px;
  }
  .service h2 {
    font-size: 18px;
  }
  .service h3 {
    font-size: 16px;
  }
  .service p {
    font-size: 14px;
    line-height: 25px;
  }
}

/* News
=======================*/
.news_item {
  position: relative;
  margin-bottom: 30px;
  display: block;
}
.news_item__cover {
  position: relative;
  height: 350px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.news_item__cover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}
.news_item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.news_item__content {
  z-index: 999;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .news_item__content {
    padding: 15px;
  }
}
.news_item__content .date {
  color: #212121;
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  width: 130px;
  background: #faaf43;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.news_item__content .date span {
  display: inline-block;
  letter-spacing: 3px;
}
.news_item__content h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin: 0;
  line-height: 22px;
}
.news_item:hover .news_item__cover img {
  -webkit-transform: scale(1.1) rotate(2deg);
  -moz-transform: scale(1.1) rotate(2deg);
  -ms-transform: scale(1.1) rotate(2deg);
  -o-transform: scale(1.1) rotate(2deg);
  transform: scale(1.1) rotate(2deg);
}

.blog_more {
  top: 0;
  inset-inline-end: 15px;
  position: absolute;
  margin: 0;
}
@media (max-width: 575px) {
  .blog_more {
    margin: 15px auto 0;
    position: relative;
    inset-inline-end: 0;
  }
}

.blog_slider .news_item {
  margin: auto;
}

.blog_details {
  background-color: #fff;
  padding: 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 575px) {
  .blog_details {
    padding: 15px;
  }
}
.blog_details h2 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  color: #0072bc;
}
.blog_details span {
  font-weight: 500;
  color: #00aeef;
  display: inline-block;
  font-size: 14px;
  margin: 0 0 15px;
}
.blog_details p {
  line-height: 30px;
  margin: 25px auto;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
}
.blog_details p.hint {
  padding-inline-start: 25px;
  border-inline-start: 5px solid #00aeef;
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 30px;
}
.blog_details img {
  margin: 15px auto;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .blog_details p {
    line-height: 25px;
    margin: 15px auto;
    font-size: 14px;
  }
  .blog_details p.hint {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 25px;
  }
}

.share {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 0;
  border-top: 1px solid #f0f0f0;
}
.share h4 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
  color: #0072bc;
}
.share .icon {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .share {
    flex-direction: column;
    align-items: flex-start;
  }
  .share h4 {
    margin-bottom: 15px;
  }
}

/* Form
========================*/
label {
  font-weight: bold;
  font-size: 14px;
  margin: 10px 0;
}

.form-control {
  padding: 0 15px;
  font-size: 14px;
  line-height: 45px;
  height: 45px;
  color: #212121;
  border: 0;
  letter-spacing: 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.form-control:hover,
.form-control:focus {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  resize: none;
  height: 110px !important;
  padding: 10px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

iframe {
  margin-bottom: -8px;
  z-index: 99;
}

.contact_form {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 25px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.contact_form .form_title {
  font-weight: 500;
  font-size: 28px;
  color: #0072bc;
  margin-bottom: 25px;
}
.contact_form .form-group {
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}
.contact_form .form-group .in_icon {
  position: absolute;
  inset-inline-end: 0;
  width: 35px;
  line-height: 60px;
  line-height: 60px;
  color: #dddddd;
  font-size: 22px;
  top: 0;
}
.contact_form .form-group .separator {
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0072bc;
  -webkit-transition: 0.3s linear width;
  -moz-transition: 0.3s linear width;
  -ms-transition: 0.3s linear width;
  -o-transition: 0.3s linear width;
  transition: 0.3s linear width;
}
.contact_form .form-group .form-control {
  font-weight: 700;
  background-color: #f1f1f1 !important;
  height: 60px;
  line-height: 60px;
}
.contact_form .form-group .form-control:focus + .separator {
  width: 100%;
}

.contact_info {
  border-inline-start: 5px solid #0072bc;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.contact_info i {
  font-size: 28px;
  color: #faaf43;
  position: relative;
  margin: 0 auto 15px;
}
.contact_info a {
  position: relative;
  font-weight: 500;
  display: block;
  font-size: 18px;
  color: #212121;
  direction: ltr;
}
.contact_info .data {
  position: relative;
  padding: 28px;
  background-color: #fff;
  border-bottom: 1px solid #ebebeb;
  text-align: center;
}
.contact_info .data:last-child {
  border-bottom: 0;
}
@media (max-width: 575px) {
  .contact_info {
    margin-bottom: 25px;
  }
  .contact_info .data {
    padding: 15px;
  }
  .contact_info .data a {
    font-size: 16px;
  }
}

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