/* Al-Shamil Computer Tr. - Company Website UI/UX | Frontend Development */
/* 17 Nov 2024 */
/* Code by Dinesh */
/*-------------------------------------------------------*/
/* Variables
/*-------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap);
/*====== Meaasge Color =====*/
/*-------------------------------------------------------*/
/* Mixins
/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/
::-moz-selection {
  color: #FAFAFB;
  background: #A50034;
}

::-webkit-selection {
  color: #FAFAFB;
  background: #A50034;
}

::selection {
  color: #FAFAFB;
  background: #A50034;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #1d2027;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

img {
  margin-bottom: 1rem;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #670222;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
  outline: 0;
  color: #1d2027;
  width: 100%;
  overflow: hidden;
}
body img {
  border: none;
  max-width: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.spacer {
  position: relative;
  min-height: 16vh;
}
@media only screen and (max-width: 767px) {
  .spacer {
    min-height: 12vh;
  }
}
.spacer__small {
  position: relative;
  min-height: 10vh;
}
@media only screen and (max-width: 767px) {
  .spacer__small {
    min-height: 5vh;
  }
}
.spacer__xsmall {
  position: relative;
  min-height: 6vh;
}
@media only screen and (max-width: 767px) {
  .spacer__xsmall {
    min-height: 3vh;
  }
}

/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  margin-top: 0;
  margin-bottom: 10px;
  color: #1d2027;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.005em;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 15px;
}

@media only screen and (max-width: 575px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 19px;
  }
  h4 {
    font-size: 18px;
  }
}
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
  color: inherit;
}

p {
  font-size: 1.05rem;
  color: #1d2027;
  font-weight: 500;
  line-height: 28px;
  margin: 0 0 10px;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #e1e5e6;
}

.x-tilt-animation {
  animation: xtilt 5s ease-in-out infinite alternate;
}

.y-tilt-animation, .tilt-image {
  animation: ytilt 6s ease-in-out infinite;
}

@keyframes ytilt {
  0% {
    transform: translatey(0);
  }
  50% {
    transform: translatey(-20px);
  }
  to {
    transform: translatey(0);
  }
}
@keyframes xtilt {
  0% {
    transform: perspective(1000px) rotateY(-10deg);
    scale: 1.01;
  }
  to {
    transform: perspective(1000px) rotateY(10deg);
    scale: 1;
  }
}
@keyframes fadeImg {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/*-------------------------------------------------------*/
/* Form Style
/*-------------------------------------------------------*/
input[type=text],
input[type=password],
input[type=email],
input[type=number],
textarea {
  font-size: 16px;
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  outline: none;
  border: 0 none;
  border-bottom: 2px solid #9F9C9C;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus {
  border-color: #A50034;
}

textarea:focus {
  border-color: #A50034;
}

/* Form Group  */
.form-floating .form-control {
  border-radius: 0;
  padding: 1rem 0.35rem;
  border: 0 none;
  border-bottom: 2px solid #9F9C9C;
}
.form-floating .form-control:focus {
  box-shadow: none;
  border-bottom: 2px solid #A50034;
}
.form-floating .form-control:focus ~ label {
  color: #A50034;
}
.form-floating .form-control:not(:placeholder-shown) {
  padding-bottom: 0.25rem;
}
.form-floating label {
  padding: 1rem 0.25rem;
}

/*-------------------------------------------------------*/
/* Custom Button
/*-------------------------------------------------------*/
a.asg-btn,
button.asg-btn {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: inherit;
  font-size: 1.1rem;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  color: #ffffff;
  border: none;
  padding: 0rem 1.5rem;
  outline: medium none;
  text-decoration: none;
  background: #670222;
  background: -moz-linear-gradient(90deg, #670222 0%, #A50034 50%, #670222 100%);
  background: -webkit-linear-gradient(90deg, #670222 0%, #A50034 50%, #670222 100%);
  background: linear-gradient(90deg, #670222 0%, #A50034 50%, #670222 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#670222",endColorstr="#670222",GradientType=1);
  transform-style: preserve-3d;
}
a.asg-btn.as-outline,
button.asg-btn.as-outline {
  border: 2px solid #A50034;
  background: none;
  color: #A50034;
}
a.asg-btn.as-outline::after,
button.asg-btn.as-outline::after {
  background-color: #A50034;
}
a.asg-btn:after,
button.asg-btn:after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100px;
  width: 100%;
  z-index: -1;
  background-color: #474747;
  transition: all 0.25s ease-in-out;
  transform: translateY(-45%) scale(0);
}
a.asg-btn:hover,
button.asg-btn:hover {
  color: #FAFAFB;
}
a.asg-btn:hover:after,
button.asg-btn:hover:after {
  transform: translateY(-45%) scale(1.2);
}
a.asg-btn.btn-large,
button.asg-btn.btn-large {
  height: 56px;
  line-height: 56px;
}
@media only screen and (max-width: 767px) {
  a.asg-btn.btn-large,
  button.asg-btn.btn-large {
    height: 52px;
    line-height: 52px;
    font-size: 1.15rem;
  }
}
a.asg-btn.btn-extra-large,
button.asg-btn.btn-extra-large {
  height: 56px;
  line-height: 56px;
  padding: 0 92px;
}
@media only screen and (max-width: 767px) {
  a.asg-btn.btn-extra-large,
  button.asg-btn.btn-extra-large {
    padding: 0 20px;
    height: 52px;
    line-height: 52px;
  }
}
a.asg-btn.btn-xxl,
button.asg-btn.btn-xxl {
  padding: 0 92px;
}
@media only screen and (max-width: 767px) {
  a.asg-btn.btn-xxl,
  button.asg-btn.btn-xxl {
    padding: 0 24px;
  }
}
a.asg-btn.btn-small,
button.asg-btn.btn-small {
  height: 40px;
  line-height: 40px;
}

.as-btn {
  position: relative;
  padding: 1.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #A50034;
  color: #FAFAFB;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.as-btn:hover {
  color: #FAFAFB;
  background-color: #670222;
}

.btn-readmore {
  display: table;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.btn-readmore a {
  width: 1%;
  white-space: nowrap;
  padding-right: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.btn-readmore a:hover {
  color: #670222;
  opacity: 1;
}
.btn-readmore .devider {
  display: table-cell;
  border-top: 2px solid #A50034;
  bottom: -14px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.btn-readmore .devider:after {
  position: absolute;
  left: 0;
  top: -2px;
  content: "";
  height: 2px;
  background: #A50034;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

/*-------------------------------------------------------*/
/* Loader
/*-------------------------------------------------------*/
.wrapper {
  width: 100%;
  height: 100%;
}
.wrapper .loadersec {
  content: "";
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAFAFB;
}
.wrapper .loadersec .loader {
  content: "";
  position: fixed;
  z-index: 100001;
  top: 45%;
  left: 45%;
  height: 175px;
  margin: auto;
  width: 175px;
}
@media only screen and (max-width: 768px) {
  .wrapper .loadersec .loader {
    left: 38%;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper .loadersec .loader {
    left: 28%;
  }
}
.wrapper .loadersec .loader .dot {
  bottom: 0;
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 87.5px;
}
.wrapper .loadersec .loader .dot::before {
  border-radius: 50%;
  content: "";
  height: 87.5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0);
  width: 87.5px;
}
.wrapper .loadersec .loader .dot:nth-child(7n+1) {
  transform: rotate(0deg);
}
.wrapper .loadersec .loader .dot:nth-child(7n+1)::before {
  animation: 0.8s linear 0.1s normal none infinite running load;
  background: #d80044 none repeat scroll 0 0;
}

@keyframes load {
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
/*-------------------------------------------------------*/
/* Header Nav
/*-------------------------------------------------------*/
header {
  background-color: rgba(255, 255, 255, 0.65);
}
@media only screen and (max-width: 768px) {
  header.header-absolute {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
  }
}
@media only screen and (max-width: 767px) {
  header.header-absolute {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
  }
}
header .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  header .navbar {
    padding: 0.85rem 0;
    width: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    animation: smoothScroll 1s forwards;
  }
}
@media only screen and (max-width: 767px) {
  header .navbar {
    padding: 0.85rem 0;
    width: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    animation: smoothScroll 1s forwards;
  }
}
header .navbar.bg-transparent {
  background-color: rgba(0, 0, 0, 0) !important;
}
header .navbar .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transition: box-shadow 0.15s ease-in-out;
}
header .navbar .navbar-toggler svg.text-primary {
  color: #A50034 !important;
}
header .navbar .navbar-toggler svg.text-primary:hover {
  color: #720024 !important;
}
header .navbar .navbar-toggler:hover {
  text-decoration: none;
}
header .navbar .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0;
}
@media (prefers-reduced-motion: reduce) {
  header .navbar .navbar-toggler {
    transition: none;
  }
}
header .navbar .navbar-brand {
  padding-top: 0.275rem;
  padding-bottom: 0.275rem;
  margin-right: 1rem;
  font-size: 1.2rem;
  white-space: nowrap;
}
header .navbar .navbar-brand img {
  margin-bottom: 0;
  min-height: 48px;
}
header .navbar .navbar-brand:hover, header .navbar .navbar-brand:focus {
  text-decoration: none;
}
header .navbar .navbar-nav .nav-item .nav-link {
  padding: 1.4rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #474747;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
  -o-transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
  transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
  position: relative;
}
header .navbar .navbar-nav .nav-item .nav-link:hover, header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #670222;
}
@media only screen and (max-width: 768px) {
  header .navbar .navbar-nav .nav-item .nav-link {
    color: #670222;
    font-size: 1.5rem;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .navbar .navbar-nav .nav-item .nav-link:before {
    height: 2px;
  }
}
@media only screen and (max-width: 767px) {
  header .navbar .navbar-nav .nav-item .nav-link {
    color: #670222;
    padding: 1rem 0.5rem;
    font-size: 1.6rem;
  }
  header .navbar .navbar-nav .nav-item .nav-link:before {
    height: 2px;
  }
}
header .navbar .navbar-nav .nav-item.dropdown {
  position: relative;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 150%;
  transition: all 0.3s ease-in-out;
  display: block;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 992px) {
  header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid transparent;
    border-radius: 6px;
    box-shadow: 0px 13px 26px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.2);
    padding: 20px 10px;
    width: 240px;
  }
}
@media only screen and (max-width: 768px) {
  header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    width: 100%;
  }
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: #3f0014;
  background-color: transparent;
}
header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
@media only screen and (max-width: 768px) {
  header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    position: relative;
    border: none;
    border-top: 2px solid #A50034;
    margin-top: -2px;
    border-radius: 0;
  }
}
header .navbar.fixed-top {
  position: fixed;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: smoothScroll 1s forwards;
}
header .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  header .navbar-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  header .navbar-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
header .offcanvas-navbar {
  width: 100vw !important;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  background-image: radial-gradient(rgba(0, 0, 0, 0) 1px, #FAFAFB 1px);
  -webkit-background-size: 14px 14px;
  background-size: 14px 14px;
}
header .offcanvas-navbar .navbar-nav {
  margin: 0;
}
header .offcanvas-navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  color: #474747;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
  -o-transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
  transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
  position: relative;
  font-size: 1.5rem;
  padding: 1rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .offcanvas-navbar .navbar-nav .nav-item .nav-link:hover, header .offcanvas-navbar .navbar-nav .nav-item .nav-link.active {
  color: #670222;
}
header .offcanvas-navbar .navbar-nav .nav-item .nav-link:hover:before, header .offcanvas-navbar .navbar-nav .nav-item .nav-link.active:before {
  width: 100%;
}
header .offcanvas-navbar .navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  background: #A50034;
  height: 2px;
  z-index: -1;
  border-radius: 0px;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
  -o-transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
  transition: all 0.4s cubic-bezier(0.2, 0.59, 0.21, 0.6);
}
header .offcanvas-navbar .navbar-nav .nav-item.dropdown {
  position: relative;
}
header .offcanvas-navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  position: relative;
  top: 150%;
  transition: all 0.3s ease-in-out;
  display: block;
  opacity: 1;
  visibility: visible;
  width: 100%;
  border: none;
  border-top: 2px solid #A50034;
  border-radius: 0;
}
header .offcanvas-navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}
header .offcanvas-navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: #3f0014;
  background-color: transparent;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-66px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*-------------------------------------------------------*/
/* Footer
/*-------------------------------------------------------*/
.footer {
  position: relative;
  width: 100%;
  background: #1d2027; /* Old browsers */
  background: -moz-linear-gradient(bottom, #1d2027 0%, #2B2829 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1d2027), color-stop(100%, #2B2829)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, #1d2027 0%, #2B2829 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(bottom, #1d2027 0%, #2B2829 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(bottom, #1d2027 0%, #2B2829 100%); /* IE10+ */
  background: linear-gradient(to top, #1d2027 0%, #2B2829 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 ); /* IE6-9 */
  padding: 6rem 0 0;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 2rem;
  }
}
.footer .footer-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.5;
  z-index: 0;
}
.footer .footer-shape img {
  margin: 0;
}
.footer .f-items {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .footer .f-items {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer .f-items {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer .f-items .f-item {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer .f-items .f-item {
    margin-top: 1.15rem;
  }
}
.footer .f-items .f-item.about {
  padding-right: 30px;
}
.footer .f-items .f-item.about img {
  margin-bottom: 30px;
}
.footer .f-items .f-item.about p {
  color: #E3E3E3;
}
.footer .f-items .f-item form {
  position: relative;
  z-index: 1;
  border: 1px solid #e7e7e7;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}
.footer .f-items .f-item form input {
  border: none !important;
  box-shadow: inherit;
  border-radius: 4px;
  min-height: 56px;
  padding-left: 20px;
}
.footer .f-items .f-item form button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 46px;
  padding: 0 20px;
  background: #A50034;
  color: #ffffff;
  font-weight: 700;
  border-radius: 4px;
}
.footer .f-items .f-item .widget-title {
  font-weight: 700;
  text-transform: capitalize;
  color: #FAFAFB;
  margin-bottom: 1.5rem;
}
.footer .f-items .f-item ul {
  padding: 0;
}
.footer .f-items .f-item ul li {
  list-style-type: none;
  margin-top: 1.25rem;
}
.footer .f-items .f-item ul li:first-child {
  margin-top: 0;
}
.footer .f-items .f-item ul li a {
  color: #E3E3E3;
}
.footer .f-items .f-item ul li a:hover {
  color: #ff729e;
}
.footer .f-items .f-item .address ul li {
  margin-top: 15px;
  display: flex;
}
.footer .f-items .f-item .address ul li:first-child {
  margin-top: 0;
}
.footer .f-items .f-item .address ul li .icon {
  padding-right: 15px;
}
.footer .f-items .f-item .address ul li .icon i {
  color: #E3E3E3;
  font-size: 1.85rem;
  position: relative;
  top: 3px;
}
.footer .f-items .footer-widget h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  color: #ffffff;
}
.footer .f-items .footer-widget h2 img {
  margin: 0;
}
.footer .f-items .footer-widget .widget-content p {
  color: #FAFAFB;
}
.footer .footer-bottom {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #1d2027;
}
.footer .footer-bottom .author-info i {
  color: #E02D2D;
}
.footer .footer-bottom .author-info a {
  color: #A50034;
}
.footer .footer-bottom .author-info a:hover {
  color: #E02D2D;
}
.footer .footer-bottom p {
  margin: 0;
  color: #FAFAFB;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom p {
    text-align: center;
  }
}
.footer .footer-bottom p a {
  color: #A50034;
}
.footer .footer-bottom p a:hover {
  color: #670222;
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom p a {
    display: block;
  }
}
.footer .footer-bottom .link {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom .link {
    text-align: center;
  }
}
.footer .footer-bottom .link ul {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom .link ul {
    margin-top: 1rem;
  }
}
.footer .footer-bottom .link ul li {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  margin-left: 15px;
}
.footer .footer-bottom .link ul li a {
  color: #d80044;
}
.footer .footer-bottom .link ul li a:hover {
  color: #670222;
}

/*-------------------------------------------------------*/
/* Home Page Sections
/*-------------------------------------------------------*/
.section-padding {
  padding: 6.5rem 0;
  scroll-margin-top: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 3rem 0;
    scroll-margin-top: 4rem;
  }
}

.heroSec {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background-image: linear-gradient(75deg, #fefefe 52%, #fbf4f7 48%);
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .heroSec {
    padding: 140px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .heroSec {
    padding: 140px 0 40px;
  }
}
.heroSec .shapes .shape {
  position: absolute;
}
.heroSec .shapes .shape.shape-1 {
  width: 86px;
  height: 115px;
  background-color: #A50034;
  top: 0;
  left: 46%;
  transform: skew(18deg);
}
.heroSec .shapes .shape.shape-2 {
  width: 420px;
  height: 310px;
  background-color: #A50034;
  filter: blur(195px);
  border-radius: 50%;
  left: 25px;
  bottom: -180px;
}
.heroSec .shapes .shape.shape-3 {
  width: 28px;
  height: 65px;
  background-color: #A50034;
  bottom: 0;
  left: 52.5%;
  transform: skew(15deg);
}
@media only screen and (max-width: 767px) {
  .heroSec .shapes .shape.shape-3 {
    display: none;
  }
}
.heroSec .shapes .shape.shape-4 {
  width: 230px;
  height: 230px;
  background-color: transparent;
  border: 4px solid rgba(5, 22, 52, 0.161);
  border-radius: 50%;
  bottom: -21%;
  left: 47%;
}
.heroSec__title {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .heroSec__title {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .heroSec__title {
    margin-bottom: 2rem;
  }
}
.heroSec__title p.h6 {
  font-size: 1.25rem !important;
  background: linear-gradient(90deg, #A50034, #474747);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: none;
  font-weight: 700;
  display: inline;
}
.heroSec__title h1 {
  font-size: 3.5rem;
  line-height: 1.25;
  color: #670222;
  font-weight: 700;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .heroSec__title h1 {
    font-size: 2.25rem;
  }
}
.heroSec__img {
  margin-left: 36px;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .heroSec__img {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .heroSec__img {
    margin-left: 0;
  }
}
.heroSec__img img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.heroSec__imgCounter {
  display: flex;
  margin-top: 30px;
  margin-left: 35px;
}
@media only screen and (max-width: 768px) {
  .heroSec__imgCounter {
    margin-left: 0;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .heroSec__imgCounter {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.heroSec__imgCounter .img-counter {
  background: #A50034;
  padding: 32px 35px;
  border-radius: 20px 0 0 20px;
  width: 35%;
}
@media only screen and (max-width: 768px) {
  .heroSec__imgCounter .img-counter {
    padding: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .heroSec__imgCounter .img-counter {
    padding: 1rem;
  }
}
.heroSec__imgCounter .img-counter .counter-only {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .heroSec__imgCounter .img-counter .counter-only {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .heroSec__imgCounter .img-counter .counter-only {
    margin-bottom: 0;
  }
}
.heroSec__imgCounter .img-counter .counter-only h2 {
  color: #FAFAFB;
  font-size: 4rem;
  font-weight: 800;
}
@media only screen and (max-width: 768px) {
  .heroSec__imgCounter .img-counter .counter-only h2 {
    font-size: 6rem;
    line-height: 1;
  }
}
@media only screen and (max-width: 767px) {
  .heroSec__imgCounter .img-counter .counter-only h2 {
    font-size: 3rem;
    line-height: 1;
  }
}
.heroSec__imgCounter .img-counter > span {
  font-size: 22px;
  color: #FAFAFB;
  text-transform: lowercase;
  line-height: 1.63;
}
@media only screen and (max-width: 767px) {
  .heroSec__imgCounter .img-counter > span {
    font-size: 1rem;
  }
}
.heroSec__imgCounter img {
  width: 65%;
  margin: 0;
}
.heroSec__slideshow {
  max-width: 1000px;
  position: relative;
  margin-left: 36px;
  border-radius: 20px;
  /* Caption text */
  /* Number text (1/3 etc) */
  /* Fading animation */
}
@media only screen and (max-width: 768px) {
  .heroSec__slideshow {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .heroSec__slideshow {
    margin-left: 0;
  }
}
.heroSec__slideshow .mySlides {
  display: none;
}
.heroSec__slideshow img {
  vertical-align: middle;
  border-radius: 20px;
}
.heroSec__slideshow .text {
  color: #670222;
  font-size: 15px;
  padding: 8px;
  position: absolute;
  bottom: 32px;
  width: 100%;
  font-weight: 600;
  text-align: center;
  background: rgba(251, 244, 247, 0.85);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media only screen and (max-width: 767px) {
  .heroSec__slideshow .text {
    font-size: 12px;
  }
}
.heroSec__slideshow .numbertext {
  color: #670222;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.heroSec__slideshow .fadeImg {
  animation-name: fade;
  animation-duration: 1.5s;
}

.srvSec {
  background: #ffffff;
}
.srvSec__title {
  margin-bottom: 58px;
}
.srvSec__title--subtitle {
  position: relative;
  text-transform: capitalize;
  color: #A50034;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.87;
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(242, 14, 75, 0.102);
  padding: 1px 25px;
  border-radius: 10px;
}
.srvSec__title h2 {
  font-size: 4rem;
  text-transform: none;
  margin: auto;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .srvSec__title h2 {
    font-size: 2.5rem;
  }
}
.srvSec__service {
  background: #fbf4f7;
  border-radius: 20px;
  transition: 0.4s;
  overflow: hidden;
}
.srvSec__service:before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  background: #A50034;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.srvSec__service:hover {
  transform: translateY(-5px);
}
.srvSec__service:hover:before {
  opacity: 0;
  visibility: visible;
  height: 100%;
}
.srvSec__service .img {
  position: relative;
}
.srvSec__service .img img {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 0;
}
.srvSec__service .content {
  padding: 1rem 1.5rem;
  z-index: 3;
  position: relative;
}
.srvSec__service .content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: none;
  transition: 0.4s;
  font-weight: 800;
}
.srvSec__service .content p {
  font-size: 1rem;
  font-weight: 500;
}
.srvSec__service .content .btnLink {
  position: relative;
  top: 0;
  margin-left: 10px;
  transition: 0.4s;
  background: transparent;
  color: #474747;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  z-index: 3;
  text-transform: capitalize;
  overflow: hidden;
}
.srvSec__service .content .btnLink i {
  color: #A50034;
}
.srvSec__service .content .btnLink:hover i {
  transform: translateX(2px);
}

.abtSec {
  background: #fbf4f7;
}
.abtSec__image {
  position: relative;
}
.abtSec__image .experience-bar {
  background-color: #A50034;
  position: absolute;
  padding: 30px 40px;
  top: 200px;
  right: 160px;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .abtSec__image .experience-bar {
    padding: 15px 25px 18px;
    left: 28px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.abtSec__image .experience-bar .counter {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.abtSec__image .experience-bar .counter h4 {
  font-size: 4rem;
  color: #ffffff;
  line-height: 1.3;
  font-weight: 800;
}
.abtSec__image .experience-bar .counter span {
  font-size: 52px;
  font-weight: 700;
  font-weight: 800;
  color: #ffffff;
}
.abtSec__image .experience-bar span {
  font-size: 20px;
  color: #ffffff !important;
  font-weight: 800;
}
.abtSec__image .abtImg .image-1 {
  width: 440px;
  height: 470px;
  border-radius: 8px;
  object-fit: cover;
}
.abtSec__image .abtImg .image-2 {
  margin-left: 51%;
  margin-top: -30%;
  border: 10px solid #fbf4f7;
  border-radius: 20px;
  width: 285px;
}
@media only screen and (max-width: 767px) {
  .abtSec__image .abtImg .image-2 {
    margin-left: 0;
  }
}
.abtSec__title {
  margin-bottom: 58px;
}
.abtSec__title--subtitle {
  position: relative;
  text-transform: capitalize;
  color: #A50034;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.87;
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(242, 14, 75, 0.102);
  padding: 1px 25px;
  border-radius: 10px;
}
.abtSec__title h2 {
  font-size: 4rem;
  text-transform: none;
  margin: auto;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .abtSec__title h2 {
    font-size: 2.5rem;
  }
}
.abtSec .mva {
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 1.4rem;
}
.abtSec .mva p {
  min-height: 230px;
  font-size: 1rem;
}

/*# sourceMappingURL=style.css.map */
