@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;800&display=swap");
:root {
  --main_color: #002953;
  --second_color: #0b7491;
  --black_color: #000000;
}
*,
:focus {
  scroll-behavior: smooth;
  outline: 0px !important;
}
::selection {
  background-color: var(--main_color) !important;
  color: rgb(255, 255, 255) !important;
}
::-webkit-scrollbar {
  background-color: rgb(255, 255, 255);
  width: 7px;
  height: 2px;
}
::-webkit-scrollbar-track {
  background-color: rgb(255, 255, 255);
  border-radius: 25px;
  height: 2px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--second_color);
  border-radius: 25px;
  height: 2px;
}
body {
  font-family: "Rubik", sans-serif;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Page Setting
=============================*/
section {
  position: relative;
  padding: 50px 0;
  z-index: 99;
}
section.colored {
  background-color: #f5f5f5;
}
.section_title {
  text-align: center;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 30px;
}

.section_title h3 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  line-height: 40px;
  margin: 0 0 20px;
  color: var(--main_color);
}
.section_title h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
  width: 35px;
  height: 3px;
  background-color: var(--second_color);
  border-radius: 25px;
}
.section_title p {
  color: #646464;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  text-transform: lowercase;
  letter-spacing: 0;
}
@media all and (max-width: 991px) {
  section {
    padding: 50px 0;
  }
}
@media all and (max-width: 767px) {
  section {
    padding: 35px 0 !important;
  }
}
@media all and (max-width: 576px) {
  .section_title h3 {
    font-size: 24px;
    line-height: 25px;
  }
  .section_title p {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* List
===============================*/
ul {
  display: block;
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
ul li {
  display: inline-block;
}
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0px auto;
}
.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 50px;
  font-weight: 600;
  text-align: center;
  font-size: 12px;
  padding: 0px 20px;
  background-color: var(--second_color);
  color: rgb(255, 255, 255);
  border: 0px;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  transition: all 0.3s linear 0s;
}
.link::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: var(--main_color);
  transition: all 0.3s linear 0s;
  clip-path: circle(0% at 0% 100%);
}
.link i {
  margin-right: 5px;
}
.link span {
  position: relative;
  z-index: 999;
}
.link:hover {
  color: rgb(255, 255, 255);
}
.link:hover::before {
  clip-path: circle(140% at 0% 50%);
}
@media all and (max-width: 768px) {
  .link {
    padding: 0 15px;
    line-height: 40px;
    font-size: 12px;
  }
}
.icon_link {
  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: 14px;
  padding: 0px;
  background-color: var(--second_color);
  color: #fff;
  border: 0px;
  box-shadow: none;
  border-radius: 50%;
  transition: all 0.3s linear 0s;
}
.icon_link::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: var(--main_color);
  transition: all 0.3s linear 0s;
  clip-path: circle(0% at 0% 100%);
}
.icon_link i,
.icon_link::before {
  z-index: 999;
  position: relative;
}
.icon_link:hover {
  color: rgb(255, 255, 255);
  background-color: var(--second_color);
}
.icon_link:hover::after {
  clip-path: circle(140% at 0% 50%);
}
.icon_link:hover i,
.icon_link:hover::before {
  color: rgb(255, 255, 255);
}
.form-group {
  position: relative;
  margin-bottom: 20px;
  text-align: start;
}
.form-group .d-inline-block {
  margin-inline-end: 15px;
}
label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin: 0px 0px 10px;
  text-align: start;
  letter-spacing: 1px;
  color: var(--black_color);
}
.form-control {
  width: 100%;
  color: var(--black_color);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(222, 222, 222);
  margin: 0px;
  padding: 0px 15px;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  outline: 0px;
  box-shadow: none;
  font-weight: 400;
  border-radius: 5px;
}
.form-control:hover,
.form-control:focus {
  outline: 0px;
  border: 1px solid rgb(222, 222, 222);
  box-shadow: none;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0px;
}
textarea.form-control {
  padding: 15px;
  resize: none;
  min-height: 80px;
  line-height: 25px !important;
}
textarea.form-control.black:hover,
textarea.form-control.black:focus {
  color: var(--black_color);
}

.social {
  display: inline-block;
  border: 0px;
  margin: 0;
}
.social li .icon_link {
  margin: 0px;
}
.social a i {
  border: 0px;
  line-height: 40px;
  font-size: 16px;
  display: block;
}

.fa-facebook {
  background-color: rgb(24, 119, 242) !important;
}
.fa-instagram {
  background-color: rgb(228, 64, 95) !important;
}
.fa-linkedin {
  background-color: rgb(10, 102, 194) !important;
}
.fa-twitter {
  background-color: rgb(29, 161, 242) !important;
}

/* List
============================*/
.list {
  margin: 15px 0;
}
.list li {
  display: block;
  line-height: 22px;
  margin-bottom: 10px;
  padding-inline-start: 20px;
  font-size: 14px;
  color: var(--main_color);
  position: relative;
  letter-spacing: 0.5px;
}
.list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #0b7491;
  font-size: 10px;
}

/* Page Head
=======================*/
.page_head {
  background: url(../images/slider/slider1.jpg) center no-repeat fixed;
  background-size: cover;
  text-align: center;
  font-weight: 700;
  padding: 70px 0;
  margin-top: 125px;
}
.page_head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 41, 83, 0.9);
}
.page_head h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 15px;
  text-transform: uppercase;
}
.page_head ul li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.page_head ul li a {
  font-size: 16px;
  display: block;
  color: #ffffff;
  padding: 0 15px;
  margin-inline-end: 5px;
  position: relative;
}
.page_head ul li a::after {
  content: " / ";
  position: absolute;
  top: 0;
  right: -3px;
  font-size: 14px;
  color: #0b7491;
}
@media (max-width: 575px) {
  .page_head {
    padding-top: 120px;
  }
  .page_head h3 {
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 400;
  }
  .page_head ul li,
  .page_head ul li a {
    font-size: 12px;
  }
}

/* Top Header
===========================*/
.top_header {
  background-color: var(--second_color);
  width: 100%;
  top: 0;
  left: 0;
  height: 40px;
  position: fixed;
  padding: 5px 0;
  z-index: 9998;
}
.top_contcat {
  display: block;
  width: 60%;
}

.top_contcat a {
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  display: inline-block;
  margin-inline-end: 5px;
}

.top_contcat a i {
  margin-inline-end: 5px;
}
.top_header p {
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  margin: 0;
  width: 50%;
  text-align: end;
}

.top_header p span {
  display: inline-block;
  padding-inline-start: 15px;
  text-transform: uppercase;
  position: relative;
}

.top_header p span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  inset-inline-start: 5px;
  border-radius: 50%;
}
.top_header p span:nth-child(1)::before {
  display: none;
}

/*  Header
=============================*/
header {
  position: fixed;
  top: 40px;
  left: 0px;
  width: 100%;
  background-color: #fff;
  z-index: 9998;
  min-height: 85px;
}
header .container {
  position: relative;
  min-height: 85px;
}
header .navbar {
  padding: 0px;
  margin: 0px;
}
header .navbar .container {
  min-height: auto;
}
header .navbar-brand {
  margin: 0px;
  padding: 10px 0;

  height: 85px;

  width: auto;
  top: 0;
  left: 0;
  z-index: 9999;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar-brand img {
  height: 100%;
}
header .menu-btn {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 40px;
  margin: auto;
}
header .navbar {
  margin-top: -85px;
}
header ul.navbar-nav {
  -webkit-box-pack: end;
  justify-content: end;
  text-align: center;
  -webkit-box-align: end;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 26px 0;
}
header ul.navbar-nav li {
  display: inline-block;
  position: unset;
}
header ul.navbar-nav li a {
  position: relative;
  display: block;
  padding: 0;
  margin-inline-start: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--main_color);
  text-align: center;
  line-height: 35px;
  letter-spacing: 1px;
}
header ul.navbar-nav li a:focus,
header ul.navbar-nav li a:hover {
  color: var(--second_color);
}
header ul.navbar-nav li.active > a {
  color: var(--second_color);
}
header ul.navbar-nav li.active > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 3px;
  background-color: var(--second_color);
  border-radius: 25px;
}
header ul.navbar-nav li:last-child a {
  background-color: var(--second_color);
  border-radius: 5px;
  color: #fff;
  padding: 0 15px;
  font-weight: 400;
}
.navbar ul.navbar-nav li.dropdown .extra {
  display: none;
  background: #fff;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  vertical-align: middle;
  color: #14568a;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: 0;
  top: 0;
}
.navbar ul.navbar-nav li.dropdown .extra i {
  margin: auto;
  line-height: 30px;
}
.navbar ul.navbar-nav li.dropdown .dropdown-menu li {
  width: 50%;
}
.navbar ul.navbar-nav li.dropdown .dropdown-menu li a {
  border-bottom: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
  text-align: center;
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 40px;
}
.navbar ul.navbar-nav li.dropdown .dropdown-menu li:nth-child(even) a {
  border-right: 0;
}
.navbar ul.navbar-nav li.dropdown .dropdown-menu li:last-child a {
  background-color: transparent;
  color: var(--main_color);
}
.navbar ul.navbar-nav img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: flex;
    right: 0;
    left: auto;
    top: 100%;
    margin: 0;
    width: 100%;
    max-width: 640px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #f1f1f1;
    background-color: #fff;
    transform-origin: top;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transition: 0.4s all linear;
    -moz-transition: 0.4s all linear;
    -ms-transition: 0.4s all linear;
    -o-transition: 0.4s all linear;
    transition: 0.4s all linear;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@media all and (max-width: 991px) {
  header .menu-btn {
    display: inline-block;
  }
  header .navbar {
    margin-top: 0;
    background-color: var(--main_color);
    height: 100%;
    max-height: 440px;
    overflow: hidden;
    overflow-y: auto;
  }
  header ul.navbar-nav {
    display: block;
    text-align: start;
    padding-bottom: 10px;
  }
  header ul.navbar-nav li {
    display: block;
    position: relative;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu li {
    width: 100%;
  }
  header ul.navbar-nav li a {
    color: #fff;
    text-align: start;
    margin: 0;
    padding: 5px 25px;
    display: inline-block;
  }

  header ul.navbar-nav li a::before {
    display: none;
  }
  header ul.navbar-nav li a:focus,
  header ul.navbar-nav li a:hover {
    color: #fff;
  }
  .navbar-nav .dropdown-menu {
    background-color: #0002;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu li a {
    border: 0 !important;
    text-align: start;
    border-bottom: 1px solid #fff1 !important;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu li:last-child a {
    color: #fff;
    border-bottom: 0 !important;
  }
}
@media all and (max-width: 576px) {
  header .menu-btn {
    right: 15px;
  }
  header .navbar-brand {
    padding: 15px 0;
    left: 15px;
  }
}

/* Main Section
=============================*/
.main_section {
  width: 100%;
  margin-top: 125px;
  padding: 0px !important;
  height: calc(100vh - 125px);
}
.main_section .look_cont {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0px;
  left: 0px;
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 0 50px;
}
.main_section .look_cont h1 {
  color: rgb(255, 255, 255);
  letter-spacing: 8px;
  font-weight: 800;
  font-size: 58px;
  text-transform: uppercase;
  max-width: 940px;
}
.main_section .look_cont p {
  max-width: 940px;
  margin: 20px 0;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 1px;
}
.main_section .look_cont h3 {
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 38px;
  text-transform: uppercase;
  max-width: 768px;
  line-height: 45px;
}
.main_section .look_cont .link {
  margin: 25px auto 0px;
}
.main_section .carousel,
.main_section .carousel-item,
.main_section .carousel-inner {
  width: 100%;
  height: 100%;
}
.main_section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.main_section .carousel-indicators {
  margin: auto;
  bottom: 20px;
  height: 15px;
  width: 80px;
  padding: 0px;
  display: block;
}
.main_section .carousel-indicators li {
  display: inline-block;
  width: 12px;
  height: 12px;
  opacity: 1;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  border: 0;
  transition: 0.4s height linear;
  text-indent: unset;
  margin: 0 0 5px;
}
.main_section .carousel-indicators li.active {
  background-color: var(--second_color);
  width: 27px;
  border-radius: 25px;
}
.main_section .carousel-control-next,
.main_section .carousel-control-prev {
  position: absolute;
  margin: auto;
  opacity: 1;
  right: 15px;
  font-size: 18px;
}
.main_section .carousel-control-next i,
.main_section .carousel-control-prev i {
  line-height: 40px;
}
.main_section .carousel-control-prev {
  left: 15px;
  right: auto;
}
@media all and (max-width: 991px) {
  .main_section .look_cont h1 {
    letter-spacing: 2px;
    font-size: 28px;
  }
  .main_section .look_cont p {
    font-size: 14px;
    max-width: 576px;
  }
  .main_section .look_cont h3 {
    letter-spacing: 1px;

    font-size: 24px;

    max-width: 576px;
    line-height: 40px;
  }
}
@media all and (max-width: 767px) {
  .main_section .look_cont h1 {
    font-size: 24px;
  }
  .main_section .look_cont p {
    max-width: 440px;
  }
  .main_section .look_cont h3 {
    font-size: 20px;

    max-width: 440px;
    line-height: 35px;
  }
}
@media all and (max-width: 576px) {
  .main_section .look_cont {
    position: relative;
    background-color: var(--main_color);
    padding: 15px 15px 60px;
    display: block;
  }
  .main_section .look_cont h1 {
    font-size: 14px;
    line-height: 23px;
    margin: 0;
  }
  .main_section .look_cont p {
    margin: 10px 0;
    line-height: 20px;
    text-align: justify;
  }
  .main_section .look_cont .link {
    margin: 15px auto 0;
  }
  .main_section .carousel-control-next,
  .main_section .carousel-control-prev {
    display: none;
  }
}

/* About
=============================*/
.about .row.shadow {
  max-width: 991px;
  background-color: var(--main_color);
  margin: 0 auto;
  color: #fff;
  transform: translateY(-60px);
}
.about .row .about_hint {
  padding: 50px;
  text-align: start;
}
.about .row .about_hint:last-child {
  background-color: var(--second_color);
}
.about .row .about_hint h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  padding-inline-start: 40px;
  position: relative;
  line-height: 25px;
  letter-spacing: 2px;
}
.about .row .about_hint h3::before {
  content: "";
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 3px;
  width: 25px;
}
.about .row .about_hint p {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}
.about .about_cont {
  text-align: start;
}
.about .about_cont span {
  display: block;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 600;
  color: var(--second_color);
  position: relative;
  text-transform: uppercase;
}
.about .about_cont span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  margin: auto;
  width: 35px;
  height: 3px;
  background-color: var(--second_color);
  border-radius: 25px;
}
.about .about_cont h3 {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  line-height: 45px;
  margin: 0 0 20px;
  color: var(--main_color);
  letter-spacing: 1px;
}
.about .about_cont p {
  font-size: 16px;
  margin: 0 0 25px;
  line-height: 25px;
  position: relative;
  letter-spacing: 0;
}
.about .about_cont ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
}
.about .about_cont ul li {
  margin-inline-end: 15px;
}
.about .about_cont ul img {
  height: 60px;
  width: 100%;
  object-fit: contain;
}
.about_slider .owl-item img {
  display: block;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}
.mb-70 {
  padding-bottom: 120px;
}
.suze {
  max-width: 991px;
  border-radius: 25px;
  background-color: #fff;
  border-bottom: 5px solid #0b7491;
  border-top: 5px solid #0b7491;
  padding: 25px;
  margin: -60px auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suze img {
  max-width: 240px;
  margin: 0;
  margin-inline-end: 25px;
}
.suze h2 {
  font-size: 28px;
  text-transform: uppercase;
  color: #036;
  margin: 0;
  line-height: 50px;
  text-align: start;
}
@media all and (max-width: 767px) {
  .suze {
    flex-direction: column;
    align-items: center;
    padding-top: 5px;
  }
  .suze img {
    margin: 0 auto 15px;
  }
  .suze h2 {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
  }
}
/* Services
=============================*/
.service_item {
  display: block;
  border: 1px solid #ebebeb;
  padding: 15px;
  color: var(--main_color);
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 5px;
  min-height: 330px;
  background-color: #fff;
}
.service_item .cover {
  width: 100%;
  height: 240px;
  margin-bottom: 15px;
  position: relative;
}
.service_item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.service_item .cover::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--second_color);
  display: block;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s linear all;
  transform: scale(0);
}
.service_item:hover {
  color: var(--second_color);
}
.service_item:hover .cover::before {
  transform: scale(1) rotate(360deg);
}
.service .service_cont {
  text-align: start;
  margin-bottom: 15px;
}
.service .service_cont span {
  display: block;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 400;
  color: var(--second_color);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0px;
}
.service .service_cont span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  margin: auto;
  width: 35px;
  height: 3px;
  background-color: var(--second_color);
  border-radius: 25px;
}
.service .service_cont h3 {
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  line-height: 30px;
  margin: 0 0 20px;
  color: var(--main_color);
  letter-spacing: 0px;
}
.service .service_cont p {
  font-size: 16px;
  margin: 0 0 25px;
  line-height: 25px;
  position: relative;
  letter-spacing: 0;
}
.service_img {
  position: sticky;
  top: 150px;
}
.service_img img {
  width: 100%;
}

/* Section Image
=============================*/
.section_img {
  background: url(../images/slider/slider1.jpg) center no-repeat fixed;
  background-size: cover;
  padding: 0;
  margin-top: 35px;
}
.section_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main_color);
  opacity: 75%;
}
.section_img .container {
  position: relative;
}
.section_img h3 {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  line-height: 50px;
  margin: 60px 0 0;
  color: #fff;
  letter-spacing: 2px;
}
.section_img p {
  font-size: 16px;
  margin: 25px 0 0;
  line-height: 25px;
  position: relative;
  letter-spacing: 0;
  color: #fff;
}
.section_img .quote_form {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  transform: translateY(-70px);
}
.section_img .quote_form h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  line-height: 70px;
  margin: 0;
  background-color: var(--second_color);
  letter-spacing: 2px;
  border-radius: 5px 5px 0 0;
  padding: 0 25px;
  color: #fff;
}
.section_img form {
  padding: 25px;
}
.section_img form .link {
  margin: 0;
}

/* Team
=============================*/
.team_item {
  display: block;
  text-align: center;
  position: relative;
  height: 420px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}
.team_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: 0.4s linear transform;
}
.team_item .cont {
  position: absolute;
  bottom: 25px;
  background-color: #fff;
  padding: 15px;
  width: 85%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 5px;
}
.team_item h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  line-height: 25px;
  margin: 0;
  color: var(--main_color);
}
.team_item p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.team_item:hover img {
  transform: scale(1.1);
}
/* News
=============================*/
.blog_item {
  background-color: #fff;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 10px;
}
.blog_item .cover {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: block;
  position: relative;
}
.blog_item .cover::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--second_color);
  display: block;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s linear all;
  transform: scale(0);
  z-index: 999;
}
.blog_item .cover img {
  width: 100%;
  height: 100%;
  transition: 0.4s linear transform;
  object-fit: cover;
}
.blog_item .cover .date {
  position: absolute;
  top: 15px;
  inset-inline-start: 25px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 5px 10px;
  color: var(--main_color);
  z-index: 999;
}
.blog_item .cover .date strong {
  display: block;
}
.blog_item .cont {
  padding: 25px 25px 15px;
  text-align: start;
}
.blog_item .cont h3 {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  color: var(--main_color);
  font-weight: 600;
  line-height: 20px;
}
.blog_item .cont p {
  margin: 15px 0;
  color: #777;
  font-size: 12px;
}
.blog_item .cont a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  color: var(--second_color);
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.blog_item .cont a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 2px;
  width: 15px;
  transition: 0.4s linear width;
  background-color: var(--second_color);
}

.blog_item:hover .cover img {
  transform: scale(1.1) rotate(3deg);
}
.blog_item:hover .cover::before {
  transform: scale(1);
}

.blog_item .cont a:hover::before {
  width: 100%;
}
.more_btn {
  margin: 25px auto auto;
}
.blog_details h2 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  line-height: 30px;
  color: var(--main_color);
}
.blog_details span {
  background-color: var(--second_color);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  margin: 0 0 15px;
  border-radius: 5px;
  font-weight: 400;
}
.blog_details p {
  line-height: 25px;
  margin: 15px auto;
  font-size: 14px;
  color: var(--black_color);
  letter-spacing: 0.5px;
}
.blog_details p.hint {
  padding-inline-start: 15px;
  border-inline-start: 5px solid var(--second_color);
}
.blog_details img {
  margin-bottom: 15px;
  border-radius: 5px;
}

.share {
  margin-top: 15px;
  border-top: 1px solid #e7e7e7;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 0;
}
.share h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: var(--second_color);
  text-transform: uppercase;
}
.share .social a {
  color: #fff !important;
}

/* Contact
=======================*/
.contact > .row {
  max-width: 1140px;
  margin: auto;
}
.contact .contact_details {
  padding: 25px;
  background-color: var(--second_color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px 0 0 5px;
  width: 100%;
}

.contact .contact_form {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 0 5px 5px 0;
  padding: 20px 40px;
  background-color: #fff;
  width: 100%;
}
.contact .contact_details h3 {
  margin: 0 0 35px;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: #fff;
}
.contact .contact_details h3::before {
  content: "";
  background-color: #3cb2c3;
  position: absolute;
  inset-inline-start: 0;
  bottom: -10px;
  margin: auto;
  height: 3px;
  width: 40px;
}
.contact_info li {
  margin-bottom: 15px;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.contact_info li:last-child {
  margin-bottom: 0;
}
.contact .contact_details .contact_info li i {
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  margin-inline-end: 10px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50%;
  color: var(--second_color);
}
.contact .contact_details .contact_info li a {
  font-size: 16px;
  color: #fff;
}
.contact .contact_details.inner_contact {
  margin: 25px auto;
  background-color: #f5f5f5;
}
.contact .contact_details.inner_contact h3 {
  color: var(--main_color);
  font-size: 16px;
  margin-bottom: 15px;
}
.contact .contact_details.inner_contact h3::before {
  display: none;
}
.contact .contact_details.inner_contact h3 img {
  display: inline-block;
  width: 110px;
  height: 70px;
  object-fit: cover;
  margin-inline-end: 10px;
  border-radius: 5px;
  margin-top: -49px;
  border: 5px solid #fff;
}
.contact .contact_details.inner_contact li i {
  color: #ffffff;
  background-color: var(--second_color);
}
.contact .contact_details.inner_contact li a {
  font-size: 16px;
  color: var(--main_color);
}
.contact .contact_form {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 0 5px 5px 0;
  padding: 20px 40px;
  background-color: #fff;
  width: 100%;
}
.contact .contact_form h3 {
  margin: 0 0 35px;
  letter-spacing: 1px;
  font-size: 26px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: var(--main_color);
}
[dir="rtl"] .contact .contact_form h3 {
  letter-spacing: 0;
  font-size: 24px;
}
.contact .contact_form h3::before {
  content: "";
  background-color: #3cb2c3;
  position: absolute;
  inset-inline-start: 0;
  bottom: -10px;
  margin: auto;
  height: 3px;
  width: 40px;
}
.contact .contact_form .link {
  margin: 0;
}

/* Subscribe
======================*/
.subscribe {
  background-color: var(--main_color);
  border-bottom: 1px solid #fff2;
  position: relative;
}
.subscribe .subscribe_cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 25px 0;
}
.subscribe .subscribe_cont h3 {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  line-height: 30px;
  margin: 0 0 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.subscribe .subscribe_cont img {
  width: 290px;
  height: 90px;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  object-fit: contain;
}
.subscribe .subscribe_cont p {
  font-size: 14px;
  margin: 0;
}
.subscribe .subscribe_cont form {
  max-width: 480px;
  position: relative;
  z-index: 99;
  width: 100%;
}
.subscribe .subscribe_cont form .form-group {
  margin: 0;
}
.subscribe .subscribe_cont form .form-control {
  border: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 5px;
}
.subscribe .subscribe_cont form .link {
  margin: 0;
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  line-height: 40px;
  height: 40px;
  padding: 0 15px;
  letter-spacing: 1px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .subscribe .subscribe_cont form .link {
    position: relative;
    width: 100%;
    margin: 0px auto 0;
    inset-inline-end: 0;
  }
}
@media (max-width: 767px) {
  .subscribe .subscribe_cont {
    flex-direction: column;
    text-align: center;
  }
}

/* Client
=====================*/
.clients {
  padding: 30px 0;
}
.client_item img {
  cursor: pointer;
}
.client_item img:hover {
  filter: grayscale(0);
}

/* Footer
=====================*/
footer {
  padding: 0;
  position: relative;
  z-index: 9997;
  background-color: var(--main_color);
}
.subscribe .icon_link {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -20px;
}
footer p {
  color: #fff;
  font-size: 12px;
  line-height: 25px;
  text-transform: uppercase;
  margin: 0;
}
footer .contact_info {
  justify-content: center;
  align-items: center;
}
footer .contact_info li {
  margin: 20px auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .contact_info li::before {
  display: none;
}
footer .contact_info li i {
  min-width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #fff2;
  text-align: center;
  border-radius: 50%;
  margin-inline-end: 15px;
  color: #fff;
  font-size: 16px;
}
footer .contact_info li a {
  text-transform: lowercase;
  color: #fff;
  font-size: 14px;
}
footer .contact_info li span {
  display: block;
  font-size: 12px;
  line-height: 22px;
}
footer .contact_info li span:first-child {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
footer .contact_info li span.small {
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-inline-end: 15px;
}
footer .copyrights {
  text-align: center;
  color: #fff7;
  font-size: 12px;
  padding: 15px;
  border-top: 1px solid #fff2;
  margin-top: 15px;
}

.up_btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  margin: auto;
  font-size: 16px;
  z-index: 9998;
}
.whats_btn {
  position: fixed;
  right: 25px;
  bottom: 15px;
  z-index: 9998;
}
.wave_btn {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 26px;
  background-color: #25d366;
  color: #fff !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.wave_btn i {
  line-height: 50px;
  display: block;
}
.wave_btn::after,
.wave_btn::before {
  width: 45px;
  height: 45px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 #25d366;
  -o-box-shadow: 0 0 0 0 #25d366;
  box-shadow: 0 0 0 0 #25d366;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
  -webkit-animation: ripple 2s infinite;
  animation: ripple 2s infinite;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.wave_btn::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@-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);
  }
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader img {
  width: 281px;
  margin-bottom: 35px;
}

.spinner {
  margin: auto;
  width: 40px;
  height: 40px;

  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}
.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.dot1 {
  background-color: var(--main_color);
}
.dot2 {
  top: auto;
  background-color: var(--second_color);
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media all and (max-width: 1199px) {
  header ul.navbar-nav li a {
    font-size: 12px;
    padding: 0 10px;
  }
  .about .about_cont h1 {
    font-size: 28px;

    line-height: 35px;
  }
  .about .about_cont h1 span {
    margin-top: 5px;
  }
}
@media all and (max-width: 991px) {
  .top_header p {
    display: none;
  }
  .top_header .top_contcat {
    width: 100%;
    text-align: center;
  }
  .main_section {
    height: auto;
  }
  .about .row .about_hint {
    padding: 25px;
  }
  .about .row .about_hint h3 {
    font-size: 18px;
  }

  .about .row .about_hint p {
    font-size: 12px;
  }
  .about .about_cont h1 span {
    display: inline-block;
    margin: 0;
  }
  .about_img img {
    width: 100%;
  }
  .section_title h3 {
    font-size: 24px;
  }
  .section_title h5 {
    font-size: 12px;
  }
  .section_title p {
    font-size: 13px;
  }
  .section_img {
    margin-top: 0;
  }
  .section_img .quote_form {
    margin-top: 15px;
    transform: none;
  }
  .team_item {
    height: 330px;
  }
  .subscribe .subscribe_cont form {
    max-width: 360px;
  }
}
@media all and (max-width: 767px) {
  .about {
    padding-top: 70px;
  }
  .about .about_img {
    margin: 0;
  }
  .about .row.shadow {
    transform: translateY(0);
  }
  .blog_item .cont {
    padding: 15px;
  }
}
@media all and (max-width: 576px) {
  .section_title h3 {
    font-size: 18px;
  }
  .section_title h5 {
    font-size: 12px;
  }
  .section_title p {
    font-size: 12px;
  }
  .about .about_cont h1 {
    font-size: 18px;
    line-height: 25px;
  }
  .about .about_cont h1 span {
    margin-top: 5px;
  }
  .service .service_cont h3,
  .about .about_cont h3 {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 30px;
  }
  .service .service_cont p,
  .about .about_cont p {
    font-size: 14px;
    line-height: 20px;
  }
  .subscribe .subscribe_cont form {
    max-width: 90%;
    margin-top: 15px;
  }
  .section_img h3 {
    font-size: 32px;
    line-height: 35px;
    margin: 5px 0 0;
    letter-spacing: 0.5px;
  }
  .section_img p {
    font-size: 14px;
    line-height: 20px;
  }
  footer .contact_info li {
    margin: 10px 0;
  }
  .top_header {
    display: none;
  }
  header {
    top: 0;
  }
  .main_section,
  .page_head {
    margin-top: 85px;
  }
  .blog_details h2 {
    font-size: 18px;
    line-height: 22px;
  }
  .blog_details span {
    background-color: var(--second_color);
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 5px 10px;
    margin: 0 0 15px;
    border-radius: 5px;
    font-weight: 400;
  }
  .blog_details p {
    line-height: 22px;
    font-size: 13px;
    letter-spacing: 0;
  }
  .contact .contact_form {
    padding: 20px;
  }
  .contact .contact_details.inner_contact {
    padding: 15px;
    margin: 0 0 15px;
  }
  .contact .contact_details.inner_contact h3 img {
    width: 80px;
    height: 52px;
    margin-top: 0;
  }
  .contact .contact_details.inner_contact h3 {
    font-size: 14px;
  }
  .contact .contact_details.inner_contact li a {
    font-size: 14px;
    color: var(--main_color);
  }
}
