:root {
  --white-color:                  #ffffff;
  --primary-color:                #0054a7;
  --secondary-color:              #4ad871;
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;
  --featured-border-color:        #0054a7;

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);
    margin: 0;
    padding: 0;
}

/*---------------------------------------
  CORE LAYOUT SYSTEM
-----------------------------------------*/

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
  align-items: center;
}

.flex-end {
  justify-content: flex-end;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Auto margins for centering */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 10px 0;
}

.avatar-image-large {
  width: 150px;
  height: 150px;
}


/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
	background-color: var(--primary-color);
}

.custom-link:hover {
	background-color: var(--secondary-color);
}


/*---------------------------------------
  NAVBAR LAYOUT
-----------------------------------------*/
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  border-radius: var(--border-radius-small);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu {
  display: none;
}

@media (max-width: 991px) {
  .navbar-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .navbar-menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .mobile-menu {
    display: none;
  }
}

/*---------------------------------------
  HERO LAYOUT
-----------------------------------------*/
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 22;
  top: 70px;
}

.hero-content h2 {
  margin: 1.5rem 0;
}

.hero-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    top: 0;
    margin-bottom: 120px;
  }
}

/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

@media (max-width: 991px) {
  .sticky-wrapper {
    position: relative !important;
  }

  .is-sticky {
    position: relative !important;
  }
}

.navbar-brand .light {
  opacity: 1;
  display: block;
}
.navbar-brand .dark { 
  opacity: 0;
  display: none;
}

.is-sticky .navbar-brand .light {
  opacity: 0;
  display: none;
}
.is-sticky .navbar-brand .dark {
  opacity: 1;
  display: block;
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-menu .nav-link {
  color: var(--p-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}
.navbar-brand img {
  max-width: 300px;
  height: auto;
}
.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-width: 150px;
  }
}

.navbar-expand-lg .navbar-menu .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-menu .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-menu .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-menu .nav-link.active::after,
.navbar-menu .nav-link:hover::after {
  background: var(--secondary-color);
}

.navbar-menu .nav-link.active,
.navbar-menu .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

@media  screen and (min-width: 991px) {
  .hero {
    height: 40vh;
  }
}

.hero-title,
.hero h2 {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
}

.hero-title {
	font-size: 44px;
}

.hero h2 {
	font-size: 38px;
}

.hero-text {
  position: relative;
  z-index: 22;
  top: 70px;
}

.hero-image-wrap {
  background: var(--white-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 22;
  top: 0;
  width: 100%;
  min-width: 550px;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}

@keyframes slideLeft {
  0% {
    transform: translateX(-300px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300px);
  }
}

@keyframes slideVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-80px);
  }
}

.hero svg path {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.hero svg path.path-1 {
  opacity: 60%;
  animation-duration: 18s;
  animation-name: slideLeft;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero svg path.path-2 {
  opacity: 50%;
  animation-duration: 13s;
  animation-name: slideRight;
}

.hero svg path.path-3 {
  animation-name: slideVertical, slideRight;
  animation-duration: 10s, 7s;
}

.hero svg path.path-4 {
  animation-name: slideVertical, slideLeft;
  animation-duration: 13s, 3s;
}

/*---------------------------------------
  SECTIONS LAYOUT
-----------------------------------------*/
main > section {
  width: 100%;
  padding: 3rem 0;
}

main> section > h2,
main>section > article {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

main>section > h2 {
  margin-top: 3rem 0;
}

main>section>article>section>h2 {
  margin-top: 0;
}

main>section article > section > p {
  margin: 0 0 2rem 0;
}

/*---------------------------------------
  SECTIONS ALTERNATING BACKGROUND
-----------------------------------------*/
main > section:nth-child(even) {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/*---------------------------------------
  SECTION SPECIFIC GRIDS
-----------------------------------------*/

/* About Work Section */
section.about-work article {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

section.about-work aside {
  flex: 0 0 300px;
}

section.about-work aside figure {
  margin: 0;
}

section.about-work aside img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-medium);
}

/* About Me Section */
section.about-me article {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

section.about-me aside {
  flex: 0 0 300px;
}

section.about-me aside figure {
  margin: 0;
}

section.about-me aside img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-medium);
}

/* Clients Section */
section.clients article.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem 4rem;
  justify-content: center;
  align-items: center;
}

section.clients article.grid img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  section.clients article.grid {
    gap: 2rem;
  }

  section.clients article.grid img {
    max-width: 160px;
  }
}

@media (max-width: 640px) {
  section.clients article.grid {
    gap: 1.5rem;
  }

  section.clients article.grid img {
    max-width: 140px;
  }
}

/* Services Section */
section.services > article.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

section.services > article.grid > article {
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  min-width: 280px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  box-sizing: border-box;
}

section.services>article.grid>article h3 {
  margin: 2rem 0 1rem 0;
}

section.services>article.grid>article > aside {
  position: absolute;
  right: -5%;
  bottom: -10%;
  opacity: 25%;
  display: block;
  transform: rotate(-20deg);
  z-index: -1;
}
section.services>article.grid>article>aside > i {
  font-size: 14rem;
  color: var(--secondary-color);
}

section.services article.grid>article:hover > aside {
    color: var(--primary-color);
}

section.services article.grid > article:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  transform: translateY(-5px);
}

section.services article.grid > article header {
  margin: 0;
}

section.services article.grid > article p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Projects Section */
section.projects article.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

section.projects article.grid > article {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  transition: all 0.3s;
  box-sizing: border-box;
}

section.projects article.grid > article:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  transform: translateY(-5px);
}

section.projects article.grid > article header {
  padding: 1.5rem;
  background: var(--white-color);
}

section.projects article.grid > article .projects-tag {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-small);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

section.projects article.grid > article .projects-title {
  margin: 0;
  font-size: 1.25rem;
}

section.projects article.grid > article img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Section */
section.contact article.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

section.contact article.grid > aside,
section.contact article.grid > article {
  flex: 1 1 calc(50% - 1.5rem);
  min-width: 280px;
  box-sizing: border-box;
}

section.contact .site-footer-title {
  display: block;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

section.contact .site-footer-title:first-child {
  margin-top: 0;
}

section.contact .footer-menu {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  section.about-work article,
  section.about-me article {
    flex-direction: column;
  }

  section.about-work aside,
  section.about-me aside {
    flex: 0 0 auto;
    width: 100%;
  }

  section.services article.grid > article {
    flex: 1 1 100%;
    max-width: 100%;
  }

  section.projects article.grid > article {
    flex: 1 1 calc(50% - 1rem);
  }

  section.contact article.grid {
    flex-direction: column;
  }

  section.contact .contact-sidebar {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  section.projects article.grid > article {
    flex: 1 1 100%;
  }
}

/*---------------------------------------
  VIDEO MODAL
-----------------------------------------*/
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 1200px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white-color);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.video-modal-close:hover,
.video-modal-close:focus {
  color: var(--secondary-color);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: var(--dark-color);
  border-radius: var(--border-radius-medium);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-medium);
}

.soundcloud-container {
  background: var(--dark-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.soundcloud-container iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu > li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu>li>span, .footer-menu>li>a {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero {
    padding: 100px 0;
  }

  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }

  .hero-image {
    min-width: 650px;
  }
  
  .hero-title,
	.hero h2 {
	  font-size: var(--h2-font-size);
	}
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: transparent;
  }

  .is-sticky .navbar .container {
    background: var(--white-color);
  }

  .navbar-brand .light {
    opacity: 1;
    display: block;
  }
  .navbar-brand .dark {
    opacity: 0;
    display: none;
  }

  .is-sticky .navbar-brand .light {
    opacity: 0;
    display: none;
  }
  .is-sticky .navbar-brand .dark {
    opacity: 1;
    display: block;
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--white-color);
  }

  .is-sticky .navbar-brand,
  .is-sticky .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-menu .nav-link {
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-menu .nav-link {
    color: var(--white-color);
    padding: 10px 15px;
  }

  .is-sticky .navbar-menu .nav-link {
    color: var(--p-color);
  }

  .navbar-menu .nav-link::after {
    bottom: 3px;
  }

  .hero {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .hero-text {
    top: 0;
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 0;
    margin-left: 0;
  }
    .navbar-container { 
      padding-left: 0;
      padding-right: 0;
    }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

    .hero {
      padding-top: 200px;
      padding-bottom: 0;
    }
  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }

  .hero-title {
    font-size: 28px;
    padding: 6px 18px;
  }

  .hero h2 {
    font-size: 22px;
    padding: 6px 18px;
  }
}

