/* Style start */
/* ======= Basic style ======= */
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  position: relative;
  z-index: auto;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75em;
  color: #555;
}

:root {
  /* Define global variables */
  /* --primary-color: #521c0d;
  --secondary-color: #ff9b45; */
  --heading-font: "Poppins", sans-serif;
  --body-font: "Jost", sans-serif;
  --border-radius: 8px;
  --border-color: #e4e4e4;
  --light-color: #f4e7e1;
}

p {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75em;
  color: #555;
  margin-bottom: 5px;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 21px;
}

h6.sub-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #6d3807;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 15px 0;
  color: #000;
}

img {
  width: 100%;
  height: auto;
}

img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #f4f4f4;
}

span,
a,
a:hover {
  /* display: inline-block; */
  text-decoration: none;
  color: inherit;
}

li {
  font-size: 17px;
}

/* text field */
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
  outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
  max-width: 100%;
  margin-bottom: 10px;
  /* padding: 15px 0; */
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input:focus,
textarea:focus {
  border-bottom-width: 1px;
  border-color: var(--primary-color);
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.75em;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  border: none;
}

input[type="submit"]:hover {
  background-color: #d30119;
  color: #000 !important;
  border: none;
}

select {
  padding: 10px;
  border-radius: 5px;
}

table,
th,
tr,
td {
  border: 1px solid #f4f4f4;
}

th,
tr,
td {
  padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
  display: inline;
}

ul {
  padding-left: 0;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #555;
  font-size: 16px;
  font-weight: 400;
}

#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}
#preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #003366;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #003366;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}
@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}
a:hover,
a:active {
  color: #003366;
  text-decoration: none;
}
section {
  padding: 80px 0;
}
.top_header {
  background: #fff;
}
.normal_postion {
  position: relative;
  z-index: auto;
}
.navbar-brand img {
  max-height: 75px;
  transition-duration: 0.5s;
}
.navbar-nav > li > a,
.dropdown-item {
  font-weight: 600 !important;
}
.menu_area-light .navbar-nav > li > a {
  color: #222;
  font-family: "Jost";
}
.menu_area-light .navbar-nav li.has-sub a {
  font-family: "Jost";
}
.bg-primary {
  background-color: #002850 !important;
}
.bg-secondary {
  background-color: #d30119 !important;
}
.bg-dark {
  background-color: #001026 !important;
}
.text-primary {
  color: #003366 !important;
}
.text-secondary {
  color: #d30119 !important;
}
.text-dark {
  color: #001c41 !important;
}
.text-primary-hover:hover {
  color: #003366 !important;
}
.text-secondary-hover:hover {
  color: #d30119 !important;
}
.min-height-700 {
  min-height: 700px;
}
.min-height-475 {
  min-height: 475px;
}
.min-vh-85 {
  min-height: 85vh;
}
.border-radius-15 {
  border-radius: 15px;
}
.common-shadow {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.primary-overlay[data-overlay-dark]:before {
  background: #003366;
}
.secondary-overlay[data-overlay-dark]:before {
  background: #d30119;
}
.dark-overlay[data-overlay-dark]:before {
  background: #001c41;
}
.left-overlay-secondary[data-overlay-dark]:before {
  background: rgba(236, 186, 22, 0.76);
  background: linear-gradient(-90deg, transparent, #d30119 65%);
}
.left-overlay-dark[data-overlay-dark]:before {
  background: rgba(0, 28, 65, 0.76);
  background: linear-gradient(-90deg, transparent, #001c41 80%);
}
.bg-primary-light {
  background: rgba(6, 59, 139, 0.8);
}
.text-white-hover:hover {
  color: #d30119 !important;
}
.dotted-seprator {
  border-top: 1px dotted rgba(0, 0, 0, 0.15);
}
.box-shadows {
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.extra-section {
  padding-bottom: 275px;
}
.hover-style1 {
  overflow: hidden;
  border-radius: 0.25rem;
}
.hover-style1 img {
  transition: all 0.3s linear 0s;
}
.hover-style1:hover img {
  transform: scale(1.05);
}
.shape-img-one {
  transform: rotate(180deg);
}
.vw-lg-50 {
  width: 50vw;
}
@media only screen and (max-width: 991px) {
  .vw-lg-50 {
    width: auto;
    text-align: center;
  }
  .navbar-brand img {
    max-height: 47px;
  }
  /* .top_header { margin-top: -45px;}	 */
}
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 35px;
  height: 35px;
  line-height: 30px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.scroll-to-top i {
  color: #fff;
}
.scroll-to-top:hover {
  color: #232323;
  background: #fff;
}
.scroll-to-top:hover i {
  color: #232323;
}
.scroll-to-top:visited {
  color: #232323;
  text-decoration: none;
}
.list-style01 li {
  line-height: 32px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}
.list-style01 li:last-child {
  margin-bottom: 0;
}
.list-style01 li:before {
  content: "\e64c";
  font-family: "themify";
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  line-height: 35px;
  color: #003366;
}
.list-style02 li {
  display: inline-block;
  margin-right: 2rem;
}
.list-style02 li:last-child {
  margin-right: 0;
}
.list-style02 li a {
  color: rgba(255, 255, 255, 0.6);
}
.list-style02 li a:hover {
  color: #d30119;
}
.list-style03 li {
  margin-bottom: 15px;
}
.list-style03 li:last-child {
  margin-bottom: 0;
}
.list-style03 li a {
  color: rgba(255, 255, 255, 0.6);
}
.list-style03 li a:hover {
  color: #d30119;
}
.list-style04 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-style04 li {
  margin-bottom: 15px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
}
.list-style04 li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0px;
}
.list-style05 {
  list-style: none;
  margin-bottom: 35px;
  padding: 0;
}
.list-style05 li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px dotted #ededed;
}
.list-style05 li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list-style07 {
  list-style: none;
  margin-bottom: 35px;
  padding: 0;
}
.list-style07 li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e4e4e4;
}
.list-style07 li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .list-style07 {
    margin-bottom: 30px;
  }
  header.scrollHeader .navbar-default {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    left: 0;
    transition: all 0.2s ease 0s;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    animation: 0.95s ease 0s normal forwards 1 running headerAnimate;
  }
}
.list-style08 {
  margin: 0;
  padding: 0;
}
.list-style08 li {
  margin-bottom: 20px;
}
.list-style08 li:last-child {
  margin-bottom: 0;
}
.list-style08 li a {
  color: #fff;
  font-size: 16px;
}
.list-style08 li a:hover {
  color: #d30119;
}
.butn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px !important;
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  padding: 15px 32px !important;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
  background-color: #003366;
  letter-spacing: 1.6px;
  border: none;
  border-radius: 6px;
}
.butn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: #d30119;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}
.butn:hover,
.butn:active,
.butn:focus {
  color: #fff !important;
}
.butn:hover:before,
.butn:active:before,
.butn:focus:before {
  top: -40%;
}
.butn.white:before {
  background-color: #fff;
}
.butn.white:hover,
.butn.white:active,
.butn.white:focus {
  color: #003366 !important;
}
.butn.white-hover:hover,
.butn.white-hover:active,
.butn.white-hover:focus {
  background-color: #fff;
  color: #001c41 !important;
}
.butn.white-hover:hover:before,
.butn.white-hover:active:before,
.butn.white-hover:focus:before {
  background-color: #fff;
}
.butn.secondary {
  background-color: #d30119;
}
.butn.secondary:before {
  background-color: #003366;
}
.butn.md {
  padding: 12px 28px !important;
}
.butn.sm {
  padding: 8px 24px !important;
}
.butn-2 {
  position: relative;
  z-index: 9999;
  display: inline-block;
  font-size: 16px;
  line-height: normal;
  padding: 16px 30px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  color: #ffffff;
  background-color: #003366;
  border: none;
  will-change: transform;
  transition: color 0.3s ease, border-color 0.3s ease,
    background-position 0.3s ease, background-color 0s linear 0.3s;
  border-radius: 10px;
}
.butn-2.secondary {
  background-color: #d30119;
}
.butn-2.secondary:hover:before,
.butn-2.secondary:active:before,
.butn-2.secondary:focus:before,
.butn-2.secondary:hover:after,
.butn-2.secondary:active:after,
.butn-2.secondary:focus:after {
  background: #003366;
  width: 53%;
  transition: all 0.6s ease;
  opacity: 1;
}
.butn-2:before {
  position: absolute;
  top: 50%;
  right: 0;
  margin: auto;
  width: 0;
  content: " ";
  color: #ffffff;
  height: 100%;
  z-index: -1;
  transition: all 0.5s ease;
  transform: translateY(-50%);
  opacity: 0;
}
.butn-2:after {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  width: 0;
  content: " ";
  color: #ffffff;
  background: #d30119;
  height: 100%;
  z-index: -1;
  transition: all 0.5s ease;
  transform: translateY(-50%);
  opacity: 0;
}
.butn-2:hover,
.butn-2:active,
.butn-2:focus {
  color: #ffffff !important;
}
.butn-2:hover:before,
.butn-2:active:before,
.butn-2:focus:before,
.butn-2:hover:after,
.butn-2:active:after,
.butn-2:focus:after {
  background: #d30119;
  width: 54%;
  transition: all 0.6s ease;
  opacity: 1;
  transform: translateY(-51%);
}
.butn-2.sm {
  padding: 10px 20px !important;
  font-size: 14px;
}
.butn-2.md {
  padding: 12px 24px;
}
@media screen and (max-width: 575px) {
  .butn-2 {
    margin-top: 20px;
  }
}
.link-btn {
  font-weight: 500;
  color: #3b3b3b;
  line-height: 20px;
}
.link-btn:after {
  color: #003366;
  content: "\f0a9";
  font-family: Font awesome\5 Free;
  font-weight: 600;
  font-size: 15px;
  padding-left: 5px;
  vertical-align: middle;
}
.link-btn.white {
  color: #ffffff;
}
.link-btn.white:hover {
  color: #e2e2e2;
}
.link-btn.white:hover:after {
  color: #e2e2e2;
}
.link-btn.white:after {
  color: #ffffff;
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 15px;
  vertical-align: middle;
  padding-left: 8px;
}

.icon-style1 {
  display: block;
  color: #fff;
  background: #003366;
  font-size: 24px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px !important;
  transition: all 0.3s linear 0s;
  vertical-align: top;
}
.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}
.top-bar-info ul {
  margin-bottom: 0;
}
.top-bar-info li {
  font-weight: 500;
  color: #fff;
  list-style-type: none;
  font-size: 14px;
  padding: 0 5px 0;
  display: inline-block;
  margin-bottom: 0;
}
.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}
#top-bar {
  display: block;
  position: relative;
  z-index: 999;
  background: #003366;
  padding: 7px 0;
}
.top-social-icon {
  padding: 0;
  float: right;
  margin: 0;
}
.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}
.top-social-icon li:last-child {
  padding-right: 0;
}
.top-social-icon li:last-child a {
  padding-right: 0;
}
.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 3px;
}
.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.top-social-icon li a:active {
  color: rgba(255, 255, 255, 0.85);
}
.top-social-icon li a:focus {
  color: rgba(255, 255, 255, 0.85);
}
.navbar-nav li.current > a,
.navbar-nav li.active > a {
  color: #003366;
}
.attr-nav > ul > li > a.butn {
  color: #fff;
}
.navbar > ul > li.current > a:after {
  border-color: transparent #003366 #003366 transparent;
}
.menu_area-light .navbar-nav li.current > a,
.menu_area-light .navbar-nav li.active > a {
  color: #d30119;
}
.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent #d30119 #d30119 transparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: #003366;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
  color: #003366;
}
.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: #003366;
}
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #003366 #003366 transparent;
}
@media screen and (min-width: 992px) {
  .menu_area-light .navbar ul ul li.active > a,
  .menu_area-light .navbar-nav li.has-sub a:hover {
    color: #d30119;
  }
  .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
    border-color: #d30119;
  }
  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #d30119;
  }
  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #003366;
  }
  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
    border-color: transparent #003366 #003366 transparent;
  }
  .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
    border-color: transparent #003366 #003366 transparent;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: #003366;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #003366;
  }
  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #003366 #003366 transparent;
  }
  .header-style2 .navbar ul ul li.active > a {
    color: #003366;
  }
  .header-style2 .navbar-nav li.has-sub a:hover,
  .header-style2 .navbar-nav li.has-sub a:active,
  .header-style2 .navbar-nav li.has-sub a:focus {
    color: #003366;
  }
  .header-style2 .navbar-nav li.current > a,
  .header-style2 .navbar-nav li.active > a {
    color: #003366;
  }
  .header-style2 .navbar > ul > li.has-sub > a:hover:after,
  .header-style2 .navbar > ul > li.has-sub > a:active:after,
  .header-style2 .navbar > ul > li.has-sub > a:focus:after {
    border-color: transparent #003366 #003366 transparent;
  }
}
@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #003366;
  }
  .header-style1 .navbar-toggler:after {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .header-style1 .navbar-toggler:before {
    background: #fff;
  }
  .header-style1 .navbar-toggler.menu-opened:after,
  .header-style1 .navbar-toggler.menu-opened:before {
    background: #fff;
  }
}

.slider-fade .bg-img {
  background-size: cover;
}
.slider-fade .owl-nav {
  margin: 0;
}
.slider-fade .owl-nav .owl-next {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  height: 50px;
  width: 50px;
  line-height: 56px !important;
  background: #003366 !important;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
  color: #fff !important;
}
.slider-fade .owl-nav .owl-prev {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  height: 50px;
  width: 50px;
  line-height: 56px !important;
  background: #003366 !important;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
  color: #fff !important;
  left: 30px;
}
.slider-fade .owl-nav .owl-next {
  right: 30px;
}
.slider-fade .owl-nav i {
  font-size: 20px;
  color: #fff;
}
.slider-fade .owl-nav .owl-next:hover,
.slider-fade .owl-nav .owl-prev:hover {
  background: #d30119 !important;
}
.slider-fade.owl-carousel.owl-theme .owl-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  margin: 0;
  left: 0;
}
.slider-fade .item {
  height: 85vh;
}
.slider-fade .video_btn {
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: rgba(255, 255, 255, 0.1);
}
.slider-fade .video_btn:before,
.slider-fade .video_btn:after {
  content: none;
}
.slider-fade .icon {
  animation-delay: 0.8s;
}
.slider-fade span {
  animation-delay: 1.2s;
}
.slider-fade h1 {
  animation-delay: 1.6s;
}
.slider-fade .butn {
  animation-delay: 2s;
}

.heading-style02 span {
  position: relative;
  z-index: 1;
  padding-left: 10px;
  padding-bottom: 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #003366;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
}
.heading-style02 span:before {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  top: -1px;
  content: "";
  left: -10px;
  background-color: #d30119;
  border-radius: 50%;
}
.page-title-section {
  padding: 190px 0 100px;
}
.page-title-section h1 {
  font-size: 60px;
  line-height: 1;
  color: #fff;
}
.page-title-section ul {
  margin: 0;
  display: inline-block;
}
.page-title-section ul li {
  display: inline-block;
  vertical-align: middle;
}
.page-title-section ul li:after {
  content: "\e622";
  font-weight: 700;
  vertical-align: middle;
  color: #ffffff;
  font-size: 16px;
  font-family: themify;
  padding: 0 5px 0 10px;
}
.page-title-section ul li:last-child:after {
  content: none;
}
.page-title-section ul li:last-child {
  opacity: 0.8;
}
.page-title-section ul li a {
  color: #d30119;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.page-title-section ul li:hover a {
  color: #d30119;
}
@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 175px 0 90px;
  }
  .page-title-section h1 {
    font-size: 54px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 145px 0 85px;
  }
  .page-title-section h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .page-title-section h1 {
    font-size: 40px;
  }
}
/* Banner sec */
.banner-sec {
  padding: 0;
}
.banner-sec .owl-carousel .owl-item {
  height: 600px;
  position: relative;
  z-index: 1;
}
.banner-sec .owl-carousel .owl-item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000057;
}
.banner-sec .owl-carousel .owl-item .banner-btn {
  padding: 15px 30px;
  text-align: center;
  color: #ffffff;
  background: #d30119;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

.banner-sec .owl-carousel .owl-item .banner-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  text-align: center;
  margin: auto;
}
.banner-sec .owl-carousel .owl-item .banner-content h3 {
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  letter-spacing: 1px;
}
.banner-sec .owl-carousel .owl-item .banner-content p {
  color: #fff;
}
.banner-sec .owl-carousel .owl-item img {
  width: 100%;
}

.card-style08 {
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
}
.card-style08 .category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px 10px 3px 10px;
  color: #fff;
  font-weight: 600;
  z-index: 9;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.5s ease;
  background-color: #003366;
}
.card-style08 .card-footer {
  border-color: rgba(0, 0, 0, 0.085);
}
.card-style08 .card-footer i {
  vertical-align: text-top;
}
.card-style08 .card-img:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 59, 139, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.card-style08:hover .card-img:before {
  opacity: 1;
  transition: 0.4s;
}
.card-style08:hover .category {
  background-color: #d30119;
}
.card-style11 .card-body {
  background-color: #003366;
  transition: all 0.4s ease;
}
.card-style11 .card-body img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(54%) saturate(4579%)
    hue-rotate(340deg) brightness(91%) contrast(89%);
}

.card-style11 {
  transition: 0.5s;
}
.card-style11:hover {
  transform: translateY(-20px);
  transition: 0.5s;
}
.card-style11 .card-body h3 a,
.card-style11 .card-body p {
  color: white;
}
.card-style11 .card-body a i {
  color: #fff;
}

.service-block {
  position: relative;
  background: transparent;
  z-index: 9;
  padding-top: 50px;
}
.card-style12 {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border: 0;
  height: 277px;
}
.card-style12:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-180deg, transparent, #000 175%);
}
.card-style12 img {
  transition: 0.5s;
}
.card-style12 .title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  border-radius: 4px;
  padding: 10px 15px;
  transition: 0.5s;
  color: #ffffff;
  border-color: #fb2e46;
  background-color: #d30119;
}
.title h4 span {
  background-color: #ffffff;
  color: #3b3b3b;
  margin: 0 10px 0 0;
  padding: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 15px;
  text-align: center;
  border-radius: 4px;
}
.card-style12 .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.1);
  transition: 0.5s;
  padding: 20px;
  background: rgba(6, 59, 139, 0.85);
  opacity: 0;
  border-radius: 4px;
  visibility: hidden;
  margin: 20px;
  z-index: 1;
}
.card-style12 .content .inner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  right: 25px;
  margin: 0 auto;
}
.card-style12 .content .inner-content a {
  color: #ffffff;
}
.card-style12 .content .inner-content a:hover {
  color: rgba(226, 226, 226, 0.9);
}
.card-style12:hover .content {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.card-style12:hover .title {
  opacity: 0;
  visibility: hidden;
}
.card-style12:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
@media screen and (max-width: 1199px) {
  .card-style12 .content {
    margin: 15px;
    padding: 15px;
  }
}

.story-video {
  height: 100%;
}
.parallax-video {
  padding: 250px 0 300px 0;
}
/* Count-sec */
.count-sec {
  padding: 60px 0;
  position: relative;
}
.count-sec:before {
  position: absolute;
  top: -28px;
  content: "";
  width: 100%;
  height: 50px;
  background: #ffffff;
  transform: skewY(-1deg);
}

.clients-style3 {
  position: relative;
}
.clients-style3:after {
  position: absolute;
  bottom: -28px;
  content: "";
  width: 100%;
  height: 50px;
  background: #ffffff;
  transform: skewY(1deg);
}

.count-sec p {
  color: #fff !important;
}
.count-sec h3 {
  color: #ffffff !important;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #d30119;
}
.owl-nav i,
.owl-nav span {
  color: #232323;
  font-size: 28px;
}
.testimonial .owl-carousel .owl-item img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(86%) saturate(4769%)
    hue-rotate(343deg) brightness(77%) contrast(120%);
}

.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}
.owl-carousel .caption .overflow-hidden {
  display: inline-block;
}
.owl-carousel .caption h3 {
  font-weight: 200;
  visibility: hidden;
  opacity: 0;
  position: relative;
  display: inline-block;
}
.owl-carousel .caption h1 {
  font-size: 70px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 80px;
  visibility: hidden;
  opacity: 0;
  color: #ffffff;
  margin-bottom: 30px;
}
.owl-carousel .caption p {
  font-size: 20px;
  color: #ffffff;
  word-spacing: 2px;
  max-width: 800px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  margin-bottom: 10px;
}
.owl-carousel .caption .butn i {
  position: relative;
  top: 1px;
  z-index: 9;
}
@media screen and (max-width: 1199px) {
  .owl-carousel .caption h1 {
    font-size: 55px;
    line-height: 70px;
  }
  .owl-carousel .caption p {
    font-size: 18px;
    max-width: 700px;
  }
}
@media screen and (max-width: 991px) {
  .owl-carousel .caption h1 {
    font-size: 48px;
    line-height: 60px;
  }
  .owl-carousel .caption p {
    font-size: 16px;
    max-width: 600px;
  }
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .owl-carousel .caption h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .banner-sec .owl-carousel .owl-item .item {
    height: 100%;
  }
  .banner-sec .owl-carousel .owl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .banner-sec .owl-carousel .owl-item .banner-content {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
  .banner-sec .owl-carousel .owl-item .banner-content h3 {
    font-size: 34px;
    line-height: 40px;
    color: #fff;
    letter-spacing: 1px;
  }
  .count-sec h3 {
    font-size: 50px;
  }
}
@media screen and (max-width: 575px) {
  .owl-carousel .caption h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .owl-carousel .caption p {
    font-size: 13px;
  }
}
.service-carousel.owl-carousel.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
}
.service-carousel.owl-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}

.clients:hover .client-img {
  opacity: 0;
}
.clients .client-img {
  width: auto;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.35s ease-out;
  display: inline-block;
}
.clients:hover .client-hover-img {
  opacity: 1;
}
.clients .client-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.35s ease-out;
}

.process-style-02 {
  position: relative;
  display: block;
  text-align: center;
}

.process-style-02:before {
  content: "";
  position: absolute;
  top: 38px;
  right: -68px;
  width: 109px;
  height: 44px;
  background: url(../img/icons/arrow-bottom.png);
  background-repeat: no-repeat;
}

.process-style-02.last:before {
  content: none;
}

.process-style-02.arrow-top:before {
  content: "";
  position: absolute;
  top: 30px;
  right: -68px;
  width: 109px;
  height: 44px;
  background: url(../img/icons/arrow-top.png);
  background-repeat: no-repeat;
}

.process-style-02 .icon-holder {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 25px;
  background: #d30119;
  padding: 20px;
  transition: all 0.3s ease-in-out 0s;
}

.process-style-02 .icon-holder .count-box {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: #ffffff;
  transition: all 0.7s ease-in-out 0s;
  vertical-align: middle;
  text-align: center;
}

.process-style-02 .icon-holder .count-box h4 {
  line-height: 30px;
  color: #000000;
}

.process-style-02 .text-holder {
  position: relative;
  display: block;
}
.process-style-02 .text-holder h4 {
  color: #ffffff;
  margin-bottom: 4px;
}

@media screen and (max-width: 991px) {
  .process-style-02:before,
  .process-style-02.arrow-top:before {
    content: none;
  }

  .process-style-02 .icon-holder {
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
    padding: 15px;
  }
}
.appointment-form {
  position: relative;
  margin-top: -177px;
  z-index: 9;
  padding-bottom: 60px;
  background: transparent;
}
.appointment-form .form-area .display-20 {
  color: #ffffff !important;
}
.appinment-form .form-area {
  margin-top: -100px;
}

.appinment-form .left-content {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.appinment-form .right-content {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.social-icon-style2 {
  margin-left: 0;
  display: block;
  padding-left: 0;
  list-style: none;
}

.social-icon-style2 li {
  padding-right: 5px;
  display: inline-block;
  text-align: center;
}

.social-icon-style2 li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: rgba(6, 59, 139, 0.12);
  text-align: center;
  display: block;
  color: #003366;
  font-size: 16px;
  overflow: hidden;
  border-radius: 5px;
}
.appointment-form .butn {
  background: #fff;
  color: #003366 !important;
}
.appointment-form .butn:before {
  display: none;
}
.appointment-form input[type="submit"] {
  background: #003366;
  color: #fff !important;
}

.social-icon-style2 li a:hover {
  background-color: #d30119;
  color: #fff;
}

.social-icon-style2 li:last-child {
  padding-right: 0;
}

.social-icon-style2 li a:hover i {
  animation: bottomtotop 0.6s linear forwards;
}

@keyframes bottomtotop {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

.icon-style1 {
  display: block;
  color: #fff;
  background: #d30119;
  font-size: 24px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  transition: all 0.3s linear 0s;
  vertical-align: top;
  margin-top: 20px;
}
.media .media-body h4 {
  margin-bottom: 4px;
}

.ani-top-bottom2 {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: TopBottom2;
  animation-timing-function: ease-in-out;
}
@keyframes TopBottom2 {
  0% {
    transform: translate(0px, 0px);
  }
  65% {
    transform: translate(0, 30px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.rotated {
  animation: rotated 45s infinite linear;
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes move {
  0% {
    transform: translate3d(-200%, 0, 0);
  }
  60% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
.error-page-main h2 {
  font-size: 229px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .error-page-main h2 {
    font-size: 200px;
  }
}
@media only screen and (max-width: 575px) {
  .error-page-main h2 {
    font-size: 165px;
  }
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
}
.form-control:focus {
  border-color: #d30119;
}
.form-check-input:checked {
  border-color: #d30119;
  background-color: #d30119;
}
.quform-input {
  position: relative;
}
.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}
.quform-element > label {
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px;
}
.quform-element > label .quform-required {
  color: #cc0101;
  font-size: 10px;
}
.quform-inner input {
  width: 100%;
}
.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}
.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.quform-errors > .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
  border-color: #f5543f;
}
.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-submit-inner {
  float: none;
}
.quform-loading-wrap {
  float: none;
}
.quform-loading-wrap .quform-loading {
  display: inline-block;
}
.quform-element {
  margin-bottom: 1rem;
}

/* project-sec style start */
.project-sec {
  padding: 80px 0;
  position: relative;
}
.project-sec::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #0000007b;
  top: 0;
  left: 0;
  z-index: -1;
}
.project-sec .project-content h6 {
  font-size: 20px;
  color: #e63a27;
  font-weight: 700;
}
.project-sec .project-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 40px;
}
.project-sec .main-btn.pro-btn {
  background: #d30119;
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 6px;
}
.project-sec .main-btn.pro-btn:hover {
  color: #ffffff;
}
.project-sec .main-btn.pro-btn:before {
  background: #ffffff;
}

/* For gallery style start */

#gallery .img-wrapper {
  position: relative;
  margin-top: 15px;
  transition: 0.5s;
  z-index: 1;
  margin-bottom: 6px;
  transition: 0.5s;
}

#gallery .img-wrapper:hover:before {
  top: 0;
  left: 0;
  transition: 0.5s;
}

#gallery .img-wrapper img {
  width: 100%;
  border-radius: 6px;
}

#gallery .img-wrapper:hover .img-overlay {
  opacity: 1;
}

#gallery .img-wrapper .img-overlay {
  background: #032f5ea3;
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
}
#gallery .img-wrapper {
  height: 300px;
  overflow: hidden;
}
#gallery .img-wrapper a img {
  height: 100%;
}
#gallery .img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgb(0 0 0 / 91%);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5%;
}
@media screen and (max-width: 767px) {
  #gallery .img-wrapper {
    height: 130px;
  }
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
  .banner-sec .owl-carousel .owl-item .banner-content {
    top: 13%;
  }
  .banner-sec .owl-carousel .owl-item .banner-content h3 {
    font-size: 53px;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}

/* project-sec style end */

.newsletter-form .quform-submit-inner button {
  position: absolute;
  bottom: 48px;
  right: 8px;
  background-color: #003366;
  border-radius: 5px;
  color: #fff;
}
.newsletter-form .quform-submit-inner button:active,
.newsletter-form .quform-submit-inner button:focus,
.newsletter-form .quform-submit-inner button:hover {
  background-color: #003366;
  color: #fff;
}
.newsletter-form .quform-input .form-control {
  min-height: 54px;
  padding: 0.375rem 1.05rem;
}
.newsletter-form.form2 .quform-input .form-control {
  background: rgba(255, 255, 255, 0.1);
}
.footer-logo {
  max-width: 214px;
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
}
.footer-sec h3 {
  margin-bottom: 20px;
  border-bottom: 2px solid #d30119;
  padding-bottom: 7px;
  display: inline-block;
}
.footer-logo > a {
  display: inline-block;
}
footer .email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding-bottom: 5px;
}
footer .email a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: all 0.8s ease;
}
footer .email a:hover:after,
footer .email a:active:after,
footer .email a:focus:after {
  width: 100%;
}
footer .email a:hover,
footer .email a:active,
footer .email a:focus {
  color: #d30119;
}
footer .email a:after {
  border-bottom: 1px solid #fff;
  transition: all 0.8s ease;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
}
footer .phone {
  padding-bottom: 0;
  margin-bottom: 0;
}
footer .phone a {
  padding-bottom: 0;
  letter-spacing: -0.05rem;
  color: #fff;
}
footer .phone a:hover,
footer .phone a:active,
footer .phone a:focus {
  color: #d30119;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 60px;
  }
}

footer .list-style-1 li {
  padding: 0 0 5px 0;
}
footer .list-style-1 li:last-child {
  padding: 0;
}
.footer-list li a {
  color: #fff;
}
.footer-list li a:hover {
  color: #d30119;
}
.conatct-info {
  margin-top: -70%;
}
@media screen and (max-width: 1199px) {
  .conatct-info {
    margin-top: 0;
  }
}
.footer-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-bar {
    margin-top: 60px;
  }
}
.footer-menu {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.footer-menu li {
  display: inline-block;
}
.footer-menu li:after {
  content: "|";
  margin: 0 15px;
  top: 0;
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.5);
  height: auto;
  width: auto;
}
.footer-menu li a {
  color: #ffffff;
}
.footer-menu li.last:after {
  content: none;
}
@media screen and (max-width: 575px) {
  .footer-menu li:after {
    margin: 0 12px;
  }
}
.footer-section-title span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  color: #d30119;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-section-title span:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #d30119;
}
.buy-theme {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 150px;
  right: -65px;
  background: #b30116;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.buy-theme i {
  font-size: 16px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}
.all-demo i {
  font-size: 15px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}
.buy-theme:hover,
.all-demo:hover {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  right: 0px;
  background: #d30119;
}
.all-demo:hover {
  background: #003366;
}
.buy-theme span,
.all-demo span {
  padding: 0 9px;
  position: relative;
  top: 0;
  opacity: 0;
}
.buy-theme:hover span,
.all-demo:hover span {
  opacity: 1;
  color: #fff;
}
.buy-theme:hover i,
.all-demo:hover i {
  color: #fff;
}
.buy-theme a,
.all-demo a {
  color: #232323;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}
.all-demo {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 189px;
  right: -50px;
  background: #009bc1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.inner_banner_caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
}
.inner_banner {
  position: relative;
  z-index: 1;
  padding: 0;
  height: 400px;
  overflow: hidden;
}
.inner_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.inner_banner h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #fff;
}
.single_service p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  line-height: 28px;
  margin: 20px 0;
  color: #505050;
}
.single_service p a {
  color: #2187b1;
  font-weight: bold;
}
.single_service ul li {
  list-style: none;
  color: #505050;
  margin: 5px 0;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  text-align: justify;
}
.single_service ul li:before {
  content: "\f14a";
  color: #d30119;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  position: absolute;
  left: 0;
}
/* .single_service h2:not(.head) {
  color: #5b940a;
  font-size: 24px;
  margin: 10px 0;
} */
.about-work-img {
  float: right;
  width: 40%;
  margin: 0 0 20px 20px;
}
.work-img {
  float: right;
  width: 40%;
  margin: 0 0 20px 20px;
}
.gallery-page {
  background: #fff;
}
.project-sec::after {
  display: none;
}
.call_area h4,
.email-area h4,
.location h4,
.time h4 {
  margin-bottom: 5px;
  font-size: 24px;
}
.call_area i,
.email-area i,
.location i,
.time i {
  width: 30px;
  height: 30px;
  background: #fff;
  text-align: center;
  line-height: 30px;
}
.call_area .flex-grow-1 p a,
.email-area .flex-grow-1 p a,
.location .flex-grow-1 p,
.time .flex-grow-1 p {
  color: #fff;
}
.about-big {
  height: 300px;
}
.about-big img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-small {
  height: 200px;
}

@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
  }
  .project-sec {
    padding: 40px 0 60px;
  }
  .about-work-img {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .work-img {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .about-big {
    height: 180px;
  }
  .about-small {
    height: 120px;
  }
}

/* Style end */
