:root {
  --bs-primary-rgb: 240, 115, 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #ff7a00;
  --bs-btn-border-color: #ff7a00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f27909;
  --bs-btn-hover-border-color: #f27909;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #f27909;
  --bs-btn-active-border-color: #f27909;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ff7a00;
  --bs-btn-disabled-border-color: #ff7a00;
}

.fw-exbold {
  font-weight: 800;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #4b4b4b;
}

.h0 {
  font-size: 104px;
}

h2,
.h2 {
  font-size: 74px;
}

h4,
.h4 {
  font-size: 40px;
}

h5,
.h5 {
  font-size: 32px;
}

h6,
.h6 {
  font-size: 28px;
}

small {
  font-size: 18px;
}

.hr-s-1 {
  border-color: #e4e3e1;
  opacity: 1;
}

.btn-primary span {
  background-color: #f69e4c;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  margin-left: 10px;
}

.btn-link span {
  background-color: #f69e4c;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 10px;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
section.testimonial-section-page {
  padding-top: 160px;
  padding-bottom: 60px;
  overflow: hidden;
}

.service-page-section {
  padding-top: 160px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff7a00;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff7a00;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #fff;
  cursor: pointer;
}

.back-to-top:hover {
  background: #ff7a00;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* ================ Header ================ */

.hidden {
  transform: translateY(-100%);
}

header {
  height: 160px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
}

header .header-bottom-bar {
  margin-top: 16px;
}

header .logo img {
  height: 80px;
  width: auto;
}

header .header-social-links ul {
  display: flex;
  list-style: none;
}

header .header-social-links ul li {
  margin: 0px 5px;
}

header .header-social-links ul li a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 50%;
  font-size: 18px;
}

header .header-social-links ul li.facebook-icon a {
  color: #3b5998;
  border-color: #3b5998;
}

header .header-social-links ul li.whatsapp-icon a {
  color: #25d366;
  border-color: #25d366;
}

header .header-social-links ul li.twitter-icon a {
  color: #00acee;
  border-color: #00acee;
}

header .header-social-links ul li.pinterest-icon a {
  color: #c8232c;
  border-color: #c8232c;
}

header .header-social-links ul li.instagram-icon a {
  color: #e95950;
  border-color: #e95950;
}

header .header-top-bar .header-btn .btn {
  background-color: #02b0f2;
  color: #fff;
}

header .header-top-bar .header-btn .btn span {
  background-color: #95d8f1;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.header-menu > ul > li {
  position: relative;
}

.header-menu > ul > li > a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
}

.header-menu a:hover:before,
.header-menu li:hover > a:before,
.header-menu ul .current-menu-item a:before {
  visibility: visible;
  width: 100%;
}

header .header-menu li {
  margin: 0px 10px;
}

header .header-menu li:last-child {
  margin: 0px 0px 0px 10px;
}

header .header-menu li {
  font-weight: 600;
  display: inline-block;
}

header .header-menu a:hover,
header .header-menu .current-menu-item a {
  color: #ff7a00;
}

.sticky-header {
  background-color: #fff;
}

header.sticky-header {
  padding: 0;
  height: 137px;
}

header .header-menu .menu-item-has-children ul {
  display: none;
  list-style: none;
  background-color: #fff;
  border: none;
  box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.5);
  border-radius: 5px;
  text-align: start;
  position: absolute;
  top: 40px;
  left: -50px;
  padding: 20px 10px;
  transition: 0.5s;
  max-height: 400px;
  overflow-y: scroll;
}

header .menu-item-has-children .dropdown-toggle::after {
  display: none;
}

header .menu-item-has-children .dropdown-toggle .menu-dropdown-icon {
  display: inline-flex !important;
}

.mobile-menu .menu-item {
  display: flex;
}

.mobile-menu .menu-item .dropdown-icon-test {
  display: inline-flex;
}

header .header-menu .menu-item-has-children ul li {
  margin-bottom: 5px;
}

header .header-menu .menu-item-has-children ul li a {
  font-weight: 400;
  color: #4b4b4b;
}

header .header-menu .menu-item-has-children ul li a:hover,
header .header-menu .menu-item-has-children ul li a:active {
  color: #ff7a00;
  background-color: transparent;
}

/* Canvas Menu */
header .offcanvas li.menu-item-has-children {
  display: block;
  width: 100%;
}

header .offcanvas li.menu-item-has-children .dropdown-icon {
  padding: 10px;
  transform: rotate(-90deg);
  transition: 0.3s;
}

header
  .offcanvas
  li.menu-item-has-children
  .dropdown-icon.dropdowm-icon-active {
  transform: rotate(0deg);
}

header .offcanvas li ul {
  flex: 0 0 100%;
  display: none;
  list-style: none;
  margin-bottom: 10px;
}

/*  ==================   new added ================== */
.navbar-nav .menu-dropdown-icon {
  width: 40px;
  display: inline-flex;
  justify-content: center;
}

.offcanvas .offcanvas-header {
  justify-content: end;
}

.header-top .header-menu .menu {
  margin-left: auto;
}

video {
  width: 100%;
}

@media (min-width: 1200px) {
  .header-top
    .header-menu
    .navbar-nav
    .menu-item-has-children:hover
    .dropdown-menu {
    display: block;
  }
}

.offcanvas .offcanvas-body .mobile-menu li a {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1199.98px) {
  .navbar-nav .menu-item-has-children .dropdown-active {
    display: block;
    position: absolute;
    top: 40px;
    left: -50px;
  }
}

@media (max-width: 767.98px) {
  .navbar-nav .menu-item-has-children .dropdown-active {
    display: block;
    position: relative;
    top: 0;
    left: 0;
  }
}

/* End New Added */

/* End Header */

/* Top Slider */
.top-slider {
  background-image: url("../img/top-slider-bg.jpg");
  background-size: 100%;
  padding: 160px 0px 70px 0px;
}

.top-slider .slide-row {
  padding-top: 150px;
  padding-bottom: 150px;
}

.top-slider .slide-image-col {
  position: relative;
}

.top-slider .slide-image-col img {
  position: absolute;
  max-width: 140%;
  vertical-align: middle;
  right: 12px;
  bottom: -100px;
}

.top-slider .top-slide-content h6 {
  position: relative;
  display: inline-block;
}

.top-slider .top-slide-content h6::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: -110px;
  top: 60%;
  transform: translateY(-50%);
}

.top-slider .splide__arrows {
  position: absolute;
  left: 0;
  bottom: 40px;
}

.top-slider .splide__arrows .splide__arrow {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  opacity: 1;
}

.top-slider .splide__arrows .splide__arrow:hover {
  background-color: #ff7a00;
}

.top-slider .splide__arrows .splide__arrow svg {
  fill: #fff;
}

.top-slider .splide__arrows .splide__arrow--prev {
  left: 0;
}

.top-slider .splide__arrows .splide__arrow--next {
  right: unset;
  left: 100px;
}

/* End Top Slider */

/* About Section */
.about-section {
  padding-top: 120px;
}

.about-section .dot-shap-1 {
  position: absolute;
  width: 150px;
  left: -30px;
  top: -50px;
  z-index: -1;
}

.about-section .dot-shap-2 {
  position: absolute;
  width: 150px;
  right: -75px;
  bottom: 35%;
  z-index: -1;
}

.about-section .about-play-btn {
  position: absolute;
  bottom: -30px;
  left: -30px;
  border-radius: 5px;
  background: rgb(50, 17, 121);
  background: linear-gradient(
    315deg,
    rgba(50, 17, 121, 1) 0%,
    rgba(3, 171, 238, 1) 100%
  );
  width: 220px;
  aspect-ratio: 1;
  padding: 30px;
}

.about-section .about-play-btn a {
  text-decoration: none;
}

.about-section .about-play-btn a svg {
  font-size: 60px;
}

.about-section .category-slider-row {
  padding-top: 60px;
  padding-bottom: 60px;
}

.category-slider-row .category-box {
  aspect-ratio: 1;
  padding: 30px;
  border-radius: 5px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0px 12px;
  transition: all 0.5s;
}

.category-slider-row .category-box:hover {
  background: rgb(50, 17, 121);
  background: linear-gradient(
    315deg,
    rgba(50, 17, 121, 1) 0%,
    rgba(3, 171, 238, 1) 100%
  );
  color: #fff;
}

.category-slider-row .category-box:hover p a {
  color: #fff;
}

.category-slider-row .category-box img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  filter: contrast(0.1);
}

.category-slider-row .category-box:hover img {
  filter: brightness(0) invert(1);
}

.category-slider-row .category-box p a {
  text-decoration: none;
  color: #7a7571;
  font-size: 12px;
  font-weight: 600;
}

.category-slider-row .splide__pagination {
  bottom: -40px;
}

.splide__pagination .splide__pagination__page {
  width: 16px;
  height: 16px;
  opacity: 1;
  background-color: transparent;
}

.splide__pagination .splide__pagination__page::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f192";
  font-size: 16px;
  color: #bfbfbf;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.splide__pagination .splide__pagination__page.is-active {
  transform: scale(1);
}

.splide__pagination .splide__pagination__page.is-active::after {
  color: #ff7a00;
}

/* End About section */

/* Services Section */
.services-section {
  background-image: url("../img/services-bg.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: #181a2a;
}

.service-box {
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.service-box .service-box-body {
  flex-grow: 1;
}

.recent-projects-section .tab-content .splide__track {
  overflow: visible;
}

.recent-projects-section .tab-content .project-image {
  margin: 0px 12px;
}

.recent-projects-section .nav-tabs .nav-item .nav-link {
  font-weight: 600;
  color: #3d3d3d;
  background-color: #f0f0f0;
  border-radius: 0;
  border-color: #dddddd;
  /* margin-bottom: -2px; */
}

.recent-projects-section .nav-tabs .nav-item:first-child .nav-link {
  border-top-left-radius: 5px;
}

.recent-projects-section .nav-tabs .nav-item:last-child .nav-link {
  border-top-right-radius: 5px;
}

.recent-projects-section .nav-tabs .nav-item .nav-link.active {
  color: #ff7a00;
  background-color: #fff;
  border-color: #dddddd #dddddd transparent #dddddd;
}

/* End Services Section */

/* Recent Project Section */
.recent-projects-section .project-slider-row {
  padding-bottom: 80px;
}

.recent-projects-section .project-slider-row .splide__arrows {
  position: absolute;
  bottom: -50px;
  width: 100%;
}

.recent-projects-section
  .project-slider-row
  .splide__arrow.splide__arrow--prev {
  left: calc(50% - 70px);
}

.recent-projects-section
  .project-slider-row
  .splide__arrow.splide__arrow--next {
  right: calc(50% - 70px);
}

.recent-projects-section .project-slider-row .splide__arrows .splide__arrow {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  opacity: 1;
}

.recent-projects-section
  .project-slider-row
  .splide__arrows
  .splide__arrow
  svg {
  fill: #fff;
}

.recent-projects-section
  .project-slider-row
  .splide__arrows
  .splide__arrow:hover {
  background-color: #ff7a00;
}

/* End Recebt Project Section */

/* Testimonial Section */

.testimonial-section .testimonial-bg {
  background-image: url("../img/testimonial-bg.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonial-section .testimonial-slider-col {
  max-width: 660px;
  padding-bottom: 70px;
}

.testimonial-section .testimonial-slider-col .testimonial-box {
  position: relative;
  padding-left: 60px;
  padding-top: 30px;
}

.testimonial-section .testimonial-slider-col .testimonial-box::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f10d";
  position: absolute;
  top: 0;
  left: 0;
  color: #ff7a00;
  font-size: 48px;
}

.testimonial-section
  .testimonial-slider-col
  .testimonial-box
  .testimonial-user-image
  img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  padding: 8px;
}

.testimonial-section .testimonial-slider-col .splide__pagination {
  bottom: -70px;
  justify-content: flex-start;
  left: 36px;
}

/* End Testimonial section */

/* Footer */
footer .footer-top {
  background-image: url("../img/footer-bg-image.png");
  background-position: bottom center;
  background-color: #232323;
  padding: 60px 0px;
  margin-bottom: -2px;
}

footer .footer-top .footer-links li::marker {
  color: #fff;
  opacity: 1;
}

footer .footer-top .footer-links li {
  margin-bottom: 15px;
}

footer .footer-top .footer-links li a {
  color: #fff;
  text-decoration: none;
}

footer .footer-top .footer-contact-box {
  display: flex;
}

footer .footer-top .footer-contact-box .footer-contact-icon svg {
  width: 40px;
  color: #ff7a00;
  font-size: 24px;
}

footer .footer-top .footer-contact-box p {
  color: #fff;
}

footer .footer-top .footer-contact-box p small {
  font-size: 18px;
}

footer .footer-social-links ul {
  list-style: none;
}

footer .footer-social-links ul li {
  margin-bottom: 15px;
}

footer .footer-social-links ul li a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: 50%;
  font-size: 18px;
}

footer .footer-social-links ul li.facebook-icon a {
  color: #3b5998;
  border-color: #3b5998;
}

footer .footer-social-links ul li.twitter-icon a {
  color: #00acee;
  border-color: #00acee;
}

footer .footer-social-links ul li.pinterest-icon a {
  color: #c8232c;
  border-color: #c8232c;
}

footer .footer-social-links ul li.instagram-icon a {
  color: #e95950;
  border-color: #e95950;
}

footer .footer-social-links ul li.whatsapp-icon a {
  color: #25d366;
  border-color: #25d366;
}

.footer-bottom {
  background-color: #181818;
}

.footer-bottom p {
  font-size: 16px;
}

.canvas-menu .nav-link:hover,
.canvas-menu .nav-link.active {
  color: #ff7a00;
}

.canvas-menu .nav-item .nav-link {
  position: relative;
  display: inline-block;
}

.canvas-menu .navbar-nav > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #ff7a00;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.canvas-menu .navbar-nav > li > a:hover:before,
.canvas-menu .navbar-nav > li:hover > a:before,
.canvas-menu .navbar-nav > li > a.active:before {
  visibility: visible;
  width: 100%;
}

header .canvas-menu .header-social-links ul {
  justify-content: center;
}

.canvas-menu .header-btn .btn {
  background-color: #02b0f2;
  color: #fff;
}

.canvas-menu .header-btn .btn span {
  background-color: #95d8f1;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

/* End Footer */

/* Laptop Rental Services */

.laptop-rental-services {
  padding: 200px 0 50px 0;
}

.laptop-rental-services .why-choose {
  margin-top: 80px;
}

.laptop-rental-services .accordion .accordion-button:not(.collapsed) {
  background-color: #ff7a00;
  color: #fff;
}

.laptop-rental-services .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23ff7a00' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(0.7) !important;
}

.laptop-rental-services .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.accordion-button {
  font-size: 28px;
  color: #ff7a00;
}

.laptop-rental-services .accordion-button:focus {
  box-shadow: none;
}

.laptop-rental-services .laptop-service {
  margin-top: 80px;
}

.laptop-rental-services .laptop-service-box {
  border: 1px solid #ff7a00;
  border-radius: 5px;
}

.laptop-rental-services .laptop-service-box .laptop-service-box-image img {
  max-height: 100px;
}

.laptop-rental-services .laptop-service-box .laptop-service-box-title {
  background-color: #ff7a00;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.laptop-rental-services .laptop-service-box .laptop-service-box-body ul {
  list-style: none;
  padding: 20px;
}

.laptop-rental-services .laptop-service-box .laptop-service-box-body ul li {
  margin-bottom: 20px;
}

.laptop-rental-services
  .laptop-service-box
  .laptop-service-box-body
  ul
  li
  span {
  width: 40%;
}

.laptop-rental-services .laptop-service-box .laptop-service-box-body ul li p {
  text-align: start;
  padding-left: 10px;
  margin-bottom: 0;
}

.laptop-rental-services .laptop-on-rent {
  margin-top: 80px;
}

.laptop-rental-services .laptop-on-rent .laptop-on-rent-box {
  background-color: #fce9d7;
  border-radius: 10px;
  overflow: hidden;
}

.laptop-rental-services
  .laptop-on-rent
  .laptop-on-rent-box
  .laptop-on-rent-box-image {
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.3);
}

.laptop-rental-services
  .laptop-on-rent
  .laptop-on-rent-box
  .laptop-on-rent-box-image
  img {
  width: 60%;
}

.laptop-rental-services
  .laptop-on-rent
  .laptop-on-rent-box
  .laptop-on-rent-box-title {
  color: #ff7a00;
  text-align: center;
  font-weight: 700;
}

.laptop-rental-services
  .laptop-on-rent
  .laptop-on-rent-box
  .laptop-on-rent-box-footer {
  text-align: center;
  align-items: center;
}

.laptop-rental-services .srevices-location {
  margin-top: 80px;
}

.laptop-rental-services .srevices-location .location-heading {
  border-bottom: 5px solid #ff7a00;
}

.laptop-rental-services .srevices-location .location-heading h5 {
  margin-bottom: 15px;
}

.laptop-rental-services .srevices-location .location-body ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.laptop-rental-services .srevices-location .location-body ul li {
  width: 33.3333%;
}

.laptop-rental-services .srevices-location .location-body ul li span {
  color: #ff7a00;
  margin-right: 10px;
}

/* End Laptop Rental Services */

/* Page Not Found ( 404 page ) */

.page-not-found {
  padding-top: 100px;
  width: 100%;
  height: 50%;
}

/* End Page Not Found ( 404 page ) */

/* About Page */

.page-banner {
  padding: 160px 0 50px 0;
  background-color: rgb(255, 122, 0);
}

.page-banner .top-banner {
  color: #fff;
  text-align: center;
  padding: 50px 0 0 0;
}

.page-banner .top-banner h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.page-banner .top-banner h1::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 5px;
  background-color: rgb(253, 218, 173);
  bottom: -10px;
  left: 35%;
  z-index: 1;
}

.page-banner .top-banner h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 200, 129);
  bottom: -8px;
  left: 0;
}

.content-section {
  background-image: url(../img/services-bg.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: #181a2a;
}

.content-section .top-banner-img image {
  object-fit: cover;
}

.content-section .top-banner-content {
  padding: 20px;
  color: #fff;
  border-radius: 5px;
  text-align: left;
}

.our-section .our-section-img {
  border-radius: 5px;
  overflow: hidden;
}

/* End About Page */

/* Contact Us Page */
.content-section .top-banner-content .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgb(255, 200, 129);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 200, 129);
}

.content-section .top-banner-content .wpcf7-spinner {
  position: absolute;
}

/* End Contact Us Page */
/* Responsive Media */
@media (max-width: 1399.98px) {
  body {
    font-size: 20px;
  }

  .h0 {
    font-size: 80px;
  }

  h2,
  .h2 {
    font-size: 64px;
  }

  h4,
  .h4 {
    font-size: 35px;
  }

  h5,
  .h5 {
    font-size: 27px;
  }

  h6,
  .h6 {
    font-size: 23px;
  }

  small {
    font-size: 18px;
  }

  header {
    height: 140px;
  }

  header.sticky-header {
    height: 116px;
  }

  header .header-menu .nav-item {
    margin: 0px 2px;
  }

  header .header-menu .nav-item:last-child {
    margin: 0px 0px 0px 2px;
  }

  header .header-bottom-bar {
    margin-top: 6px;
  }

  .top-slider {
    background-size: cover;
  }

  .top-slider .slide-row {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .top-slider .splide__arrows {
    bottom: 50px;
  }

  .top-slider .splide__arrows .splide__arrow {
    width: 50px;
    height: 50px;
  }

  .top-slider .splide__arrows .splide__arrow--next {
    left: 80px;
  }

  .about-section .about-play-btn a svg {
    font-size: 40px;
  }

  .about-section .about-play-btn {
    width: 190px;
    padding: 10px;
  }

  .testimonial-section .testimonial-slider-col {
    max-width: 570px;
  }

  .recent-projects-section .project-slider-row .splide__arrows .splide__arrow {
    width: 50px;
    height: 50px;
  }

  .page-banner {
    padding: 140px 0 50px 0;
  }
}

@media (max-width: 1199.98px) {
  body {
    font-size: 18px;
  }

  .h0 {
    font-size: 70px;
  }

  h2,
  .h2 {
    font-size: 54px;
  }

  h4,
  .h4 {
    font-size: 30px;
  }

  h5,
  .h5 {
    font-size: 22px;
  }

  h6,
  .h6 {
    font-size: 20px;
  }

  small {
    font-size: 16px;
  }

  .top-slider .splide__arrows {
    bottom: 30px;
  }

  .about-section .about-play-btn {
    bottom: -10px;
    left: -10px;
  }

  .category-slider-row .category-box img {
    height: 45px;
  }

  .testimonial-section .testimonial-slider-col {
    max-width: 480px;
  }

  .testimonial-section .testimonial-slider-col .testimonial-box {
    padding-left: 50px;
  }

  .testimonial-section .testimonial-slider-col .testimonial-box::after {
    font-size: 40px;
  }

  .testimonial-section
    .testimonial-slider-col
    .testimonial-box
    .testimonial-user-image
    img {
    max-width: 80px;
    max-height: 80px;
  }

  .accordion-button {
    font-size: 26px;
  }

  .page-banner {
    padding: 140px 0 50px 0;
  }

  .navbar-nav .menu-dropdown-icon {
    width: 24px;
  }

  .header-menu > ul > li > a {
    font-size: 14px;
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
}

@media (max-width: 991.98px) {
  body {
    font-size: 18px;
  }

  .h0 {
    font-size: 55px;
  }

  h2,
  .h2 {
    font-size: 54px;
  }

  h4,
  .h4 {
    font-size: 30px;
  }

  h5,
  .h5 {
    font-size: 22px;
  }

  h6,
  .h6 {
    font-size: 20px;
  }

  small {
    font-size: 16px;
  }

  header {
    height: 160px;
  }

  header.sticky-header {
    height: 133px;
  }

  header .logo img {
    height: 60px;
  }

  .header-menu .navbar-nav {
    margin: 0px auto 10px auto;
  }

  header .header-menu .nav-item {
    margin: 0px 3px;
  }

  header .header-menu .nav-item:last-child {
    margin: 0px 0px 0px 3px;
  }

  .top-slider .slide-row {
    padding-top: 30px;
    padding-bottom: 100px;
  }

  .top-slider .slide-image-col img {
    max-width: 160%;
    z-index: -1;
  }

  .testimonial-section .container-fluid {
    max-width: 720px;
  }

  .testimonial-section .testimonial-slider-col {
    max-width: 100%;
  }

  .footer-section .footer-top .footer-logo {
    max-width: 100px;
  }

  footer .footer-top .footer-contact-box .footer-contact-icon svg {
    width: 30px;
    font-size: 20px;
  }

  .accordion-button {
    font-size: 24px;
  }

  .page-banner {
    padding: 160px 0 50px 0;
  }

  .navbar-nav .menu-dropdown-icon {
    width: 20px;
  }

  .header-menu > ul > li > a {
    font-size: 12px;
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .h0 {
    font-size: 50px;
  }

  h2,
  .h2 {
    font-size: 45px;
  }

  h4,
  .h4 {
    font-size: 25px;
  }

  header {
    height: 100px;
  }

  header.sticky-header {
    height: 76px;
  }

  .top-slider {
    padding: 120px 0px 70px 0px;
  }

  .top-slider .slide-image-col img {
    max-width: 100%;
    position: relative;
    right: unset;
    bottom: unset;
  }

  .top-slider .slide-row {
    padding-top: 0px;
    padding-bottom: 100px;
  }

  footer .footer-social-links ul {
    display: flex;
  }

  footer .footer-social-links ul li {
    margin: 0px 5px;
  }

  .page-banner {
    padding: 100px 0 50px 0;
  }
}

@media (max-width: 767.98px) {
  .h0 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  h6,
  .h6 {
    font-size: 20px;
  }

  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-section .about-play-btn {
    bottom: -5px;
    left: 5px;
  }

  .about-section .category-slider-row {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .testimonial-section .testimonial-slider-col .testimonial-box {
    padding-top: 40px;
    padding-left: 0px;
  }

  .testimonial-section .testimonial-slider-col .testimonial-box::after {
    font-size: 30px;
  }

  .testimonial-section .testimonial-slider-col .splide__pagination {
    left: -12px;
  }

  .accordion-button {
    font-size: 22px;
  }
  section.testimonial-section-page {
    padding-top: 90px;
    padding-bottom: 60px;
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  .h0 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  h6,
  .h6 {
    font-size: 20px;
  }

  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-section .about-play-btn {
    bottom: -5px;
    left: 5px;
  }

  .about-section .category-slider-row {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .testimonial-section .testimonial-slider-col .testimonial-box {
    padding-top: 40px;
    padding-left: 0px;
  }

  .testimonial-section .testimonial-slider-col .testimonial-box::after {
    font-size: 30px;
  }

  .testimonial-section .testimonial-slider-col .splide__pagination {
    left: -12px;
  }

  .laptop-rental-services {
    padding: 120px 0 50px 0;
  }

  .accordion-button {
    font-size: 20px;
  }

  .laptop-rental-services .srevices-location .location-body ul li {
    width: 50%;
  }

  .page-banner {
    padding: 100px 0 50px 0;
  }
}

/* End Responsive Media */

/* Page Header */
.page-header {
  background-color: antiquewhite;
}

/* services  */
.ser-section {
  padding-top: 160px;
  padding-bottom: 160px;
}

.serv-card-box {
  border: 1px solid gray;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.serv-card-box .sub-heading {
  background-color: antiquewhite;
  color: #000;
  width: 100%;
}

.serv-card-box ul {
  list-style: none;
  text-align: start;
}

.serv-card-box ul li {
  line-height: 3rem;
}

.serv-card-box ul li a {
  text-decoration: none;
  color: #000;
}

.serv-card-box ul li a:hover {
  color: #ff7a00;
}

.ser-section .img-ctr a {
  text-decoration: none;
  color: #4b4b4b;
}

.ser-section .img-ctr a img {
  height: 300px;
}
