@font-face {
  font-family: "Montserrat-light";
  src: url(../fonts/ArbFONTS-Montserrat-Arabic-Light.ttf);
}
@font-face {
  font-family: "Montserrat-regular";
  src: url(../fonts/Montserrat-Arabic-Regular.ttf);
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url(../fonts/ArbFONTS-Montserrat-Arabic-Medium.ttf);
}
@font-face {
  font-family: "Montserrat-semibold";
  src: url(../fonts/ArbFONTS-Montserrat-Arabic-SemiBold.ttf);
}
@font-face {
  font-family: "Montserrat-bold";
  src: url(../fonts/ArbFONTS-Montserrat-Arabic-Bold.ttf);
}
.font-light {
  font-family: "Montserrat-light" !important;
}

.medium {
  font-family: "Montserrat-Medium";
}

.regular {
  font-family: "Montserrat-regular";
}

.semibold {
  font-family: "Montserrat-semibold";
}

.bold {
  font-family: "Montserrat-bold";
}

*,
* button:focus {
  outline: 0;
}

:root {
  --primary: #23036a;
  --primary-light: #3c1f7a;
  --primary-dark: #2e1071;
  --secondary: #01babb;
  --yellow: #f9e3b3;
  --yellow-1: #f4911d;
  --grey: #666666;
  --grey-1: #b1afaf;
  --grey-light: #f5f5f5;
  --dark: #041b34;
  --grey-text: #666a72;
  --lightbrown: #f9f1e4;
  --radius-5: 5px;
  --radius-8: 8px;
  --radius-20: 20px;
  --radius: 30px;
}

.btn-yellow {
  background-color: var(--yellow) !important;
}
.btn-yellow:hover {
  background-color: var(--yellow-1) !important;
}

.btn-secondary {
  background-color: var(--secondary) !important;
  border: 0px;
}
.btn-secondary:hover {
  background-color: var(--primary-dark) !important;
}

.underline-text {
  text-decoration: underline;
}

.underline {
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 10px;
}

.grey-text {
  color: var(--grey) !important;
}

.grey1-text {
  color: var(--grey-1) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Montserrat-light";
  text-decoration: none;
  font-size: 0.9rem;
  overflow-x: hidden;
  position: relative;
  overflow-x: hidden;
  background-color: #ffffff;
  direction: rtl;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

p {
  font-size: 14px !important;
}

.border-left {
  border-left: 1px solid rgba(255, 255, 255, 0.5294117647);
}

.fs-1 {
  font-size: 3rem !important;
}

.fs-4 {
  font-size: 21px !important;
}

.fs-5 {
  font-size: 1.1rem !important;
}

.size-6 {
  font-size: 15px !important;
}

.size-8 {
  font-size: 13px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
}

.fs-7 {
  font-size: 14px;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: inherit;
}

hr {
  border: 1px solid #b3b4b7 !important;
}

.btn {
  overflow: hidden;
}

.hvr-shutter-out-horizontal:before {
  background: rgb(118, 18, 250);
  background: linear-gradient(90deg, rgb(118, 18, 250) 0%, rgb(250, 18, 227) 100%);
}

.btn-primary {
  background-color: var(--primary) !important;
  border: 0px;
}
.btn-primary:hover {
  background-color: var(--primary-light) !important;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
.slideInUp {
  animation: slideInUp 2s ease-in-out forwards;
}

.justify-content-space-between {
  justify-content: space-around;
}

.pt-128 {
  padding-top: 150px !important;
}

.p-7 {
  padding: 5rem 5rem 0 5rem !important;
}

.hvr-shutter-out-vertical:before {
  background: var(--subColor);
  color: #fff !important;
}

.outline.hvr-shutter-out-vertical {
  border: 1px solid white;
  background-color: transparent;
  overflow: hidden;
}
.outline.hvr-shutter-out-vertical:before {
  background-color: var(--mainColor);
}

.outline-purple.hvr-shutter-out-vertical {
  border: 1px solid var(--mainColor) !important;
  background-color: transparent;
  overflow: hidden;
}
.outline-purple.hvr-shutter-out-vertical:hover {
  color: white !important;
}
.outline-purple.hvr-shutter-out-vertical:before {
  background-color: var(--mainColor);
}

.no-border {
  border: 0px !important;
}

.no-bg {
  background-color: transparent !important;
}

.primary-bg {
  background-color: var(--primary) !important;
}

.yellow-text {
  color: var(--yellow) !important;
}

.yellow-bg {
  background-color: var(--yellow) !important;
}

.primary-dark-bg {
  background-color: var(--primary-dark) !important;
}

.grey-light-bg {
  background-color: var(--grey-light) !important;
}

.rotate {
  transform: rotate(45deg);
}

article {
  line-height: 1.7rem;
}

.rounded {
  border-radius: var(--radius) !important;
}

.full-radius {
  border-radius: 100% !important;
}

.no-radius {
  border-radius: 0px !important;
}

.w-50 {
  width: 50px !important;
  min-width: 50px;
}

.h-50 {
  height: 50px !important;
  line-height: 50px;
}

.z-index {
  z-index: 1;
}

.z-index10 {
  z-index: 10;
}

.light-height-1 {
  line-height: 30px;
}

.relative {
  position: relative;
}

i {
  font-size: 16px;
}

.min-width-230 {
  min-width: 230px;
}

.primary-color {
  color: var(--primary) !important;
}

.secondary-color {
  color: var(--secondary) !important;
}

.dark-color {
  color: var(--dark) !important;
}

.subColor {
  color: var(--subColor);
}

.background-primary {
  background-color: var(--primary);
}
.background-primary:hover {
  background-color: var(--primary);
}

.btn {
  text-align: center;
  padding: 10px 15px;
  font-size: 14px;
}

.btn-subColor.hvr-txt-trans {
  background-color: var(--subColor);
}
.btn-subColor.hvr-txt-trans:hover {
  background-color: var(--subColor);
}
.btn-subColor.hvr-txt-trans .txt::after {
  padding-right: 25px;
}

.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.2s, transform 0.2s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.hvr-txt-trans:hover {
  color: #fff;
}
.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}
.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.radius {
  border-radius: var(--radius);
}

.radius-8 {
  border-radius: var(--radius-8);
}

.radius-20 {
  border-radius: var(--radius-20);
}

.radius-5 {
  border-radius: var(--radius-5);
}

a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 60px 0;
}

.pt-60 {
  padding-top: 60px;
}

.mt-7 {
  margin-top: 6rem !important;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/*---------------header-----------------------*/
.hero-section {
  background-image: url("../images/hero.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  min-height: 100vh;
  position: relative;
  width: 100%;
}

header {
  transition: all 0.3s ease;
  /* Smooth transition when adding/removing the class */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
  /* Optional shadow */
}
header .top-header {
  border-radius: 0px 0px 50px 50px !important;
}
header .top-header .nav-link {
  color: white !important;
}
header .navbar-nav .nav-item {
  margin: 0 5px;
}
header .navbar-nav .nav-item .nav-link {
  position: relative;
  border-radius: var(--radius);
}
header .navbar-nav .nav-item .nav-link:hover {
  transition: all 0.6s ease;
  color: var(--primary) !important;
  background-color: white;
}
header .navbar-nav .nav-item .nav-link.active {
  transition: all 0.6s ease;
  color: var(--primary) !important;
  background-color: white;
}
header .search-btn {
  width: 47px;
  height: 47px;
  border-radius: 100%;
}

header.nav-scroll {
  transition: all 0.3s ease;
  background-color: var(--primary);
  /* Smooth transition when adding/removing the class */
}

.nav-link {
  padding: 7px 15px !important;
}

.header.transparent-header {
  background-color: transparent;
  box-shadow: none;
}
.header.transparent-header .navbar-nav .nav-link {
  color: white !important;
}

.header.transparent-header.nav-scroll {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: none;
}
.header.transparent-header.nav-scroll .navbar-nav .nav-link {
  color: white !important;
}

/*---------------footer--------------------------*/
.border-top-footer {
  border-top: 1px solid var(--primary-light);
}

.border-top-footer.border-grey {
  border-top: 1px solid #dadde1;
}

.border-left-primary {
  border-left: 1px solid var(--primary-light);
}

.border-left-grey {
  border-left: 1px solid #dadde1;
}

.footer {
  border-radius: 30px 30px 0 0;
}
.footer .border-left-footer {
  border-left: 1px solid var(--primary-light);
}
.footer .email {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--primary-light);
  height: 55px;
}
.footer .email .form-control,
.footer .email button {
  background-color: var(--primary-dark);
  border: 0px;
  color: #fff;
}
.footer .email .form-control {
  border-left: 1px solid var(--primary-light);
}
.footer .email .form-control::-moz-placeholder {
  color: #fff;
  font-size: 16px;
}
.footer .email .form-control::placeholder {
  color: #fff;
  font-size: 16px;
}

.footer-bottom .footer-social a {
  background-color: var(--primary-dark);
  position: relative;
  padding: 10px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 0px 3px;
}
.footer-bottom .footer-social a::after {
  position: absolute;
  content: "";
  left: 45%;
  top: 45%;
  width: 4px;
  height: 4px;
}
.footer-bottom .footer-social a:hover::after {
  transform: translate(-50%, -50%);
  background-color: rgba(119, 60, 187, 0.6);
  border-radius: 50%;
  animation: scale 2s infinite ease-in-out;
  opacity: 0;
}

/*---fast-services-section---*/
.fast-services-section {
  background-color: white;
  margin-top: -25px;
  position: relative;
}
.fast-services-section::after {
  content: "";
  position: absolute;
  top: -40px;
  right: 116px;
  width: 130px;
  height: 50px;
  border-radius: 20px 20px 0 0;
  background: #fff;
}
.fast-services-section .services_slider {
  overflow: hidden;
}
.fast-services-section .services_slider .swiper-button-next,
.fast-services-section .services_slider .swiper-rtl .swiper-button-prev {
  top: -7px;
  background-color: var(--grey-light);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: var(--dark);
}
.fast-services-section .services_slider .swiper-rtl .swiper-button-prev {
  right: 190px;
}
.fast-services-section .services_slider .swiper-rtl .swiper-button-next {
  right: 130px;
}
.fast-services-section .services_slider .swiper-button-next:after,
.fast-services-section .services_slider .swiper-button-prev:after {
  font-size: 30px;
}
.fast-services-section .services_slider .swiper-button-next:after,
.fast-services-section .services_slider .swiper-button-prev:after {
  display: none !important;
}
.fast-services-section .services_slider .card {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.fast-services-section .services_slider .card .icon {
  width: 60px;
  height: 60px;
  line-height: 55px;
  margin: auto;
}
.fast-services-section .services_slider .card .card-img {
  width: 100%;
  height: 100%;
}
.fast-services-section .services_slider .card::after {
  position: absolute;
  content: "";
  background-image: url("../images/gradiant-bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 75%;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  bottom: 0;
}
.fast-services-section .services_slider .card .card-img-overlay {
  z-index: 1;
}

/*-----about section------*/
.about-section .panel-footer {
  margin-top: 6rem;
  position: absolute;
  bottom: 0;
  right: 20rem;
  left: 4rem;
}
.about-section .offer-block {
  background-color: var(--primary);
  padding: 3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-section .offer-block .card-title {
  border-bottom: 1px solid var(--primary-light);
}
.about-section .offer-block .about-img {
  width: 350px;
  height: 220px;
}
.about-section .offer-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 899px;
  height: 436px;
  background-image: url(../images/pattern.png);
  background-repeat: no-repeat;
  right: 0;
  opacity: 0.1;
  z-index: 1;
  background-size: 124% 128%;
}
.about-section ul {
  margin-top: 25px;
}
.about-section ul li {
  color: var(--grey) !important;
  font-family: "Montserrat-regular";
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.about-section ul li i {
  color: #f4911d;
  margin-left: 10px;
}
.about-section .image-content {
  position: relative;
}
.about-section .image-content img.main-img {
  height: 700px;
}
.about-section .image-content a {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  height: 100%;
}
.about-section .image-content a .play {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}

.contact-section .card-img-top {
  height: 250px;
}
.contact-section .user {
  min-width: 180px;
  width: 180px;
  height: 180px;
}
.contact-section .contact-form {
  border-radius: 20px 20px 0 0;
  margin-top: -60px;
}
.contact-section .panel-footer {
  position: absolute;
  right: 15px;
  left: 15px;
  bottom: 0;
  padding: 20px 0;
}
.contact-section .swiper-button-next,
.contact-section .swiper-button-prev {
  background-color: var(--grey-light);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: var(--primary);
  top: unset;
  bottom: 40px !important;
  right: auto;
  left: 10px;
}
.contact-section .swiper-button-next {
  left: 70px;
}
.contact-section .swiper-button-next:after,
.contact-section .swiper-button-prev:after {
  font-size: 30px;
}
.contact-section .swiper-button-next:after,
.contact-section .swiper-button-prev:after {
  display: none !important;
}
.contact-section .swiper-pagination-bullet-active {
  background: var(--secondary);
}
.contact-section .clients_slider {
  overflow: hidden;
}

.form-control,
.form-select {
  min-height: 50px;
  border: 0px;
  border-radius: 30px;
  padding: 0.9rem 1rem;
}

/*-----services section-----*/
.services-section .item .icon {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  min-width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*-----choose section-----*/
.choose-section .card .choose-img {
  height: 600px;
}
.choose-section .card .col-lg-8 {
  position: relative;
}
.choose-section .card .col-lg-8 .panel-footer {
  position: absolute;
  right: 5rem;
  left: 5rem;
  bottom: 0;
}

.modal-header {
  border-bottom: 0px;
}

.modal-footer {
  border-top: 0px;
}

.search-inpt {
  border: 1px solid var(--grey-1) !important;
}

.progress-bar.bg-success {
  background-color: rgba(1, 186, 187, var(--bs-bg-opacity)) !important;
}

.progress-bar.bg-warning {
  background-color: rgba(249, 227, 179, var(--bs-bg-opacity)) !important;
}

.progress,
.progress-stacked {
  --bs-progress-border-radius: 0.5rem;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 30px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- to_top --------------- */
.is-mobile {
  display: none;
}

@keyframes scale {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(20);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.clip-image-bottom {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  /* Fully clipped at the top */
  transition: -webkit-clip-path 1s ease-in-out;
  transition: clip-path 1s ease-in-out;
  transition: clip-path 1s ease-in-out, -webkit-clip-path 1s ease-in-out;
  /* Smooth transition for the clip-path */
}
.clip-image-bottom.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  /* Reveal the full image from top to bottom */
}

.clip-image-left {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: all 1s ease-in-out;
}
.clip-image-left.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

/* ----------------------------------------
* animation slide_up_down
* ----------------------------------------
*/
.slide_up_down {
  animation: slide_up_down 1.9s ease-in-out infinite alternate both;
}

/* ------- */
@keyframes slide_up_down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.navbar-toggler {
  border: 0px !important;
  position: absolute;
  left: 13px;
  top: 30px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.about-section .row {
  margin: 0px !important;
}

.is-mobile.collapse {
  display: none !important;
}

/*--------------pages---------------*/
/* ====Responsive==== */
@media screen and (max-width: 1920px) {
  .about-section .right-col {
    padding: 0rem 20rem 1rem 4rem;
  }
}
@media screen and (max-width: 1600px) {
  .about-section .offer-block::after {
    width: 700px;
  }
  .about-section .right-col {
    padding: 0rem 10rem 1rem 4rem;
  }
  .about-section .panel-footer {
    right: 10rem;
  }
}
@media screen and (max-width: 1470px) {
  .about-section .right-col {
    padding: 0rem 5rem 1rem 4rem;
  }
  .about-section .panel-footer {
    right: 5rem;
  }
}
@media screen and (max-width: 1366px) {
  .about-section .right-col {
    padding: 0rem 8rem 1rem 4rem;
  }
  .about-section .panel-footer {
    right: 8rem;
  }
  .about-section .offer-block::after {
    width: 640px;
  }
}
@media screen and (max-width: 1280px) {
  .about-section .right-col {
    padding: 0rem 5rem 1rem 4rem;
  }
  .about-section .panel-footer {
    right: 5rem;
  }
  .about-section .offer-block::after {
    width: 536px;
  }
}
@media screen and (max-width: 1087px) {
  a,
  span,
  img {
    font-size: 13px;
  }
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .btn {
    padding: 10px;
  }
  .fs-4 {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 1024px) {
  .about-section .offer-block::after {
    width: 480px;
  }
}
@media screen and (max-width: 768px) {
  .clip-image-left,
  .clip-image-bottom {
    -webkit-clip-path: none !important;
            clip-path: none !important;
  }
  .about-section .offer-block,
  .about-section .panel-footer,
  .contact-section .panel-footer {
    position: relative;
  }
  .about-section .offer-block::after {
    display: none;
  }
  .about-section .panel-footer {
    right: 0;
  }
  .contact-section .contact-form {
    margin-top: 10px;
  }
  .fs-1 {
    font-size: 1.5rem !important;
  }
  .d-flex {
    display: block !important;
  }
  .hero-section .col-md-9.text-end {
    margin-top: 15px;
    margin-bottom: 70px;
  }
  .text-end {
    text-align: right !important;
  }
  .col-lg-3.text-end {
    margin-top: 15px;
  }
  .icon {
    margin-bottom: 10px;
  }
  .border-left-grey,
  .border-left-primary,
  .footer .border-left-footer {
    border-left: 0px;
  }
  .py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .fs-2 {
    font-size: 20px !important;
  }
  .fs-5 {
    font-size: 0.9rem 14.4px !important;
  }
  .choose-section .card .col-lg-8 .panel-footer {
    position: relative;
    right: 0rem;
    left: 0rem;
  }
  .choose-section .card .choose-img {
    height: 300px;
  }
  .card-footer .item {
    margin: 10px 0px;
  }
  .services-section .item .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .mt-5 {
    margin-top: 1rem !important;
  }
  .contact-section .card-img-top {
    height: 200px;
  }
  .footer .h5,
  .footer h5 {
    font-size: 1.1rem;
    margin: 13px 0;
  }
  .footer .ps-5 {
    padding-right: 1rem !important;
  }
  .footer .pt-60 {
    padding-top: 10px !important;
  }
  .footer .py-3 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .footer-social.text-end {
    margin-top: 15px;
  }
  .container {
    padding: 25px;
  }
  .ps-3 {
    padding-right: 0px !important;
  }
  .pe-5 {
    padding-left: 0px !important;
  }
  .section_padding {
    padding: 10px 0;
  }
  .p-7 {
    padding: 2rem !important;
  }
  .mt-7 {
    margin-top: 2rem !important;
  }
  .about-section .image-content img.main-img {
    height: 450px;
  }
  .about-section .right-col {
    padding: 2rem;
  }
  .is-desktop.container {
    display: none !important;
  }
  .header .navbar.pt-3 {
    padding-top: 0px !important;
  }
  .header .navbar.pb-3 {
    padding-bottom: 0px !important;
  }
  .header {
    background-color: var(--primary);
  }
  .is-mobile {
    display: block !important;
    padding: 30px 0 15px;
  }
  .is-desktop {
    display: none !important;
  }
  header .navbar-nav .nav-item {
    margin: 7px 5px;
    display: flex;
  }
  header .nav_btns {
    margin-bottom: 15px;
  }
  header .ms-4 {
    margin-right: 0rem !important;
    margin-top: 15px;
  }
  header .px-5.border-left {
    border-left: 0px;
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin: 13px 0;
    display: block;
  }
  header .ps-5 {
    padding-right: 0px !important;
  }
  header .nav-link {
    font-size: 13px;
  }
  header .container {
    padding: 15px;
  }
  .card-img-overlay.d-flex {
    display: flex !important;
  }
}
/* ======= *//*# sourceMappingURL=style.css.map */