@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

input,
button {
  background-color: transparent;
  border: none;
  outline: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

.general-title {
  height: 96px;
  color: #19284A;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 27px;
  letter-spacing: 3.2px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  border-left: 12px solid #001c54;
  margin-bottom: 80px;
}

.back-to-top {
  bottom: 10px;
  right: 10px;
  border-radius: 50%;
  z-index: 9;
  display: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  cursor: pointer;
  transition: 0.3s ease;
  background-color: #0094D9;
  display: none;
}
.back-to-top:hover {
  transform: scale(1.1);
  background-color: #001c54;
}
.back-to-top.show {
  display: flex;
}

.mobile-header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 28, 84, 0.4);
  z-index: 99;
  transform: translateX(-211200px);
  transition: 0.4s ease;
}
.mobile-header-overlay.show {
  transform: translateX(0);
}

.mobile-header {
  position: fixed;
  left: 0;
  width: 300px;
  height: 100vh;
  padding: 20px;
  top: 0;
  transform: translateX(-1200px);
  z-index: 999;
  background-color: #19284A;
  transition: 0.4s ease;
  color: #fff;
}
.mobile-header .social-icons {
  display: flex;
  margin: 30px 0;
  gap: 30px;
}
.mobile-header .social-icons li a {
  border-radius: 50%;
  background-color: #0094D9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 33px;
  transition: 0.3s ease;
  height: 33px;
  font-size: 14px;
}
.mobile-header .social-icons li a:hover {
  transform: scale(1.03);
  color: #fff;
}
.mobile-header.show {
  transform: translateX(0);
}
.mobile-header .logo a img {
  width: 120px;
}
.mobile-header .lang ul {
  display: flex;
}
.mobile-header .lang ul li {
  border-right: 2px solid #eee;
  padding: 0 15px;
  transition: 0.3s ease;
}
.mobile-header .lang ul li:last-child {
  border: none;
}
.mobile-header .lang ul li:hover {
  color: #0094D9;
}
.mobile-header nav {
  margin-top: 20px;
}
.mobile-header nav ul li {
  font-size: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
  text-transform: uppercase;
}
.mobile-header .close-menu {
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.33);
}

header {
  padding: 30px 0;
  background-color: #001c54;
  z-index: 99;
}
header .mobile-btn {
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.33);
  position: relative;
  transition: all 0.2s linear;
  cursor: pointer;
}
header .mobile-btn.opened {
  transform: rotate(45deg);
  transition: all 0.2s linear;
  transition-delay: 0.3s;
}
header .mobile-btn.opened span:nth-child(1) {
  top: 23px;
  transition: all 0.2s linear;
}
header .mobile-btn.opened span:nth-child(2) {
  transform: rotate(90deg);
  transition: all 0.3s linear;
  transition-delay: 0.5s;
}
header .mobile-btn.opened span:nth-child(3) {
  top: 23px;
  transition: all 0.2s linear;
}
header .mobile-btn span {
  height: 3px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  display: block;
  width: 20px;
  left: 14px;
}
header .mobile-btn span:nth-child(1) {
  top: 16px;
}
header .mobile-btn span:nth-child(2) {
  top: 23px;
}
header .mobile-btn span:nth-child(3) {
  top: 30px;
}
header.header-main {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #001c54;
  width: 100%;
}
header .search {
  position: relative;
}
header .search button {
  background-color: transparent;
  border: none;
  outline: none;
}
header .search button:hover .search-area {
  display: block !important;
}
header .search .search-area {
  padding: 10px 20px;
  width: 280px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  background-color: #eee;
  display: none;
  position: absolute;
  left: -20px;
  bottom: -70px;
  z-index: 999;
}
header .search .search-area form {
  display: flex;
}
header .search .search-area form input {
  outline: none;
  height: 38px;
  width: 100%;
  font-size: 13px;
  outline: none;
  border: none;
  padding: 0 10px;
  background-color: #ccc;
}
header .search .search-area form button {
  width: 60px;
  background-color: #001c54;
  transition: 0.3s ease;
}
header .search .search-area form button:hover {
  opacity: 0.9;
}
header .lang {
  color: #fff;
  position: relative;
}
header .lang li:hover ul {
  display: block;
}
header .lang ul {
  background-color: #fff;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  display: none;
  position: absolute;
}
header .lang ul a {
  color: #333;
  padding: 3px 10px;
  display: flex;
}
header .lang ul a:hover {
  background-color: #eee;
}
header .nav-list {
  gap: 50px;
  margin-left: 40px;
  margin-top: 12px;
  display: flex;
  align-items: center;
}
header .nav-list a {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.44px;
  transition: 0.3s ease;
  text-transform: capitalize;
}
header .nav-list a:hover {
  color: #0094D9;
}

.banner {
  height: 100vh;
  overflow-x: hidden;
}
.banner .swiper-pagination-bullet {
  opacity: 1;
  background-color: #eee;
  width: 10px;
  height: 10px;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #001c54;
}
.banner .swiper-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.banner .swiper-slide.swiper-slide-active .banner-text .banner-title {
  opacity: 1;
  transform: translateX(0);
}
.banner .swiper-slide.swiper-slide-active .banner-text .banner-desc {
  opacity: 1;
  transform: translateX(0);
}
.banner .swiper-slide.swiper-slide-active .banner-text a {
  opacity: 1;
  transform: translateY(0);
}
.banner .swiper-slide:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.415);
}
.banner .swiper-slide .banner-text {
  z-index: 10 !important;
}
.banner .swiper-slide .banner-text .banner-title {
  color: #FFF;
  font-style: normal;
  font-weight: 600;
  opacity: 0;
  line-height: 56px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  max-width: 780px;
  transform: translateX(200px);
  letter-spacing: 3.6px;
}
.banner .swiper-slide .banner-text .banner-title h1 {
  font-size: 36px;
}
.banner .swiper-slide .banner-text .banner-desc {
  color: #FFF;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.6px;
  max-width: 640px;
  transform: translateX(200px);
  transition: transform 1200ms ease, opacity 1200ms ease;
  margin-top: 34px;
  margin-bottom: 37px;
}
.banner .swiper-slide .banner-text a {
  width: 210px;
  height: 56px;
  opacity: 0;
  transform: translateY(-50px);
  transition: transform 1200ms ease, opacity 1200ms ease;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  padding: 5px 51.5px;
  vertical-align: middle;
  padding: 16.25px 48px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .swiper-slide .banner-text a:before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: #0094D9;
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.banner .swiper-slide .banner-text a:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: #001c54;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.banner .swiper-slide .banner-text a:hover {
  color: #fff;
}
.banner .swiper-slide .banner-text a:hover::before {
  top: 100%;
}
.banner .swiper-slide .banner-text a:hover::after {
  bottom: -50%;
}
.banner .swiper-slide .banner-text a span {
  position: relative;
  z-index: 2;
  color: inherit;
}

.services {
  padding: 90px 0;
}
.services .col-lg-3 .service-item {
  border-right: 2px solid #D4DFEF;
  transition: 500ms;
  padding: 10px;
}
.services .col-lg-3 .service-item:hover {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  transform: scale(1.05) translateY(-10px);
}
.services .col-lg-3 .service-item .name {
  color: #303030;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.6px;
}
.services .col-lg-3 .service-item .desc {
  color: #303030;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 183.333% */
  letter-spacing: 0.84px;
}
.services .col-lg-3 .service-item .service-img {
  width: 102px;
  height: 102px;
  background-color: #D4DFEF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}
.services .col-lg-3 .service-item .service-img img {
  max-width: 60px;
  max-height: 60px;
}
.services .col-lg-3:last-child .service-item {
  border: none;
}

.our-mission {
  margin-bottom: 130px;
}
.our-mission .col-lg-4 .service-item {
  border-right: 2px solid #D4DFEF;
}
.our-mission .col-lg-4 .service-item .name {
  color: #303030;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.6px;
}
.our-mission .col-lg-4 .service-item .desc {
  color: #303030;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 183.333% */
  letter-spacing: 0.84px;
}
.our-mission .col-lg-4 .service-item span {
  width: 102px;
  height: 102px;
  background-color: #D4DFEF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
  color: #19284A;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 3.6px;
}
.our-mission .col-lg-4:last-child .service-item {
  border: none;
}

.about-inner {
  position: relative;
  margin-bottom: 92px;
}
.about-inner .container {
  margin-top:150px !important;
}
._content .about-inner:nth-of-type(even) .row {
    flex-direction: row-reverse !important;
}

.about-inner .inner {
  min-height: 280px;
  background: #FAFAFA;
  color: #303030;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.4px;
  padding: 42px 45px;
  z-index: 2;
}
.about-inner .col-lg-8{
    z-index:9;
}
._content .about-inner .right {
  height: 358px;
  margin-top:-100px;
  margin-left:-100px;
  
}
._content .about-inner:nth-child(even) .row .about-inner .right{
  margin-right:-100px !important;
  margin-left:0;!important;
}
@media(max-width:992px){
    ._content .about-inner .right{
        margin:0 !important;
    }
    .about-inner .container{
        margin-top:30px!important;
    }
}

.about-inner .right img {
  width: 100%;
  height: 100%;
}

.about {
  padding-bottom: 100px;
  position: relative;
}
.about .left-img {
  width: 400px;
  z-index: -2;
  height: 535px;
}
.about .left-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.about .about-left .about-title {
  height: 96px;
  color: #19284A;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 27px;
  justify-content: flex-end;
  letter-spacing: 3.2px;
  padding-right: 20px;
  border-right: 12px solid #001c54;
}
.about .about-left .desc {
  position: relative;
  z-index: 2;
}
.about .about-left .desc .right-img {
  height: 260px;
  position: absolute;
  bottom: -170px;
  left: -150px;
  width: 490px;
  z-index: -1;
}
.about .about-left .desc .right-img img {
  width: 100%;
  height: 100%;
}
.about .about-left .desc p {
  min-height: 280px;
  background: #FAFAFA;
  color: #303030;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.4px;
  padding: 42px 45px;
  z-index: 2;
}

.video {
  height: 420px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  justify-content: center;
}
.video .text {
  color: #FFF;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;
  max-width: 720px;
}
.video .play {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  justify-content: center;
  cursor: pointer;
}
.video .play:hover {
  transform: scale(1.02);
  color: #eee;
}
.video .play i {
  font-size: 40px;
}

.blog {
  padding-bottom: 100px;
}
.blog .blog-item img {
  width: 370px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}
.blog .blog-item .desc {
    color: #303030;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    max-width: 370px;
}
.blog .blog-item .read-more {
  width: 210px;
  height: 46px;
  margin-top: 10px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  padding: 5px 51.5px;
  vertical-align: middle;
  padding: 16.25px 48px;
  transition: 500ms;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-item .read-more:before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: #0094D9;
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.blog .blog-item .read-more:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: #001c54;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.blog .blog-item .read-more:hover {
  color: #fff;
}
.blog .blog-item .read-more:hover::before {
  top: 100%;
}
.blog .blog-item .read-more:hover::after {
  bottom: -50%;
}
.blog .blog-item .read-more span {
  position: relative;
  z-index: 2;
  color: inherit;
}

footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
footer:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(30, 53, 86, 0.96);
  width: 100%;
  z-index: -1;
  height: 100%;
}
footer .info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
footer .info li i {
  font-size: 20px;
}
footer .footer-top {
  padding: 50px 0 32px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.55);
}
footer .footer-top .logo {
  width: 180px;
}
footer .footer-top .search {
  border: 1px solid #fff;
  height: 52px;
  border-radius: 10px;
}
footer .footer-top .search form {
  display: flex;
  padding: 0 30px;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
footer .footer-top .search form input {
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding-right: 15px;
}
footer .footer-top .search form input::-moz-placeholder {
  color: #fff;
}
footer .footer-top .search form input::placeholder {
  color: #fff;
}
footer .footer-top .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer .footer-top .social-icons a {
  color: #fff;
  transition: 0.3s ease;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-top .social-icons a:hover {
  background-color: #0094D9;
  transform: scale(1.02);
}
footer .footer-bottom {
  padding: 35px 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.55);
}
footer .footer-bottom ul li {
  margin-bottom: 15px;
}
footer .footer-bottom ul li a {
  color: #fff;
  transition: 0.3s ease;
}
footer .footer-bottom ul li a:hover {
  color: #0094D9;
}
footer .copyright {
  color: rgba(217, 217, 217, 0.55);
  font-size: 12px;
  padding: 31px 0;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.breadcrumb {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 420px;
  display: flex;
  text-align: center;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  justify-content: center;
  z-index: 1;
}
.breadcrumb:after {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  background-color: rgba(30, 53, 86, 0.5);
  width: 100%;
  z-index: -1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.breadcrumb ul li {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
.breadcrumb ul li a {
  color: #ccc;
  font-size: 20px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.breadcrumb ul li a:hover {
  color: #fff;
}

.services-inner .row {
  margin-bottom: 90px;
}
.services-inner .row:nth-child(odd) {
  flex-direction: row-reverse;
}
.services-inner .row:nth-child(odd) .title {
  align-items: flex-end !important;
  border-right: 8px solid #001c54;
  padding-right: 30px;
  border-left: none !important;
}
.services-inner .row:nth-child(odd) .description {
  text-align: right !important;
}
.services-inner .row .services-inner-left {
  height: 420px;
}
.services-inner .row .services-inner-left img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.services-inner .row .services-inner-right .title {
  color: #19284A;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.4px;
  display: flex;
  padding-left: 30px;
  flex-direction: column;
  margin-bottom: 30px;
  border-left: 8px solid #001c54;
}
.services-inner .row .services-inner-right .title .img {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D4DFEF;
  border-radius: 50%;
  margin-bottom: 26px;
}
.services-inner .row .services-inner-right .title .img img {
  width: 60%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.services-inner .row .services-inner-right .description {
  color: #303030;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 183.333% */
  letter-spacing: 0.84px;
}

.blog-inner {
  margin-bottom: 50px;
}
.blog-inner .desc {
  color: #303030;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 185.714% */
  letter-spacing: 0.84px;
}

.contact {
  margin-bottom: 60px;
}
.contact .contact-title {
  color: #303030;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.44px;
  margin-bottom: 20px;
}
.contact button {
  background-color: #0094D9;
  color: #fff;
  text-transform: capitalize;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.contact button:hover {
  background-color: #001c54;
}
.contact .form-group {
  margin-bottom: 25px;
}
.contact .form-group input {
  background: #F7F6F6;
  height: 52px;
  width: 100%;
  color: #BABABA;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.84px;
  padding: 0 20px;
}
.contact .form-group input:focus {
  border: 1px solid #001c54;
}
.contact .form-group input ::-moz-placeholder {
  color: #BABABA;
}
.contact .form-group input ::placeholder {
  color: #BABABA;
}
.contact .form-group textarea {
  background: #F7F6F6;
  resize: none;
  width: 100%;
  color: #BABABA;
  font-size: 14px;
  font-style: normal;
  border: none;
  outline: none;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.84px;
  padding: 20px;
}
.contact .form-group textarea:focus {
  border: 1px solid #001c54;
}
.contact .form-group textarea ::-moz-placeholder {
  color: #BABABA;
}
.contact .form-group textarea ::placeholder {
  color: #BABABA;
}

.project {
  margin-bottom: 150px;
}
.project .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin-bottom: 50px;
}
.project .nav-tabs .nav-link {
  border: none;
  color: #303030;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.project .nav-tabs .nav-link.active {
  color: #303030;
  font-size: 18px;
  position: relative;
  font-weight: 600;
  letter-spacing: 1.44px;
  position: relative;
}
.project .nav-tabs .nav-link.active:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 4px;
  background-color: #0094D9;
  width: 100%;
}
.project .project-box {
  padding: 10px;
  position: relative;
  height: 420px;
  width: 100%;
  overflow: hidden;
}

.project .project-box .img-fluid {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
       width:100%;
}
.project .project-box .inner {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  text-align: center;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  transform: rotateX(180deg);
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(48, 48, 48, 0.66);
}
.project .project-box .inner .search-btn {
  width: 90px;
  height: 90px;
  display: flex;
  background: rgba(48, 48, 48, 0.66);
  align-items: center;
  transition: 0.3s ease;
  justify-content: center;
  border-radius: 10px;
}
.project .project-box .inner .search-btn:hover {
  border-radius: 50%;
  transform: scale(1.01);
}
.project .project-box .inner .inner-title {
  margin: 25px 0 20px;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1.68px;
}
.project .project-box .inner p {
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 90%;
  margin: 0 auto;
  letter-spacing: 0.96px;
}
.project .project-box:hover .inner {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
}

.f-thumbs__viewport {
  display: none;
}

@media (max-width: 1400px) {
  .about-inner .right {
    right: 186px;
    width: 500px;
    height: 330px;
    top: -70px;
  }
}
@media (max-width: 1700px) {
  header .search .search-area {
    padding: 10px;
    width: 250px;
    left: -100px;
  }
  header .search .search-area form button {
    width: 50px;
  }
}
@media (max-width: 1200px) {
  .project .project-box {
    height: 350px;
  }
  header .logo a img {
    width: 140px;
  }
  header .search .search-area {
    left: -150px;
    bottom: -80px;
  }
  header .nav-list {
    gap: 30px;
    margin-top: 0;
  }
  header .nav-list a {
    font-size: 16px;
  }
  .services {
    padding: 50px 0;
  }
  .services .col-lg-3 .service-item {
    padding: 0;
  }
  .services .col-lg-3 .service-item .service-img {
    width: 80px;
    height: 80px;
  }
  .services .col-lg-3 .service-item .service-img img {
    width: 50%;
  }
  .video .play {
    width: 100px;
    height: 100px;
  }
  .blog .blog-item .desc {
    line-height: 1.4;
    font-size: 16px;
  }
  footer .footer-top .logo {
    width: 140px;
  }
  .banner {
    height: 75vh;
  }
}
@media (max-width: 992px) {
  .video .text {
    margin-bottom: 30px;
  }
  .about .left-img {
    width: 100%;
    margin-bottom: 40px;
  }
  .about-inner .right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
  }
  .about .about-left .desc p {
    padding: 30px;
  }
  .general-title {
    height: 63px;
    font-size: 25px;
    padding-left: 12px;
    border-left: 7px solid #001c54;
    margin-bottom: 41px;
  }
  .banner {
    height: 65vh;
  }
  .banner .swiper-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .banner .swiper-slide.swiper-slide-active .banner-text .banner-title {
    opacity: 1;
    transform: translateX(0);
  }
  .banner .swiper-slide.swiper-slide-active .banner-text a {
    opacity: 1;
    transform: translateY(0);
  }
  .banner .swiper-slide:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.415);
  }
  .banner .swiper-slide .banner-text {
    z-index: 10 !important;
  }
  .banner .swiper-slide .banner-text .banner-title h1 {
    font-size: 30px;
  }
  .banner .swiper-slide .banner-text .banner-desc {
    line-height: 25px;
    margin-top: 24px;
    margin-bottom: 27px;
  }
  .banner .swiper-slide .banner-text a {
    height: 44px;
  }
  .d_1 {
    justify-content: flex-end;
  }
  .about {
    margin-bottom: 100px;
  }
  .about#about {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .about#about .about-left {
    margin-bottom: 0px !important;
  }
  .about#about .left-img {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
  }
  .about#about .about-left {
    margin-bottom: 140px;
  }
  .about#about .about-left .desc {
    width: 100%;
  }
  .about#about .about-left .desc .right-img {
    left: auto;
    width: 100%;
    bottom: auto;
    height: 300px;
  }
  .about#about .about-left .desc .right-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .video .text {
    text-align: center;
    margin-bottom: 30px;
  }
  .about .blog {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .about .left-img {
    margin-bottom: 30px;
    width: auto;
  }
  .about .about-left .desc .right-img {
    width: auto;
  }
  .project .project-box {
    height: 270px;
  }
  .project .project-box .inner {
    padding: 0px;
  }
  .project .project-box .inner .search-btn {
    width: 40px;
    height: 40px;
  }
  .project .project-box .inner .search-btn img {
    width: 40%;
  }
  .project .project-box .inner .inner-title {
    font-size: 20px;
    margin: 10px 0;
  }
  .project .project-box .inner p {
    line-height: 1.3;
  }
  header .search .search-area {
    left: -260px;
    width: 260px;
    padding: 10px;
  }
  header .search .search-area input {
    height: 35px !important;
  }
  .blog .blog-item img {
    height: 170px;
  }
  .blog .blog-item .read-more {
    height: 38px;
  }
}
@media (max-width: 576px) {
  .our-mission .col-lg-4 .service-item {
    border: none;
  }
  .project .project-box {
    width: 100%;
    height: 200px;
  }
  .project .project-box .inner .inner-title {
    font-size: 16px;
    margin: 0;
  }
  .project .project-box .inner .search-btn {
    width: 40px;
    background-color: transparent;
    height: 40px;
  }
  .project .project-box .inner .search-btn img {
    width: 20px !important;
  }
  .project .project-box .inner p {
    display: none;
  }
  .project .project-box img {
    width: 100% !important;
  }
  .project .nav-tabs {
    flex-direction: column;
  }
  .project .nav-tabs .nav-link.active {
    font-size: 14px;
  }
  .project .nav-tabs .nav-link.active:after {
    bottom: 0px;
  }
  .services-inner .row {
    margin-bottom: 30px;
  }
  .services-inner .row:nth-child(odd) .title {
    border-right: 4px solid #001c54;
    padding-right: 15px;
    text-align: right !important;
  }
  .services-inner .row .services-inner-left {
    height: 220px;
  }
  .services-inner .row .services-inner-right .title {
    font-size: 18px;
    line-height: 20px;
    padding-left: 15px;
    margin-bottom: 20px;
    border-left: 6px solid #001c54;
  }
  .services-inner .row .services-inner-right .title .img {
    width: 70px;
    height: 70px;
  }
  .services-inner .row .services-inner-right .title .img img {
    width: 40%;
  }
  .about-inner .inner {
    padding: 10px;
  }
  .our-mission .col-lg-4 .service-item {
    text-align: center;
  }
  .our-mission .col-lg-4 .service-item span {
    margin: 10px auto;
    width: 80px;
    font-size: 30px;
    height: 80px;
  }
  header .search .search-area {
    left: -190px;
    width: 230px;
    bottom: -70px;
    padding: 7px;
  }
  .banner .swiper-slide .banner-text .banner-title h1 {
    font-size: 22px;
  }
  .banner .swiper-slide .banner-text .banner-desc {
    font-size: 15px;
    margin: 10px 0 20px;
    line-height: 1.3;
  }
  .video .text {
    font-size: 14px;
    line-height: 24px;
  }
  .video .play {
    width: 80px;
    height: 80px;
  }
  .video .play i {
    font-size: 26px;
  }
  .services .col-lg-3 .service-item {
    text-align: center;
    transform: none !important;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
  }
  .services .col-lg-3 .service-item .service-img {
    margin: 0 auto;
  }
  .about .about-left .about-title {
    height: 56px;
    font-size: 20px;
    padding-right: 10px;
    border-right: 8px solid #001c54;
  }
  .about .about-left .desc p {
    padding: 20px;
  }
  .blog .blog-item .desc {
    font-size: 14px;
    line-height: 1.2;
  }
  .blog .blog-item img {
    height: 150px;
  }
  .blog .blog-item .read-more {
    height: 38px;
    font-size: 14px;
  }
  .blog-inner {
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .blog .blog-item img {
    height: 130px;
  }
  .blog .blog-item .read-more {
    height: 32px;
    width: 90%;
    font-size: 14px;
  }
  .banner .swiper-slide .banner-text .banner-title h1 {
    font-size: 18px;
  }
  .banner .swiper-slide .banner-text .banner-desc {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */