@import url(./global.css);
body {
  scroll-snap-type: y proximity;
  scroll-snap-stop: always;
}
body .floaters {
  transition: 200ms ease;
  display: flex;
  gap: 0.5rem;
  position: fixed;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  bottom: 0;
  top: 0;
  left: 0rem;
  z-index: 100;
  margin: auto;
  padding: 1rem 0.25rem 1rem 0rem;
  border-radius: 5px;
  background-color: white;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
  width: -moz-fit-content;
  width: fit-content;
}
body .floaters .activator {
  position: absolute;
  margin: auto;
  right: -1rem;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
}
body .floaters .activator i {
  width: -moz-fit-content;
  width: fit-content;
}
body .floaters .phone {
  transform: rotateY("90deg");
}
body .floaters .floating {
  border-radius: 50%;
  background: white;
  height: 2.25rem;
  width: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 200ms ease-in-out;
  color: black;
  text-decoration: none;
}
body .floaters .floating:hover {
  background: rgb(207, 207, 207);
  color: black;
  transition: 200ms ease-in-out;
}
body .floaters .floating img {
  width: 1.5rem;
  height: 1.5rem;
}
body .floaters .floating i {
  width: -moz-fit-content;
  width: fit-content;
}
body .floaters .whatsapp img {
  scale: 1.3;
}
body .floaters .whatsapp i {
  scale: 1.5;
}
body .floaters .phone img {
  scale: 1.3;
}
body .floaters .phone i {
  transform: rotateY(180deg);
}

section,
header {
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}

section,
header,
footer {
  scroll-snap-align: start;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fcc767;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #e29c1d;
}

.navy_text {
  color: #091f66;
  text-shadow: 1px 0 var(--palette-secondary-orange), -1px 0 var(--palette-secondary-orange), 0 1px var(--palette-secondary-orange), 0 -1px var(--palette-secondary-orange), 1px 1px var(--palette-secondary-orange), -1px -1px var(--palette-secondary-orange), 1px -1px var(--palette-secondary-orange), -1px 1px var(--palette-secondary-orange);
}

header {
  justify-content: space-between;
  height: 100vh;
  width: 100%;
  background: linear-gradient(90deg, #f5f5f5 60%, #ffa106 40%);
}
header .header_wrapper {
  display: flex;
  justify-content: space-around;
  height: 85%;
  width: 100%;
}
header .yellow_text {
  color: #fd9609;
}
header .roboto_slab {
  font-family: var(--font-primary-header);
  text-transform: uppercase;
}
header .roboto {
  font-family: var(--font-primary-subheader);
}
header .inter {
  font-family: var(--font-primary-text);
}
header .header_left {
  align-self: center;
  width: 30%;
}
header .header_left p {
  font-family: var(--font-primary-text);
  line-height: 28px;
  letter-spacing: 0.54px;
}
header .header_left .buttons {
  display: flex;
  gap: 30px;
}
header .header_left .buttons a {
  text-decoration: none;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-tap-highlight-color: transparent;
}
header .header_left .buttons a button {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 32px;
  font-size: 16px;
  font-family: var(--font-primary-text);
  line-height: 28px;
  letter-spacing: 0.48px;
  gap: 1.8rem;
  cursor: pointer;
}
header .header_left .buttons a button i {
  width: -moz-fit-content;
  width: fit-content;
}
header .header_left .buttons a button span {
  width: -moz-max-content;
  width: max-content;
}
header .header_left .buttons a .enquire {
  border: 1px solid #000;
  background-color: white;
}
header .header_left .buttons a .enquire:hover {
  background-color: #d6d6d6;
  color: black;
  transition: 200ms ease-in-out;
}
header .header_left .buttons a .learn_more {
  background-color: #000;
  color: white;
  border: 1px solid #000;
}
header .header_left .buttons a .learn_more:hover {
  background-color: #242424;
  color: white;
  transition: 200ms ease-in-out;
}
header .carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  justify-content: center;
  align-self: center;
  height: 85vh;
  width: 48vw;
  padding: 50px;
  border-radius: 15px;
  background: rgba(233, 233, 233, 0.2);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
header .carousel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
  padding: 80px;
}
header .carousel .slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
  background: url(<path-to-image>), lightgray 50%/cover no-repeat;
}
header .carousel .slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}
header .carousel .carousel-button {
  width: 2.5rem;
  height: auto;
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff9900;
  cursor: pointer;
  line-height: 1ch;
  align-items: center;
  padding: 0.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
}
header .carousel .carousel-button:hover,
header .carousel .carousel-button.prev {
  left: 1rem;
}
header .carousel .carousel-button.next {
  right: 1rem;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4.5rem;
  background-color: var(--palette-primary-blue);
}
.navbar .hamburger {
  display: none;
}
.navbar .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}
.navbar .nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.5rem;
}
.navbar .nav-menu .nav-item {
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
}
.navbar .nav-menu .nav-item .nav-link {
  color: white;
  font-size: 16px;
  font-family: var(--font-primary-menu);
  font-weight: 500;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
}
.navbar .nav-menu .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.9px;
  background-color: #f5c66f;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
.navbar .nav-menu .nav-item .nav-link:hover {
  color: #494949;
}
.navbar .nav-menu .nav-item .nav-link:hover::after {
  width: 100%;
  left: 0;
}
.navbar .nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.navbar .nav-logo img {
  width: 43.154px;
  height: 44px;
}
.navbar .nav-logo p {
  color: white;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0.02rem 0.3rem;
}
.navbar .nav-logo .demo {
  font-size: 12px;
}
.navbar .nav-logo span {
  display: block;
  width: 45px;
  height: 2px;
  background: #fd8106;
  margin: 0 0 0 5px;
}

#aboutus {
  display: flex;
  align-items: center;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
#aboutus .wrapper {
  margin: auto;
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10%;
}
#aboutus .wrapper .about-image1 {
  border: 5px solid #f8b508;
  border-radius: 50%;
  max-height: 450px;
  max-width: 450px;
}
#aboutus .wrapper .about-image1 img {
  padding: 3rem;
}
#aboutus .wrapper .about-image {
  position: relative;
  border: 5px solid #f8b508;
  border-radius: 50%;
  max-height: 515px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 515px;
}
#aboutus .wrapper .about-image .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 505px;
  border-radius: 50%;
}
#aboutus .wrapper .about-image .image-wrapper img {
  position: relative;
  z-index: 5;
  max-height: 505px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100vh;
  width: 100vw;
}
#aboutus .wrapper .about-image::after {
  content: "";
  border-radius: 50%;
  background-color: rgba(250, 182, 10, 0.4);
  position: absolute;
  width: 75%;
  margin: auto;
  height: 75%;
}
#aboutus .wrapper .content h1 {
  margin: 1rem 0;
}
#aboutus .wrapper .content p {
  color: #6c6c6c;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.facilities {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.facilities .wrapper {
  width: 90%;
  margin: auto;
  padding: 3rem 0;
}
.facilities .wrapper .flex {
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.facilities .wrapper .flex::before {
  --blur-size: 10rem;
  content: "";
  width: var(--blur-size);
  background-color: var(--palette-primary-orange);
  opacity: 0.35;
  height: var(--blur-size);
  border-radius: 50%;
  left: 20%;
  top: 50%;
  position: absolute;
  filter: blur(75px);
}
.facilities .wrapper h1 {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1.5rem;
}
.facilities .wrapper h3 {
  color: rgb(153, 153, 153);
  font-weight: 300;
  margin: 1.25rem 0;
}
.facilities .wrapper .facilities_img {
  width: 70%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.facilities .wrapper .facilities_img img {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 10;
  transition: 200ms ease;
}
.facilities .wrapper .facilities_img img:hover {
  filter: drop-shadow(6px 10px 1px rgba(0, 0, 0, 0.45));
}
.facilities .wrapper ul {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
  justify-content: start;
  align-content: center;
  gap: 1rem;
}
.facilities .wrapper ul li {
  position: relative;
  z-index: 10;
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  flex: 0 0 45%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: var(--font-primary-text);
  font-size: 16px;
  display: flex;
  align-items: center;
}
.facilities .wrapper ul li span {
  background-color: #ffcb8e;
  border: 1px solid black;
  border-radius: 50%;
  padding: 5px;
  margin-right: 10px;
}
.facilities .wrapper ul li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact {
  background: #f5f5f5;
  display: flex;
  justify-content: space-around;
  color: white;
  display: flex;
  align-items: center;
}
.contact .contact-card {
  position: relative;
  background: linear-gradient(270deg, #f1bf62 0%, #ff912e 100%);
  padding: 5rem 5rem;
  width: 75%;
  box-shadow: 0px 4px 20px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.contact .contact-card .wrapper {
  display: flex;
  gap: 7rem;
  align-items: center;
}
.contact .contact-card .wrapper * {
  z-index: 10;
}
.contact .contact-card .contact-rings {
  position: absolute;
  right: -50%;
  top: -25%;
  opacity: 0.3;
}
.contact .contact-header {
  font-family: var(--font-primary-header);
  color: white;
  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  text-align: left;
}
.contact .contact1 {
  width: -moz-fit-content;
  width: fit-content;
}
.contact .contact1 .contact-content {
  color: white;
  font-size: 14px;
  font-family: Inter;
  line-height: 28px;
  letter-spacing: 0.48px;
  text-align: left;
  max-width: 32ch;
  margin: 1rem 0;
}
.contact .contact1 .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.75rem;
}
.contact .contact1 .contact-info-wrapper .contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
}
.contact .contact1 .contact-info-wrapper .contact-info i {
  border-radius: 50%;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem;
  color: white;
}
.contact .contact1 .iframe {
  overflow: hidden;
  height: 200px;
  width: 350px;
  border: 3px solid white;
  box-shadow: 0px 4px 20px 10px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
}
.contact .contact1 .iframe iframe {
  height: 205px;
  width: 350px;
}
.contact .contact2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
}
.contact .contact2 form {
  background-color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0px 4px 20px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.contact .contact2 form .input-box {
  width: auto;
  font-size: 12px;
  border-radius: 5px;
  padding: 0.5rem 1rem 0.5rem 1rem;
  outline: none;
  border: 1px solid #a3a3a3;
}
.contact .contact2 form .input-textarea {
  width: auto;
  resize: none;
  font-size: 12px;
  border-radius: 5px;
  border: 1px solid #a3a3a3;
  outline: none;
  padding: 0.5rem 1rem 0.5rem 1rem;
  outline: none;
}
.contact .contact2 form .form-submit {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  background: #f2bb5e;
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
  outline: none;
  border: 1px solid #f2bb5e;
  padding: 0.5rem 1.5rem;
  transition: 100ms ease;
}
.contact .contact2 form .form-submit:focus {
  outline: 1px solid black;
}
.contact .contact2 form .form-submit:hover {
  background: #d19b3e;
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
  outline: none;
  border: 1px solid #f2bb5e;
  padding: 0.5rem 1.5rem;
}
.contact .contact2 form .error-alert {
  color: red;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 10px;
}

@media only screen and (max-width: 821px) {
  body {
    scroll-snap-type: none;
  }
  section,
  header,
  footer {
    scroll-snap-align: none;
  }
  section {
    height: -moz-fit-content;
    height: fit-content;
    min-height: 100vh;
  }
  .navbar {
    position: relative;
    z-index: 100;
    padding: 1rem 2rem;
    background-color: var(--palette-primary-blue);
  }
  .navbar .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    flex-direction: column;
    background-color: var(--palette-primary-blue);
    width: 100%;
    align-items: flex-start;
    transition: 0.3s;
    padding: 0;
    height: 100%;
    justify-content: flex-start;
    gap: 0;
  }
  .navbar .nav-menu .nav-item {
    margin: 2rem 2.5rem;
  }
  .navbar .nav-menu .nav-item .nav-link {
    font-size: 1rem;
  }
  .navbar .nav-menu.active {
    top: 4.5rem;
  }
  .navbar .hamburger {
    display: block;
    width: 10%;
    cursor: pointer;
  }
  .navbar .hamburger .bar {
    background-color: white;
  }
  .navbar .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .contact .contact-card {
    width: 95%;
    padding: 4rem;
    background: linear-gradient(0deg, #f1bf62 0%, #ff912e 100%) !important;
  }
  .contact .contact-card .contact-rings {
    position: absolute;
    top: 20%;
    width: 850px;
    opacity: 0.45;
  }
  .contact .contact-card .wrapper {
    flex-direction: column;
    justify-content: space-around;
    gap: 2rem;
  }
  .contact .contact-card .wrapper .contact1 {
    gap: 0.75rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .contact .contact-card .wrapper .contact1 .iframe {
    width: 100%;
    height: 250px;
  }
  .contact .contact-card .wrapper .contact1 .iframe iframe {
    width: 100%;
    height: 250px;
  }
  .contact .contact-card .wrapper .contact1 .contact-header {
    text-align: center;
  }
  .contact .contact-card .wrapper .contact1 .contact-content {
    text-align: center;
    margin: auto;
  }
  #aboutus {
    padding: 1rem 0;
  }
  #aboutus .wrapper {
    flex-wrap: wrap-reverse;
    gap: 3rem;
  }
  #aboutus .wrapper .content h1 {
    text-align: center;
  }
  #aboutus .wrapper .content p {
    text-align: justify;
  }
  #aboutus .wrapper .about-image {
    margin: auto;
    --image-size: 95vw;
    width: var(--image-size);
    height: var(--image-size);
  }
  #aboutus .wrapper .about-image .image-wrapper {
    width: var(--image-size);
    height: var(--image-size);
  }
}
@media screen and (max-width: 900px) {
  header {
    height: -moz-fit-content;
    height: fit-content;
    background: none;
  }
  .header_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    background: none;
  }
  .header_wrapper .header_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .header_wrapper .header_left h1 {
    width: 16ch;
    font-size: 8vw;
    text-align: center;
    font-weight: 700;
    margin: 0.5rem 0;
  }
  .header_wrapper .header_left h3 {
    color: var(--palette-primary-grey);
    font-size: 0.8em;
  }
  .header_wrapper .header_left h3,
  .header_wrapper .header_left p {
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  .header_wrapper .header_left p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.48px;
    padding: 2rem;
  }
  .header_wrapper .header_left .buttons {
    width: -moz-fit-content;
    width: fit-content;
    gap: 20px;
  }
  .header_wrapper .header_left .buttons a button {
    padding: 10px 32px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.42px;
    pointer-events: none;
  }
  .header_wrapper .header_left .smudge_1 {
    position: absolute;
    right: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 8rem;
    background: rgba(0, 157, 206, 0.4);
    filter: blur(65px);
  }
  .header_wrapper .header_left .smudge_2 {
    position: absolute;
    top: 20rem;
    left: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 8rem;
    background: rgba(145, 250, 168, 0.4);
    filter: blur(65px);
  }
  .header_wrapper .carousel {
    width: 100%;
    height: 50vh;
    padding: 0;
    background: linear-gradient(90deg, #f5f5f5 40%, #ffa106 60%);
    margin-block: 4rem;
    border-radius: 0;
  }
  .header_wrapper .carousel .slide {
    padding: 2.5rem;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .facilities .flex {
    flex-direction: column;
  }
  .facilities .flex h1 {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 512px) {
  .contact .contact-card {
    border-radius: 0;
    width: 100%;
    padding: 3rem 1.5rem;
    background: linear-gradient(0deg, #f1bf62 0%, #ff912e 100%) !important;
  }
  .contact .contact-card .wrapper {
    flex-direction: column;
    justify-content: space-around;
    gap: 2rem;
    padding: 1rem;
  }
  .contact .contact-card .wrapper .contact1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0;
    gap: 1.5rem;
  }
  .contact .contact-card .wrapper .contact1 .iframe {
    width: 100%;
    height: 250px;
  }
  .contact .contact-card .wrapper .contact1 .iframe iframe {
    width: 100%;
    height: 250px;
  }
  .contact .contact-card .wrapper .contact1 .contact-header {
    font-size: 2.5em;
    text-align: left;
  }
  .contact .contact-card .wrapper .contact1 .contact-content {
    width: 100%;
    font-size: 0.75em;
    text-align: left;
    margin: 1rem 0;
  }
  #aboutus .about-image {
    margin: auto;
    --image-size: 95vw;
    width: var(--image-size);
    height: var(--image-size);
  }
  #aboutus .about-image .image-wrapper {
    width: var(--image-size);
    height: var(--image-size);
  }
  .facilities .wrapper .flex h1 {
    margin: auto;
    margin-bottom: 3rem;
    text-align: center;
  }
  .facilities .wrapper .flex h3 {
    font-size: 1em;
  }
  .facilities .wrapper .flex ul {
    gap: 2rem 0rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .facilities .wrapper .flex ul li {
    flex: 1 0 45%;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    background: transparent;
  }
  .facilities .wrapper .facilities_img {
    width: 100%;
    height: 100%;
  }
  .facilities .wrapper .facilities_img img {
    width: 100%;
    height: 100%;
  }
}
.footer {
  background-color: var(--palette-primary-blue);
  padding: 70px 0 10px 0;
  margin-top: 2rem;
}
.footer .inner-container {
  max-width: 1170px;
  margin: auto;
}
.footer .inner-container .row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.footer .inner-container .row .footer-col {
  width: 45%;
  padding: 0 15px;
}
.footer .inner-container .row .footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer .inner-container .row .footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--palette-primary-orange);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer .inner-container .row .footer-col ul {
  list-style: none;
}
.footer .inner-container .row .footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer .inner-container .row .footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer .inner-container .row .footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer .inner-container .row .footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer .inner-container .row .footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}
.footer .inner-container .row .footer-col .nav-logo {
  display: flex;
  flex-direction: row;
  margin: 0 0 2rem 0;
  align-items: center;
}
.footer .inner-container .row .footer-col .nav-logo img {
  width: 43.154px;
  height: 44px;
}
.footer .inner-container .row .footer-col .nav-logo p {
  color: #ffffff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0.02rem 0.3rem;
}
.footer .inner-container .row .footer-col .nav-logo .demo {
  font-size: 12px;
}
.footer .inner-container .row .footer-col .nav-logo span {
  display: block;
  width: 45px;
  height: 2px;
  background: #fd8106;
  margin: 0 0 0 5px;
}
.footer p.copyright-footer {
  text-align: center;
  padding: 10px 0 5px 0;
}
.footer .footer-hr {
  display: block;
  margin: 60px 0px 20px;
  width: 100%;
  height: 0.1px;
  z-index: 10;
  background-color: #ffffff;
}
.footer .copyright-footer {
  color: #ffffff;
  font-size: 0.8rem;
}

/*responsive*/
@media only screen and (max-width: 767px) {
  .footer .inner-container .row .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 574px) {
  .footer .inner-container .row .footer-col {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */