@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
.hero-section .text-box .site-btn {
  background-color: #fe0000;
  color: #fff;
}

.hero-section .text-box .site-btn:hover {
  background-color: #1c1a1b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Jost", sans-serif;
}

a,
a:focus {
  text-decoration: none;
  outline: 0;
}

input,
textarea,
select {
  transition: all 0.5s ease;
  outline: none !important;
}

a {
  color: #1974c6;
  transform: scale(1);
}

a,
button,
a:hover {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #202020 !important;
  outline: 0;
  box-shadow: none !important;
}

.btn:focus {
  box-shadow: none !important;
}

body {
  font-family: "Jost", sans-serif;
  background: #f4f4f4;
  font-size: 16px;
}


p {
  margin: 0;
  font-size: 16px;
  color: #1c1a1b;
  font-weight: 400;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-btn {
  font-size: 18px;
  padding: 8px 15px;
  color: #fff;
  font-weight: 500;
  background-color: #1c1a1b;
}
.site-btn:hover {
  background-color: #fe0000;
  color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.social-icon ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 30px;
  color: #fff;
}
.social-icon ul a i {
  transition: all 0.7s ease-out 0s;
}
.social-icon ul a:hover i {
  transform: rotateY(360deg);
  transition: all 0.7s ease-out 0s;
}

.upper-header {
  background-color: #fe0000;
  padding: 25px 0;
}
.upper-header .main-upper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header.is-sticky {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
}

.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.35s ease-out;
  background: rgba(0, 0, 0, 0.7490196078);
}

.page-header.is-sticky .navbar-brand img {
  width: 55px;
  transition: 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
  padding: 5px;
  display: inline-block;
}
.navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #fe0000;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .navbar .navbar-toggler-icon {
    background-image: none;
  }
  .navbar-container input[type=checkbox],
  .navbar-container .hamburger-lines {
    display: block;
  }
  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }
  .navbar input[type=checkbox] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  .navbar .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 13px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
  }
  .navbar .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }
  .navbar .hamburger-lines .line2 {
    transition: transform 0.1s ease-in-out;
  }
  .navbar .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }
  .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgb(45, 71, 91);
  }
  .navbar input[type=checkbox]:checked ~ .header-menu-tiems {
    transform: translateX(0);
  }
  .navbar input[type=checkbox]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  .navbar input[type=checkbox]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  .navbar input[type=checkbox]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}
.hero-section-heading {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.hero-section {
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section .navbar-nav .nav-item {
  font-size: 18px;
  font-weight: 500;
  padding-right: 20px;
}
.hero-section .text-box {
  padding: 100px 0;
  text-align: center;
  width: 40%;
  margin: auto;
}
.hero-section .text-box p {
  color: #fff;
  font-size: 17px;
  margin: 25px 0;
}
.site-heading {
  font-size: 35px;
  font-weight: 600;
  color: #1c1a1b;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.sub-heading {
  font-size: 20px;
  font-weight: 500;
  color: #fe0000;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
}
.sub-heading::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  background: #fe0000;
  right: 109%;
  top: 50%;
}
.sub-heading::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: #fe0000;
  animation: pulsex 3s ease infinite alternate;
  left: -63%;
  top: 9px;
}

@keyframes pulsex {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(32px);
  }
}
.section {
  padding: 70px 0;
}

.text-box-heading {
  position: relative;
  z-index: 3;
}

.section-title-big_text {
  font-size: 85px;
  position: absolute;
  opacity: 1;
  left: 0;
  right: 0;
  top: 0;
  color: #353542;
  font-weight: 800;
  z-index: 0;
  text-transform: none;
  letter-spacing: 5px;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(14, 19, 23, 0.1294117647);
  line-height: 0.8;
}

.service-box .service-heading, .service-box p {
  margin-bottom: 20px;
}

.service-box .single-service {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.service-box .single-service .text-box {
  position: relative;
  z-index: 2;
}
.service-box .single-service img {
  transition: 0.6s ease-in-out;
}
.service-box .single-service:hover .rotate-img {
  transform: rotateY(360deg);
  transition: 0.6s ease-in-out;
}
.service-box .single-service:hover .rotate-service-bg {
  transform: scale(1.2);
  transition: 0.6s ease-in-out;
}
.service-box .single-service .rotate-service-bg {
  position: absolute;
  bottom: 10%;
  left: 0%;
  transform: translate(0%, -7%);
  z-index: 0;
  transition: 0.6s ease-in-out;
  width: 100%;
}
.service-box .single-service .rotate-service-bg img {
  opacity: 0.1;
  width: 65%;
}
.service-box .service-heading {
  font-size: 25px;
  font-weight: 600;
  color: #fe0000;
}
.service-box .site-btn-v-2 {
  font-size: 20px;
  padding: 20px 30px;
}

.site-btn-v-2 {
  background-color: #fe0000;
  color: #fff;
}
.site-btn-v-2:hover {
  background-color: #1c1a1b;
  color: #fff;
}

.site-btn-v-3:hover {
  background: #fff;
  color: #1c1a1b;
}

.our-blog-section .blog-header-img {
  background: #ffffff url("../images/blog-header.png") no-repeat;
  background-size: cover;
  padding: 40px;
}
.our-blog-section .site-heading {
  color: #fff;
  margin: 0;
}
.our-blog-section .section-title-big_text {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.13);
}
.our-blog-section .blog-single:hover img {
  transform: scale(1.05);
  transition: 0.3s ease-in-out;
  filter: brightness(40%);
}
.our-blog-section .blog-single img {
  transition: 0.3s ease-in-out;
  transform: scale(1);
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.our-blog-section .blog-single .img-box {
  position: relative;
  overflow: hidden;
}
.our-blog-section .blog-single .img-box .blog-date {
  position: absolute;
  top: 4%;
  left: 4%;
  background-color: #1c1a1b;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  transition: 0.3s ease-in-out;
}
.our-blog-section .blog-single .text-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  position: relative;
  top: -30px;
  width: 90%;
  margin: auto;
  border-radius: 0;
}
.our-blog-section .blog-single .text-box .blog-sub-heading  {
  color: #fe0000;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.our-blog-section .blog-single .text-box .blog-single-heading a {
  font-size: 23px;
  color: #353542;
  font-weight: 600;
  margin-bottom: 10px;
}
.our-blog-section .blog-single .text-box .read-more {
  display: inline-block;
  margin-top: 30px;
}
.our-blog-section .blog-single:hover .blog-date {
  background-color: #fe0000;
  transition: 0.3s ease-in-out;
}
.our-blog-section .blog-single:hover .text-box {
  top: -40px;
  transition: 0.3s ease-in-out;
}

.read-more {
  color: #fe0000;
}

.vedio-section {
  background: url("../images/vedio-img.png") no-repeat;
  background-size: cover;
}
.vedio-section .text-box {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.vedio-section .vedio-sub {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}
.vedio-section .video-play-button {
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}
.vedio-section .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fe0000;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.vedio-section .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fe0000;
  border-radius: 50%;
  transition: all 200ms;
}
.vedio-section .video-play-button:hover:after {
  background-color: #cb0000;
}
.vedio-section .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}
.vedio-section .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.vedio-section .video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
}
.vedio-section .video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}
.vedio-section .video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}
.vedio-section .video-overlay-close:hover {
  color: #fa183d;
}
.vedio-section .vedio-site-btn {
  position: relative;
  text-align: center;
}

.single-contact-us {
  background: #1c1a1b;
  padding: 28px;
  height: 100%;
}
.single-contact-us .address-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.single-contact-us ul li {
  display: flex;
  margin-bottom: 25px;
}
.single-contact-us span.footer-icon i {
  text-align: center;
  border-radius: 50%;
  color: #1c1a1b;
  font-size: 28px;
  color: #ffffff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.15);
}
.single-contact-us .contact-li-detail {
  margin-left: 20px;
}
.single-contact-us .footer-icon-content {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  display: inline-block;
}
.single-contact-us p {
  font-size: 16px;
  color: #fff;
}

.single-contact-us-2 {
  background: #fe0000;
}
.single-contact-us-2 .single-contact-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #fff;
  color: #666;
  line-height: 1;
}
.single-contact-us-2 .single-contact-time:nth-child(even) {
  background: transparent;
  color: #fff;
}

.testimonal {
  background: #ffffff url("../images/testimonal.png") no-repeat;
  background-size: cover;
  color: #fff;
  padding: 120px 0;
}
.testimonal p {
  color: #fff;
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 300;
}
.testimonal h5 {
  margin-bottom: 15px;
}
.testimonal .owl-carousel .owl-item img {
  width: inherit;
}

.user-img img {
  width: 60px !important;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.bottom-testimonal {
  background-color: #fe0000;
  color: #fff;
}

.main-bottom-testimaonl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding: 25px 0;
}
.main-bottom-testimaonl h4 {
  margin-bottom: 15px;
}
.main-bottom-testimaonl p {
  color: #fff;
}
.main-bottom-testimaonl .site-btn {
  white-space: nowrap;
}

.galler-content {
  row-gap: 30px;
}

.footer-section .footer-heading {
  font-size: 20px;
  color: #fe0000;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.footer-section ul li a {
  font-weight: 600;
  padding-bottom: 10px;
  display: inline-block;
}
.footer-section ul li a:hover {
  color: #fe0000;
  letter-spacing: 1px;
}
.footer-section .footer-icon ul li a {
  color: #1c1a1b;
}
.footer-section .footer-icon ul li a:hover {
  color: #fe0000;
}
.footer-section .footer-contact-us p {
  margin-bottom: 15px;
}

.bottom-footer {
  background: #1c1a1b;
  margin-top: 40px;
  padding: 18px 0;
}
.bottom-footer p {
  color: #fff;
}
.bottom-footer a {
  color: #fe0000;
}

@media screen and (max-width: 991px) {
  .hero-section .text-box {
    width: 60%;
    padding: 80px 0;
  }
/*   .service-box .single-service .rotate-service-bg img {
    width: 100%;
  } */
  .service-box .single-service {
    margin-bottom: 25px;
	  height: inherit !important;
  }
  .section {
    padding: 55px 0;
  }
  .vedio-section .hero-section-heading {
    width: 75% !important;
  }
  .galler-content {
    row-gap: 20px;
  }
  .galler-content img {
    width: 100%;
  }
  .footer-section .quic-links,
  .footer-section .footer-logo-box {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .vedio-fram {
    height: 300px;
  }
  .main-bottom-testimaonl {
    gap: 25px;
    flex-direction: column;
    text-align: center;
  }
  .section-title-big_text {
    font-size: 40px;
  }
  .upper-header {
    padding: 15px 0;
  }
  .site-btn {
    font-size: 16px;
  }
  .upper-header .main-upper-header {
    gap: 10px;
  }
  .navbar-brand img {
    width: 60px;
  }
  .social-icon ul {
    gap: 12px;
    font-size: 20px;
  }
  .hero-section .text-box {
    width: 95%;
    padding: 50px 0;
  }
  .hero-section-heading {
    font-size: 35px;
  }
  .hero-section .text-box p {
    margin: 20px 0;
  }
  .sub-heading {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .site-heading {
    font-size: 23px;
  }
  .service-box .service-heading,
  .service-box p {
    margin-bottom: 10px;
  }
  .service-box .single-service .rotate-service-bg img {
    width: 65%;
  }
  .service-box .single-service {
    margin-bottom: 20px;
  }
  .service-box .site-btn-v-2 {
    font-size: 18px;
    padding: 15px 25px;
  }
  .section {
    padding: 35px 0;
  }
  .vedio-section .hero-section-heading {
    width: 95% !important;
  }
  .vedio-section .text-box {
    gap: 20px;
  }
  .vedio-section .vedio-sub {
    font-size: 18px;
    font-weight: 500;
  }
  .vedio-section .video-play-button span {
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
  .vedio-section .video-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vedio-section .video-play-button:after {
    width: 60px;
    height: 60px;
  }
  .vedio-section .video-play-button:before {
    width: 60px;
    height: 60px;
  }
  .single-contact-us {
    padding: 20px;
  }
  .single-contact-us .address-heading {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .single-contact-us .footer-icon-content {
    font-size: 15px;
  }
  .single-contact-us .contact-li-detail {
    margin-left: 15px;
  }
  .single-testimonal {
    flex-direction: column;
    gap: 15px !important;
  }
  .testimonal p {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .single-testimonal img {
    width: 45px !important;
  }
  .user-img img {
    width: 50px !important;
    height: 50px;
  }
  .single-contact-us span.footer-icon i {
    font-size: 20px;
  }
  .single-contact-us ul li {
    margin-bottom: 18px;
  }
  .testimonal h5 {
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .galler-content {
    row-gap: 25px;
  }
  .footer-section .footer-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .footer-section ul li a {
    padding-bottom: 8px;
  }
  .footer-section .quic-links,
  .footer-section .footer-logo-box {
    margin-bottom: 13px;
  }
  .footer-section .social-icon ul {
    justify-content: start !important;
  }
  .bottom-footer {
    margin-top: 10px;
    padding: 10px 0;
  }
  .bottom-footer p {
    font-size: 13px;
  }
  .page-header.is-sticky .navbar-brand img {
    width: 45px;
  }
  .navbar .hamburger-lines {
    top: 19px;
  }
  #button {
    width: 40px !important;
    height: 40px !important;
    bottom: 15px !important;
    right: 15px !important;
  }
  #button::after {
    font-size: 1.5rem !important;
    line-height: 43px !important;
  }
  .sub-heading::before {
    height: 6px;
    width: 6px;
    top: 8px;
  }
  @keyframes pulsex {
    100% {
      transform: translateX(25px);
    }
  }
}
.nav-link.active::after {
  content: "";
  width: 100% !important;
}

#button {
  display: inline-block;
  background-color: #fe0000;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.galler-content img:hover {
  transition: 0.3s ease-in-out;
  filter: brightness(40%);
  cursor: pointer;
}

.team-img {
  background-image: url(../images/team-banner.png);
  background-attachment: fixed;
  background-position: 35% 0%;
}
.team-img .text-box p {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.our-team-section .blog-single {
  position: relative;
  margin-bottom: 25px;
}
.our-team-section .blog-single .text-box {
  text-align: left !important;
  color: #000;
  padding: 15px;
}
.our-team-section .blog-single .social-icon ul {
  color: #000;
  justify-content: start;
}
.our-team-section .blog-single .social-icon ul i {
  font-size: 18px;
}

.single-member-p {
  overflow: hidden;
  margin-bottom: 20px;
}
.single-member-p .single-member-contentr {
  padding: 20px;
  border-bottom: 1px solid #ccc;
}
.single-member-p .img-box {
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.single-member-p .img-box:hover .footer-icon-box {
  opacity: 1;
  visibility: visible;
  top: 50%;
  transition: all 0.3s ease-in-out;
}
.single-member-p .img-box::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  z-index: 1;
  backface-visibility: hidden;
  opacity: 0;
  visibility: hidden;
}
.single-member-p .img-box:hover::after {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.single-member-p .under-line-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  color: #000;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}
.single-member-p .inner-para {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 5px;
  color: #707070;
}
.single-member-p .footer-icon-box {
  display: flex;
  position: absolute;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  top: 60%;
  transition: all 0.3s ease-in-out;
  transform: translatex(23%);
}
.single-member-p .footer-icon-box li {
  background: #fff;
  padding: 10px;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.single-member-p .footer-icon-box li:hover {
  background: #fe0000;
  color: #fff;
  transition: all 0.3s ease;
}

.team-text-box {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  background: #eaeaea;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.gallery-img {
  background-image: url(../images/galler-bg.png);
}

@media screen and (max-width: 991px) {
  .team-text-box {
    gap: 12px;
    flex-direction: column;
  }
  .team-img {
    background-position: 63% 0%;
  }
  .single-member-p .footer-icon-box {
    transform: translatex(50%);
  }
}
@media screen and (max-width: 767px) {
  .single-member-p .footer-icon-box {
    transform: translatex(50%);
  }
}
@media screen and (max-width: 576px) {
  .single-member-p .footer-icon-box {
    transform: translatex(54%);
  }
}
.service-main-single-box:nth-child(even) {
  margin-top: -40px;
}

.server-single-detail {
  background: #fff;
  padding: 30px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
.server-single-detail .text-box {
  position: relative;
  top: 10px;
  transition: all 0.3s ease;
}
.server-single-detail .text-box:hover {
  top: 0px;
  transition: all 0.3s ease;
}
.server-single-detail img {
  width: 85px;
  margin-bottom: 20px;
}
.server-single-detail h3,
.server-single-detail p {
  margin-bottom: 15px;
}

.service-bg {
  background-image: url(../images/service-bg.png);
  background-position: 0%;
}

@media screen and (max-width: 991px) {
  .service-main-single-box:nth-child(even) {
    margin-top: 0px;
  }
}
.blog-img {
  background-image: url(../images/blog-bg.png);
}

.single-blog-section .galler-content {
  row-gap: 8px;
}
.single-blog-section .thumb-single-post {
  margin-top: 40px;
}
.single-blog-section .thumb-single-post svg {
  width: 1rem;
  margin-right: 6px;
}
.single-blog-section .thumb-single-post li {
  color: #6c6c6c;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.single-blog-section .thumb-single-post li:last-child {
  border-bottom: 0;
}
.single-blog-section .left-icon-box {
  display: flex;
  gap: 15px;
}
.single-blog-section .left-icon-box li {
  width: 35px;
  height: 35px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  transition: all 0.3s ease;
}
.single-blog-section .left-icon-box li:hover {
  background: red;
  color: #fff;
  transition: all 0.3s ease;
}
.single-blog-section .left-icons-content {
  border-bottom: 1px solid #ccc;
}
.single-blog-section .my-form-control {
  padding-left: 40px;
}
.single-blog-section .right-single-post {
  margin-bottom: 30px;
}
.single-blog-section .right-single-post .right-single-post-title {
  margin-bottom: 20px;
}
.single-blog-section .right-single-post li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  align-items: start;
  margin-bottom: 5px;
  padding: 10px;
}
.single-blog-section .right-single-post li img {
  width: 120px;
}
.single-blog-section .right-single-post li .single-blog-date {
  font-size: 14px;
  margin-bottom: 5px;
}
.single-blog-section .right-single-post li:hover {
  background: white;
  cursor: pointer;
}
.single-blog-section .blog-right-logo-bg {
  background-image: url(../images/single-blog-bg.jpg);
  padding: 20px;
  padding-bottom: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 51%;
  text-align: center;
  border: 1px solid #d3d3d3;
}
.single-blog-section img {
  margin-bottom: 15px;
}

.input-filed-box .form-icon {
  position: absolute;
  transform: translate(-50%, -42%);
  right: 89%;
  bottom: -7px;
  color: #1d1d1d;
  font-size: 18px;
}

.input-filed-box {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .input-filed-box .form-icon {
    right: 94%;
  }
  .single-blog-section .right-single-post li {
    justify-content: start;
  }
  .single-blog-section .blog-right-logo-bg {
    display: none;
  }
  .single-blog-section img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .input-filed-box .form-icon {
    right: 90%;
  }
  .single-blog-section .my-form-control {
    padding-left: 45px;
  }
}
.form-control {
  padding: 11px;
}

.form-control::-moz-placeholder {
  font-size: 15px;
}

.form-control::placeholder {
  font-size: 15px;
}

.left-contact-us {
  width: 90%;
  margin: auto;
}
.left-contact-us .form-control {
  margin-bottom: 30px;
  padding: 15px;
}
.left-contact-us .form-control h3 {
  font-weight: 700;
}

.contact-img {
  background-image: url(../images/contact-us.png);
}

.breadcrumb-item.active {
  color: #959595;
}

.contact-us-section {
  background: #f7f3eb;
}

.contact-location-box .location-box {
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.contact-location-box .location-box img {
  width: 50px;
  margin-bottom: 20px;
}
.contact-location-box .location-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-location-box .location-box p {
  color: #797979;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .left-contact-us {
    width: 100%;
  }
  .contact-location-box .location-box {
    height: 100%;
  }
  .contact-location-box {
    margin: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-location-box .location-box {
    height: inherit;
  }
}
.about-us-img {
  background-image: url(../images/about-us.png);
}

.about-us-section {
  background-image: url(../images/about-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65%;
}
.about-us-section .img-box {
  background-image: url(../images/about-pic.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.about-us-section .contact-time-content {
  padding: 60px;
}
.about-us-section .single-contact-us-2,
.about-us-section .single-contact-time {
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.about-us-section .single-contact-time {
  border-bottom: 1px dashed #ddd;
}
.about-us-section .about-sub {
  color: #fe0000;
  margin-bottom: 10px;
}
.about-us-section .text-box p {
  margin-bottom: 20px;
}

.about-us-section-2 {
  background: transparent;
}

@media screen and (max-width: 991px) {
  .about-us-section .img-box {
    margin-top: 25px;
  }
  .about-us-section .contact-time-content {
    padding: 20px;
  }
}/*# sourceMappingURL=style.css.map */