@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --bs-body-font-family: "Montserrat", sans-serif;
  --bs-body-font-family2: "Roboto", sans-serif;
  --bs-body-font-weight: 400;
  --bs-body-color: #212529;
  --bs-body-bg: #f3eff0;
  --bs-primary: #cc1d34;
  --bs-forn-color: #111111;
  --bs-red: #ff0000;
  --bs-light: #fff;
  --bs-gray: #C2B1B433;
  --bs-title: 30px;
  --bs-menu-font-size: 18px;
  --bs-menu-mobile-font-size: 16px;
  --bs-footer-icon: #C2B1B433;
}

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

body {
  background-color: #fff;
  font-family: var(--bs-body-font-family2);
  font-weight: var(--bs-body-font-weight);
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: var(--bs-forn-color);
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--bs-forn-color);
}
a:hover, a:focus {
  color: var(--bs-primary);
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.bg-gray {
  background-color: var(--bs-body-bg);
}

.header-section {
  background-color: var(--bs-body-bg);
}
.header-section .navbar-brand {
  position: relative;
}
.header-section .navbar-brand img {
  height: 70px;
  margin-top: -6px;
  margin-bottom: -6px;
}
@media (max-width: 660px) {
  .header-section .navbar-brand img {
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.header-section .navbar-nav {
  text-transform: uppercase;
  font-size: var(--bs-menu-font-size);
}
.header-section .navbar-nav .nav-item {
  position: relative;
}
.header-section .navbar-nav .nav-item .arrow-down {
  width: 12px;
  height: 12px;
  margin-left: 10px;
  margin-right: -10px;
  transition: transform 0.2s ease;
}
.header-section .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--bs-forn-color);
  font-weight: 700;
  padding: 20px 30px;
  display: flex;
  align-items: center;
}
.header-section .navbar-nav .nav-item:hover.nav-link,
.header-section .navbar-nav .nav-item .nav-link.active {
  color: var(--bs-primary);
}
.header-section .navbar-nav .nav-item:hover.nav-link .arrow-down path,
.header-section .navbar-nav .nav-item .nav-link.active .arrow-down path {
  fill: var(--bs-primary);
}
.header-section .navbar-nav .nav-item:hover.nav-link > .arrow-down,
.header-section .navbar-nav .nav-item .nav-link.active > .arrow-down {
  transform: rotate(-180deg);
}
.header-section .navbar-nav .nav-item .dropdown-menu {
  background-color: var(--bs-light);
  border: 0;
  border-radius: 0;
  min-width: 290px;
  padding: 1rem;
}
.header-section .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
  padding-right: 35px;
  align-items: center;
  text-transform: none;
  white-space: normal;
  margin-bottom: 5px;
}
.header-section .navbar-nav .nav-item .dropdown-menu .dropdown-item .arrow-down {
  position: absolute;
  right: 10px;
  margin: 0;
}
.header-section .navbar-nav .nav-item .dropdown-menu .nav-item:hover > .dropdown-item,
.header-section .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-item.active {
  background-color: transparent;
  color: var(--bs-primary);
}
.header-section .navbar-nav .nav-item .dropdown-menu .nav-item:hover > .dropdown-item .arrow-down,
.header-section .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-item.active .arrow-down {
  transform: rotate(-90deg);
}
.header-section .navbar-nav .nav-item .dropdown-menu .nav-item:hover > .dropdown-item .arrow-down path,
.header-section .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-item.active .arrow-down path {
  fill: var(--bs-primary);
}
@media (min-width: 993px) {
  .header-section .navbar-nav .nav-item:hover > .dropdown-menu, .header-section .navbar-nav .nav-item:focus > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 992px) {
  .header-section .navbar-nav .nav-item.show > .dropdown-menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .header-section .navbar-nav .nav-item .dropdown-menu {
    max-width: 300px;
    box-shadow:0 0 10px 0px #00000038;
  }
  .header-section .navbar-nav .nav-item .nav-item .dropdown-menu {
    left: 100%;
    top: 6px;
    z-index: 9999;
    /*&::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -4px;
    border-left: 1px solid var(--bs-dropdown-border-color);
    border-bottom: 1px solid var(--bs-dropdown-border-color);
    z-index: 9999;
    width: 8px;
    height: 8px;
    background: var(--bs-light);
    transform: rotate(45deg);
    border-radius: 2px 0 2px 2px;
    }*/
  }
}
@media (min-width: 1401px) and (max-width: 1600px) {
  .header-section .navbar-nav .nav-item .nav-link {
    padding: 20px 20px;
    font-size: 15px;
  }
}
@media (min-width: 1199px) and (max-width: 1400px) {
  .header-section .navbar-nav .nav-item .nav-link {
    padding: 20px 15px;
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-section .navbar-nav .nav-item .nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }
}
@media (max-width: 1699px) {
  .header-section .navbar-nav {
    font-size: var(--bs-menu-mobile-font-size);
  }
}
@media (max-width: 1199px) {
  .header-section .navbar-nav .nav-item .nav-link {
    padding: 8px 20px;
    padding-left: 0;
  }
}
.header-section .navbar-toggler {
  border: 0;
  padding: 0;
}
.header-section .navbar-toggler .st-munu-toggle {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: 0;
  cursor: pointer;
}
.header-section .navbar-toggler .st-munu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--bs-body-color);
  display: block;
  margin: 0 auto;
  position: relative;
  top: 12px;
  transition-duration: 0s;
  transition-delay: 0.2s;
  border-radius: 2px;
}
.header-section .navbar-toggler .st-munu-toggle span:before, .header-section .navbar-toggler .st-munu-toggle span:after {
  width: 100%;
  height: 3px;
  background-color: var(--bs-body-color);
  display: block;
  border-radius: 2px;
  content: "";
  position: absolute;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}
.header-section .navbar-toggler .st-munu-toggle span:before {
  margin-top: -10px;
}
.header-section .navbar-toggler .st-munu-toggle span:after {
  margin-top: 10px;
}
.header-section .navbar-toggler:not(.collapsed) .st-munu-toggle span {
  background-color: rgba(0, 0, 0, 0);
  transition-delay: 0.2s;
}
.header-section .navbar-toggler:not(.collapsed) .st-munu-toggle span:before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
.header-section .navbar-toggler:not(.collapsed) .st-munu-toggle span:after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}
.header-section .nav-icons .nav-link {
  color: var(--bs-light);
  background-color: var(--bs-red);
  border-radius: 87px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.header-section .nav-icons .nav-link img {
  width: 16px;
  height: 16px;
}
.header-section .nav-icons .nav-link:hover {
  background-color: var(--bs-primary);
}
@media (min-width: 992px) and (max-width: 1366px) {
  .header-section .nav-icons .nav-link {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.header-section .nav-icons .nav-item {
  margin-right: 5px;
}
.header-section .nav-icons .nav-item:last-child {
  margin-right: 0;
}
.header-section .search-bar {
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
}
@media (min-width: 992px) and (max-width: 1400px) {
  .header-section .search-bar {
    width: 240px;
  }
}
.header-section .search-bar input {
  padding-left: 32px;
  background-color: var(--bs-light);
  border: 0;
  height: 40px;
}
.header-section .search-bar img {
  position: absolute;
  left: 8px;
  opacity: 0.5;
  width: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-section .search-bar {
    width: 150px;
  }
  .header-section .search-bar input {
    height: 35px;
    font-size: 13px;
  }
}
@media (min-width: 1199px) and (max-width: 1366px) {
  .header-section .search-bar input {
    height: 35px;
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .header-section .nav-icons .nav-item {
    margin-right: 1.5rem;
    margin-top: 1rem;
  }
  .header-section .nav-icons .nav-item a {
    transform: scale(1.25);
  }
  .header-section .navbar-collapse {
    position: fixed;
    width: 100%;
    height: calc(100% - 76px);
    background-color: var(--bs-body-bg);
    left: 0;
    padding: 1.5rem 2rem;
    top: 76px;
    z-index: 99999;
    background-color: var(--bs-light);
    /*.navbar-collapse {
        left: -120%;
        &.collapsing,&.show {
            left: 0%;
        }
    }*/
    left: -120%;
  }
  .header-section .navbar-collapse.show {
    overflow-y: auto;
    max-height: calc(100vh - 76px);
  }
  .header-section .navbar-collapse .dropdown-menu {
    background-color: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    padding-left: 0.5rem !important;
    padding-bottom: 5px !important;
  }
  .header-section .navbar-collapse .dropdown-menu .nav-item::before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    background: var(--bs-forn-color);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 8px;
    opacity: 0.5;
  }
  .header-section .navbar-collapse .dropdown-menu .nav-item:hover::before {
    background: var(--bs-primary);
  }
  .header-section .navbar-collapse .dropdown-menu .dropdown-item {
    padding: 6px 20px !important;
    padding-right: 35px !important;
  }
  .header-section .navbar-collapse .navbar-nav .nav-item .arrow-down {
    position: absolute;
    right: 10px;
    margin: 0;
  }
  .header-section .navbar-collapse .navbar-nav .nav-item:hover .nav-link > .arrow-down,
  .header-section .navbar-collapse .navbar-nav .nav-item .nav-link.active > .arrow-down {
    transform: rotate(-90deg);
  }
  .header-section .navbar-collapse form {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-section .navbar-collapse form .search-bar {
    width: 100%;
  }
  .header-section .navbar-collapse form .search-bar input {
    width: 100%;
  }
  .header-section .navbar-collapse form .nav-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
  .header-section .navbar-collapse .search-bar input {
    background-color: var(--bs-body-bg);
  }
  .header-section .navbar-collapse.collapsing, .header-section .navbar-collapse.show {
    left: 0%;
  }
}
@media (min-width: 660px) and (max-width: 992px) {
  .header-section .navbar-collapse {
    width: 400px;
    right: 20px;
    left: auto !important;
    right: 10px;
    height: auto;
    background-color: var(--bs-light);
  }
  .header-section .navbar-collapse .search-bar input {
    background-color: var(--bs-body-bg);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-body-font-family);
  font-weight: 700;
}

p {
  color: #666;
  font-size: 1rem;
  line-height: 30px;
}

.banner-section {
  position: relative;
}
.banner-section .item {
  height: 610px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.banner-section .item h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 80px;
  color: var(--bs-light);
  text-transform: uppercase;
}
.banner-section .item p {
  font-family: var(--bs-body-font-family2);
  font-size: 20px;
  color: var(--bs-light);
  margin: 20px 0 30px 0;
}
@media (max-width: 660px) {
  .banner-section .item h1 {
    font-size: 48px;
    line-height: 60px;
  }
  .banner-section .item p {
    font-size: 20x;
    margin: 15px 0 20px 0;
  }
}
.banner-section .owl-stage-outer {
  padding: 0 !important;
}
.banner-section .owl-dots {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  bottom: 6%;
}
.banner-section .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background-color: var(--bs-light);
  border: 1px solid var(--bs-primary);
  opacity: 1;
}
.banner-section .owl-dots .owl-dot.active span, .banner-section .owl-dots .owl-dot:hover span {
  border: 1px solid var(--bs-light);
  background-color: var(--bs-primary);
}

.btn-primary {
  background-color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
  padding: 12px 30px;
  font-family: var(--bs-body-font-family);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  font-weight: 500;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--bs-body-bg);
  color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
}

.btn-light {
  background-color: var(--bs-body-bg);
  color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
  padding: 12px 30px;
  font-family: var(--bs-body-font-family);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  font-weight: 500;
}
.btn-light:hover {
  background-color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
  color: var(--bs-light);
  border: 2px solid var(--bs-light);
}

.btn-outline-primary {
  color: var(--bs-primary);
  background-color: transparent;
  border: 2px solid var(--bs-primary);
  padding: 12px 30px;
  font-family: var(--bs-body-font-family);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  font-weight: 500;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  border: 2px solid var(--bs-primary);
}

.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-title);
  line-height: 45px;
  color: var(--bs-body-color);
  margin-bottom: 1.5rem;
}
.section-title .name {
  background-color: var(--bs-gray);
  padding: 10px 50px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  color: var(--bs-forn-color);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.section-title.section-title-light h2,
.section-title.section-title-light .name {
  color: var(--bs-light);
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
  }
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media (max-width: 660px) {
  .section-pad {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 660px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1450px;
  }
}
@media (min-width: 1700px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1550px;
  }
}
@media (min-width: 1800px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1650px;
  }
}
@media (min-width: 1910px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1750px;
  }
}
.img_mid {
  display: flex;
  align-items: center;
  height: -webkit-fill-available;
}

.lable {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lable .item {
  margin-bottom: 20px;
  height: auto;
  display: flex;
  align-items: center;
}
.lable .item h5 {
  font-size: 18px;
}
@media (min-width: 992px) and (max-width: 1400px) {
  .lable .item h5 {
    font-size: 16px;
  }
}
.lable .item .icon {
  background-color: var(--bs-primary);
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 12px;
  margin-right: 15px;
}

.owl-carousel {
  position: relative;
}

.owl-right-buttons .owl-nav .owl-prev,
.owl-right-buttons .owl-nav .owl-next {
  background-color: var(--bs-primary) !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.owl-right-buttons .owl-nav .owl-prev:hover,
.owl-right-buttons .owl-nav .owl-next:hover {
  background-color: var(--bs-primary) !important;
  transform: none;
}
.owl-right-buttons .owl-nav .owl-prev i,
.owl-right-buttons .owl-nav .owl-next i {
  color: #ffffff;
  font-size: 1.2rem;
}
.owl-right-buttons .owl-nav img {
  width: 15px;
  height: 15px;
  filter: invert(100%);
}
.owl-right-buttons .owl-nav .owl-prev img {
  transform: rotate(90deg);
}
.owl-right-buttons .owl-nav .owl-next img {
  transform: rotate(-90deg);
}
@media (min-width: 992px) {
  .owl-right-buttons .owl-nav {
    position: absolute;
    top: -6.5rem;
    right: 1%;
  }
}

.owl-line-dots .owl-dots {
  margin-top: 2rem;
}
.owl-line-dots .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background-color: var(--bs-primary);
  opacity: 0.8;
}
.owl-line-dots .owl-dots .owl-dot:hover span, .owl-line-dots .owl-dots .owl-dot.active span {
  background-color: var(--bs-primary);
  opacity: 1;
}
.owl-line-dots .owl-dots .owl-dot.active span {
  width: 50px;
}

.owl-carousel .owl-stage-outer {
  padding-top: 0rem;
  padding-bottom: 1rem;
}

.differentiators .owl-item {
  padding: 0 15px;
}
.differentiators .item {
  text-align: left;
  background-color: var(--bs-light);
  border-radius: 10px;
  padding-top: 2rem;
  padding: 1.5rem;
}
.differentiators .item img {
  width: 80px;
  margin-bottom: 20px;
  margin-top: 2rem;
}
.differentiators .item p {
  max-height: 85px;
  min-height: 85px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .differentiators .item {
    min-height: 280px;
  }
}

.services .owl-item {
  padding: 0 20px;
}
.services .card,
.services .owl-item .card,
.services .owl-carousel .card {
    
    overflow: hidden;
}
.services .card-body,
.services .card .card-body {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 2rem;
  text-align: left;
}
.services .card:hover {
    transform: none;
    opacity: 1;
}

.services .card img {
  border-radius: 0;
  transition: transform 0.3s ease;
    max-height: 320px;
}
.services .card:hover img {
  transform: scale(1.02);
}
@media (max-width: 992px) {
  .services .owl-nav {
    display: none;
  }
}

.card-img,
.card-img-top {
  border-radius: 0;
}

.case-studies img {
  border-radius: 0 !important;
}
.case-studies .date {
  width: 78px;
  height: 62px;
  position: absolute;
  top: 0;
  background: var(--bs-primary);
  color: #fff;
  padding: 20px 10px;
  line-height: 15px;
  text-align: left;
  position: absolute;
  top: 0;
  background: var(--bs-primary);
  color: #fff;
}
.case-studies .date span {
  width: 100%;
  display: block;
}
.case-studies .date .haed {
  font-size: 10px;
  color: #fff;
}
.case-studies .card {
  box-shadow: 0 0 8px -4px #000;
  border-radius: 0;
}
.case-studies .item {
  position: relative;
  display: flex;
  background-color: var(--bs-light);
}
.case-studies .item .img {
  float: left;
  min-width: 290px;
  max-width: 290px;
}
.case-studies .item .img img {
  min-height: 100%;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .case-studies .item .img {
    min-width: 250px;
    max-width: 250px;
  }
}
@media (max-width: 992px) {
  .case-studies .item {
    flex-wrap: wrap;
  }
  .case-studies .item .img {
    min-width: 100%;
    max-width: 100%;
  }
}
.case-studies .item .card-body {
  text-align: left;
  padding: 1.5rem;
}
.case-studies .item .card-body .name {
  color: var(--bs-primary);
  margin-bottom: 6px;
}
.case-studies .item .card-body p {
  line-height: 25px;
}

.blogs .card {
  border: 0;
  border-radius: 0;
  background-color: var(--bs-body-bg);
  margin-bottom: 1.5rem;
}
.blogs .card:hover {
  transform: translateY(-3px);
}
.blogs .card-body {
  padding: 2rem;
}
.blogs .card-body h5 {
  font-size: 18px;
  color: var(--bs-primary);
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.blogs .card-body h5 span {
  font-family: var(--bs-body-font-family2);
  font-size: 16px;
  font-weight: 400;
  color: #666;
}
.blogs .card-body h5 span img {
  width: 18px;
}

.owl-carousel-testimonials .item {
  background-color: var(--bs-light);
  padding: 3rem 4rem;
  border-radius: 0 70px 0 70px;
}
.owl-carousel-testimonials .item .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.owl-carousel-testimonials .item .head .name {
  display: flex;
  align-items: center;
}
.owl-carousel-testimonials .item .head .name h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.owl-carousel-testimonials .item .head .name h5 span {
  font-weight: 400;
  font-size: 14px;
}
.owl-carousel-testimonials .item .head img {
  width: 65px;
  float: left;
  margin-right: 25px;
}
.owl-carousel-testimonials .item .head .quat {
  margin-right: 0;
}
.owl-carousel-testimonials .item .content h6 {
  color: var(--bs-primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1rem;
}
.owl-carousel-testimonials .item .content .like {
  display: flex;
}
.owl-carousel-testimonials .item .content .like li {
  background-image: url(../images/icons/star2.svg);
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-size: contain;
  background-repeat: round;
  background-position: center;
}
.owl-carousel-testimonials .item .content .like li.light {
  background-image: url(../images/icons/star.svg);
}
@media (max-width: 660px) {
  .owl-carousel-testimonials .item {
    padding: 3rem 2rem;
    border-radius: 0 50px 0 50px;
  }
  .owl-carousel-testimonials .item .head img {
    margin-right: 15px;
  }
  .owl-carousel-testimonials .item .head .quat {
    position: absolute;
    right: 20px;
    width: 60px;
    z-index: 0;
  }
}
.owl-carousel-testimonials .owl-dots .owl-dot.active span, .owl-carousel-testimonials .owl-dots .owl-dot:hover span,
.owl-carousel-testimonials .owl-dots .owl-dot span,
.owl-carousel-testimonials .owl-dots .owl-dot.active span,
.owl-carousel-testimonials .owl-dots .owl-dot:hover span,
.owl-carousel-testimonials .owl-dots .owl-dot span {
  background-color: var(--bs-body-bg);
  opacity: 1;
}

.our-success .item {
  box-shadow: 0 0 10px 0px #d7d7d7;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.our-success .item .icon {
  background-color: var(--bs-primary);
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 12px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.our-success .item h1 {
  font-size: 35px;
  margin-bottom: 1rem;
}
.our-success .item p {
  margin-bottom: 0;
  color: var(--bs-primary);
}

.our-clients .owl-item {
  padding: 1rem;
}
.our-clients .item {
  padding: 1rem;
  box-shadow: 0 0 10px 0px #d7d7d7;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-control:focus {
  box-shadow: none !important;
  outline: none !important;
}

form .form-control {
  font-size: 14px;
  height: 45px;
  padding-left: 16px;
  background-color: var(--bs-light);
  border: 0;
}
form textarea.form-control {
  height: auto;
}
form .btn {
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
}

.contact-form .img {
  background-size: cover;
  min-height: 250px;
}
.contact-form form {
  padding: 2rem 3rem;
  color: var(--bs-light);
  background-color: var(--bs-primary);
}
.contact-form form .row {
  max-width: 650px;
}
.contact-form form h2 {
  margin-bottom: 2rem;
}

.footer-section p {
  line-height: 25px;
}
.footer-section .logo {
  width: 85px;
  margin-bottom: 1rem;
}
.footer-section h5 {
  margin-bottom: 1rem;
  font-size: 18px;
}
.footer-section .nav li {
  margin-bottom: 8px;
}
.footer-section .nav li a {
  color: #666;
}
.footer-section .nav li a:hover, .footer-section .nav li a:focus {
  color: var(--bs-primary);
}
.footer-section .contact li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer-section .contact li .name {
  display: flex;
  flex-wrap: wrap;
}
.footer-section .contact li .icon {
  color: var(--bs-light);
  background-color: var(--bs-red);
  border-radius: 87px;
  width: 35px;
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-right: 15px;
}
.footer-section .contact li .icon img {
  width: 16px;
  height: 16px;
}
.footer-section .contact li a {
  color: #000;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1400px) {
  .footer-section .contact li .icon {
    margin-right: 10px;
  }
}
.footer-section .foot {
  background-color: #5B5555;
}
.footer-section .foot .container {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-section .foot .nav li {
  margin-bottom: 0;
  margin-right: 25px;
}
.footer-section .foot .nav li a {
  color: var(--bs-light);
}
.footer-section .foot .nav li a:hover, .footer-section .foot .nav li a:focus {
  color: var(--bs-primary);
}
.footer-section .foot .nav li:last-child {
  margin-right: 0;
}
.footer-section .foot .icon li {
  margin-right: 10px;
}
.footer-section .foot .icon li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-footer-icon);
 
  border-radius: 26px;
}
.footer-section .foot .icon li a img {
  height: 14px;
  filter: invert(100%);
}
.footer-section .foot .icon li a:hover {
  opacity: 1;
}
.footer-section .foot .icon li a.fb {
  background: #1877f2 !important;
}
.footer-section .foot .icon li a.x {
  background: #000000 !important;
}
.footer-section .foot .icon li a.in {
  background: #0a66c2 !important;
}
.footer-section .foot .icon li a.yt {
  background: #ff0000 !important;
}
.footer-section .foot .icon li a.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
}
@media (max-width: 760px) {
  .footer-section .foot .container {
    flex-wrap: wrap;
  }
  .footer-section .foot .nav:not(.icon) {
    margin-bottom: 1rem;
  }
  .footer-section .foot .nav:not(.icon) li {
    margin: 0 10px;
  }
  .footer-section .foot .nav {
    justify-content: center;
    margin: 0 auto;
  }
}
.footer-section .copyright {
  background-color: var(--bs-body-bg);
  padding: 20px 0;
  line-height: 1;
  color: var(--bs-body-color);
}
.footer-section .copyright a {
  color: var(--bs-primary);
  font-weight: 500;
}

.footer-section {
  background-color: #F3EFF0;
}

.page-link {
  margin-right: 6px;
  color: #000;
  font-family: var(--bs-body-font-family);
  font-size: 16px;
  font-weight: 600;
  background-color: #fff;
  border-radius: 4px;
}

.active > .page-link {
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.page-link:hover {
  color: var(--bs-primary);
  background-color: #F3EFF0;
}

.inner-banner-section {
  text-align: center;
}
.inner-banner-section .item {
  height: 400px;
}
.inner-banner-section p {
  font-weight: normal;
}
.inner-banner-section p span {
  padding: 0px 8px;
}
.inner-banner-section p a {
  color: var(--bs-light);
  font-weight: 600;
}

.inner-banner-section p a:hover {
  color: var(--bs-primary);
}

.blogs .blog-detail h5 {
  font-family: var(--bs-body-font-family2);
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blogs .blog-detail h5 img {
  width: 18px;
}
.blogs .blog-detail h3 {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 10px;
}
.blogs .blog-detail h4 {
  color: var(--bs-primary);
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-post {
  background-color: #F3EFF0;
  padding: 30px;
}
.blog-post h4 {
  font-size: 25px;
  margin-bottom: 30px;
}

.recent-image img {
  padding-top: 10px;
  padding-bottom: 20px;
}

.recent-content {
  padding-top: 15px;
}
.recent-content h5 {
  font-size: 18px;
  margin-bottom: 5px;
}
.recent-content p {
  font-size: 18px;
}

.bod {
  border-bottom: 1px solid #ccc;
}

.mg-align {
  margin: 10px 0px;
}

.category p span {
  font-weight: 700;
}

.heropanel--video {
  font-family: sans-serif;
  min-height: 400px;
}
.heropanel--video .btn {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #000;
  width: 80px;
  height: 80px;
}
.heropanel--video .btn .play {
  display: block;
}
.heropanel--video .btn .pause {
  display: none;
}
.heropanel--video .btn.stop_paly .play {
  display: none;
}
.heropanel--video .btn.stop_paly .pause {
  display: block;
}
.heropanel--video .btn img {
  height: 30px;
  filter: invert(100%);
}
@media (min-width: 720px) {
  .heropanel--video {
    height: 620px;
  }
}
@media (min-width: 1200px) {
  .heropanel--video {
    height: calc(100vh - 84px);
  }
}

@keyframes gm-slidein {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: none;
    opacity: 1;
    transform: none;
  }
}
.video-banner-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 595px;
}
.video-banner-section video {
  min-height: 100vh;
  position: absolute;
  top: 0;
  margin: 0 auto;
}
.video-banner-section .btn {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #000;
  width: 80px;
  height: 80px;
}
.video-banner-section .btn .play {
  display: block;
}
.video-banner-section .btn .pause {
  display: none;
}
.video-banner-section .btn.stop_paly .play {
  display: none;
}
.video-banner-section .btn.stop_paly .pause {
  display: block;
}
.video-banner-section .btn img {
  height: 30px;
  filter: invert(100%);
}
@media (min-width: 1200px) {
  .video-banner-section {
    height: calc(100vh - 84px);
  }
}
@media (max-width: 660px) {
  .video-banner-section {
    height: calc(100vh - 76px);
  }
}

.scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 80px;
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.scrollToTop svg {
  width: 20px;
}
.scrollToTop svg path {
  fill: #fff;
}
.scrollToTop.show {
  opacity: 1;
}

@media (min-width: 320px) and (max-width: 767px) {
  .banner-section .item h1 {
    font-size: 25px;
  }
  .banner-section .item p {
    font-size: 16px;
  }
  .about-block {
    margin-bottom: 20px;
  }
  .about-block h5 {
    font-size: 16px;
  }
  .section-title h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .differentiators .item h4 {
    font-size: 18px;
  }
  .differentiators .item img {
    margin-top: 10px;
    width: 50px;
  }
  .owl-carousel .owl-stage-outer {
    padding-bottom: 0px;
  }
  .owl-nav {
    margin-bottom: 20px;
  }
  .about-image {
    float: left;
    padding: 0px 0px 10px 0px;
  }
  .set .about-image img {
    width: 50px;
  }
  .blogs .blog-detail h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .blogs .blog-detail h4 {
    font-size: 16px;
  }
  .case-block h4 {
    font-size: 20px;
  }
  .contact-block {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-nav {
    margin-bottom: 20px;
  }
  .about-content h5 {
    font-size: 18px;
  }
  .differentiators .item h4 {
    font-size: 18px;
  }
  .differentiators .item img {
    width: 60px;
    margin-top: 0px;
  }
  .blogs .blog-detail h3 {
    font-size: 20px;
  }
  .blogs .blog-detail h4 {
    font-size: 18px;
  }
  .recent-content h5 {
    font-size: 14px;
  }
  .recent-content p {
    font-size: 14px;
  }
  .contact-block {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-block h5 {
    font-size: 16px;
  }
  .differentiators .item h4 {
    font-size: 18px;
  }
  .differentiators .item img {
    margin-top: 0px;
  }
  .contact-block {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .differentiators .item h4 {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 1399px) {
  .blogs .card-body h5 {
    width: 100%;
    display: inline-block;
    margin-top: 0px;
  }
  .blogs .card-body h5 span {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}/*# sourceMappingURL=style.css.map */
.owl-right-buttons .owl-nav{
  display: inline-flex !important;
}