:root {

  /**
   * colors
   */

  --teal: #008080;
  --teal: #008080;
  --sonic-silver: hsl(0, 0%, 44%);
  --eerie-black: hsl(0, 0%, 9%);
  /* --ocean-green: #008080; */
  --gold: #FFD700;
  --cultured: hsl(0, 0%, 96%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);

  /**
   * typography
   */

  --ff-jost: "Jost", sans-serif;

  --fs-1: 2.5rem;
  --fs-2: 1.75rem;
  --fs-3: 1.625rem;
  --fs-4: 1.5rem;
  --fs-5: 1.375rem;
  --fs-6: 1.25rem;
  --fs-7: 1.125rem;
  --fs-8: 0.938rem;
  --fs-9: 0.875rem;
  --fs-10: 0.813rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.75s ease;
  --cubic-out: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-in: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * spacing
   */

  --section-padding: 60px;

}

/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


a {
  text-decoration: none;
}



.container .logo img {
  height: 120px;
  width: 120px;
}


html {
  font-family: var(--ff-jost);
  scroll-behavior: smooth;
}





/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header-search {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  width: 100%;
  /* height: 120px; */
  /* padding-block: 10px; */
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  position: fixed;
  box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-open-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav-open-btn span {
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: var(--transition-1);
}

.nav-open-btn span:nth-child(2) {
  transform: scaleX(0.5);
  transform-origin: right;
}

.nav-open-btn:is(:hover, :focus) span:nth-child(2) {
  transform: scaleX(1);
}


.header-contacts {
  display: flex;
  justify-content: space-around;
  font-size: var(--fs-7);
  font-weight: 400;
  padding-block: 20px;
  color: var(--eerie-black);
}

.header-contacts a {
  color: var(--eerie-black);
}

.header-contacts a span {
  text-justify: middle;
  font-size: 24px;
}


.header-actions {
  background: var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5px;
  padding-block: 16px 10px;
  box-shadow: 0 -2px 20px hsla(0, 0%, 0%, 0.1);
  z-index: 1;
}

.header-action-btn {
  position: relative;
  width: 50px;
  text-align: center;
}

.header-action-btn ion-icon {
  margin-inline: auto;
  font-size: 22px;
  margin-bottom: 3px;
}

.header-action-label {
  color: var(--sonic-silver);
  font-size: var(--fs-10);
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) .header-action-label {
  color: var(--eerie-black);
}

.header-action-btn .btn-badge {
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--background, var(--eerie-black));
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  line-height: 0;
  font-size: 13px;
  color: var(--white);
  border-radius: 50%;
}

.header-action-btn .btn-badge.green {
  --background: var(--teal);
}

.navbar {
  background: var(--white);
  position: fixed;
  top: 0;
  right: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
}

.navbar.active {
  visibility: visible;
  transform: translateX(-300px);
  transition: 0.5s var(--cubic-in);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.nav-close-btn ion-icon {
  font-size: 23px;
}

.navbar-link {
  padding-block: 10px;
  color: var(--eerie-black);
}

.navbar-list>li:not(:last-child) {
  border-bottom: 1px solid var(--cultured);
}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
  z-index: 2;
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}

.navbar-list li a::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background-color: teal;
  transform: scale(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-list li a:hover::after {
  transform: scale(1);
}

/*-----------------------------------*\
 * #slide home
\*-----------------------------------*/

.carousel-container {
  margin-top: 120px;
}

.carousel {
  display: block;
  position: relative;
  
  height: 95vh;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.carousel * {
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.carousel input {
  display: none; 
}

.slide { 
  display: block; 
}

.slide-image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  transition: all .7s ease-in-out;
}   

.slide-image img {
  object-fit: cover;
  width: auto;
  min-width: 100%;
  height: 100%;
}

.slide-image .slide-content {
  position: absolute;
  top: 30%;
  right: 50%;
  text-align: left;
  color: #fff; /* Text color */
  /* background-color: teal;  */
  padding: 20px;
  margin-left: 60px;
  border-radius: 5px;
  max-width: 80%;
}

.slide-content h2 {
  font-size: 60px; /* Adjust the font size */
  margin-bottom: 10px;
  color: white; /* Text color */
}

.slide-content p {
  font-size: 24px; /* Adjust the font size */
  margin-bottom: 20px;
  color: white; /* Text color */
}

.slide-content button {
  padding: 15px 30px;
  background-color: gold; /* Button background color */
  color: white; /* Button text color */
  border: none;
  border-radius: 5px;
  font-size: 20px; /* Adjust the font size */
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}



.carousel-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  font-size: 100px;
  line-height: 600px;
  color: black;
}

.carousel-controls label {
  display: none;
  position: absolute;
  padding: 0 20px;
  opacity: 0;
  transition: opacity .2s;
  cursor: pointer;
}

.slide-image:hover + .carousel-controls label{
  opacity: 0.5;
}

.carousel-controls label:hover {
  opacity: 1;
}

.prev-slide {
  width: 10%;
  text-align: left;
  left: 0;
}

.next-slide {
  width: 10%;
  text-align: right;
  right: 0;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 999;
  text-align: center;
}

.carousel-dot {
  display: inline-block;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
  opacity: 0.5;
  margin: 10px;
}

input:checked + .slide .slide-image {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-in-out;
}

input:checked + .slide .carousel-controls label {
   display: block; 
}

input#img-1:checked ~ .carousel-dots label#img-dot-1,
input#img-2:checked ~ .carousel-dots label#img-dot-2,
input#img-3:checked ~ .carousel-dots label#img-dot-3,
input#img-4:checked ~ .carousel-dots label#img-dot-4,
input#img-5:checked ~ .carousel-dots label#img-dot-5,
input#img-6:checked ~ .carousel-dots label#img-dot-6 {
opacity: 1;
}




/*-----------------------------------*\
 * #SERVICE
\*-----------------------------------*/

.service {
  padding-block: 45px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 6px 6px;
  gap: 40px;
}

.service-item {
  max-width: 235px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 7px 4px;
  gap: 10px;
  transition: all .2s ease-in-out;
}

.service-item:hover {
  background-color: #ffd70096;
  transform: scale(1.2);
  transition: all .2s ease-in-out;
  /* padding: 6px 6px; */
}

.service-item-icon {
  width: 45px;
}

.service-item-icon img {
  margin-inline: auto;
}

.service-item-title {
  color: var(--eerie-black);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
}

.service-item-text {
  color: var(--sonic-silver);
  font-size: var(--fs-10);
  font-weight: var(--fw-500);
}



/*-----------------------------------*\
 * #Popular Categories
\*-----------------------------------*/


/* styling for the Categories section */
.popular-category {
  padding: 20px;
  width: 70%;
  margin: 0 auto;
}

.popular-category h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: var(--fw-600);
  color: var(--black);
  padding: 20px;
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.category-row-1 {
  display: flex;
  flex-direction: row;
}
.category-row-2 {
  display: flex;
  flex-direction: row;
}

.category-box {
  position: relative;
  width: 100%;
  /* height: 100%; */
  height: 200px;
  background-color: #f0f0f0;
  border-radius: 5px;
  margin: 10px;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-heading {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  text-align: center;
  padding: 8px 12px;
  border-radius: 4px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.shop-now-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}


.category-box:hover{
  cursor: pointer;
}
.category-box:hover .category-heading {
  opacity: 0;
}

.category-box:hover .shop-now-heading {
  opacity: 1;
}

.span_span {
  color: gold;
  display: inline-block;
}

@media screen and (max-width: 576px) {
  .popular-category{
    justify-content: center;
    width: 100%;
  }

  .category-row-2 .category-heading {
    font-size: 12px;

  }

  .category-row-1 .category-heading{
    font-size: 12px;
    
    }

  }

@media screen and (max-width: 320px) {
 
  .category-row-1{
    
    flex-wrap: wrap;
  }


}



/*-----------------------------------*\
 * # PARTNER SECTION
\*-----------------------------------*/


/* Example CSS styling for the Partner section */
.partner-section {
  padding: 20px;
  text-align: center;
}

.partner-title {
  font-size: 2.5rem;
  font-weight: var(--fw-600);
  color: var(--black);
  margin-bottom: 10px;
}

.partner-subtitle {
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  color: var(--sonic-silver);
  margin-bottom: 30px;
}

.partner-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.partner-item {
  width: 200px;
  margin: 10px;
  border-radius: 5px;
}

.partner-image {
  width: 150px;
  height: 150px;
  box-shadow: 10px 10px 42px -18px rgba(0, 0, 0, 0.75);
}

.partner-name {
  font-size: var(--fs-5);
  font-weight: 500;
  text-align: left;
  margin-top: 10px;
}

.partner-buttons {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.partner-button {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  padding: 15px 30px;
  border: 1px solid #000;
  border-radius: 30px;
  transition: .3s;
  margin: 0 15px;
}

.partner-button.button-1 {
  background-color: var(--eerie-black);
  color: #fff;
}

.partner-button.button-2 {
  background-color: var(--white);
  color: var(--eerie-black);
}

/* Additional styles for button hover and focus states if needed */
.partner-button:hover,
.partner-button:focus {
  opacity: 0.9;
}

.partner-button.button-2:hover {
  background-color: var(--eerie-black);
  color: var(--white);
}

/* Style for the partner text */
.partner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px; /* Adjust the font size as needed */
  font-weight: bold; /* Adjust the font weight as needed */
  color: #000; /* Text color */
  background-color: rgba(255, 255, 255, 0.8); /* White background with some transparency */
  padding: 10px 20px; /* Adjust padding as needed */
  border-radius: 5px; /* Add rounded corners */
  text-align: center;
  z-index: 1; /* Ensure the text is on top of the image */
}

/* Adjust the position of the text for different image sizes */
.partner-item {
  position: relative;
  /* Add width and height to match your image size */
  width: 150px;
  height: 150px;
}

/* Style for the partner image (optional) */
.partner-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 5px; /* Add rounded corners to the image */
}

/* Media query for medium-sized screens */
@media (max-width: 768px) {

}

/* Media query for small screens */
@media (max-width: 576px) {
  .partner-section{
    padding: 10px 0px;
  }
  .partner-title {
    font-size: 32px;
  }

  .partner-subtitle {
    font-size: 18px;

  }
}



/* Get_your_T-Shirts_contact */
.Get_your_T-Shirts_contact {
  text-align: center;
  background-color: whitesmoke;
  padding: 80px;
  border-radius: 10px;
}

.Get_your_T-Shirts_contact-heading {
  font-size: 2rem;
  color: #333;
}


.Get_your_T-Shirts_contact-whatsapp {
  display: flex;
  justify-content: center;
  margin-top: 20px;

}

.Get_your_T-Shirts_contact-button {
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.Get_your_T-Shirts_contact-button i {
  margin-right: 10px;
  font-size: 18px;
}

.Get_your_T-Shirts_contact-button:hover {
  background-color: var(--teal);
}

@media (max-width: 576px) {
  .Get_your_T-Shirts_contact {
    font-size: 28px;
    padding: 40px 20px;
  }
  .Get_your_T-Shirts_contact-button {
  font-size: 16px;
  }
}



/* CSS styles for the stats section */
.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background-color: whitesmoke;
  padding: 30px;
}

.data-block {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.data-number {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

.data-label {
  font-size: 18px;
  color: #000;
}

.icon-container{
  width: 80px;
  height: 80px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.icon {
  color: #fff;
  font-size: 2rem;
}



/* custom design list section */

.custom-section {
  color: #000;
  padding: 60px 0;
  background-color: whitesmoke;
}

.custom-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-text {
  flex: 1;
  padding-left: 40px;
  text-align: left;
}

.custom-heading {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.custom-points {
  list-style-type: disc;
  padding-left: 0;
}

.custom-points li {
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
}

.custom-points li span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: gold;
  border-radius: 50%;
  margin-right: 10px;
}

.custom-image {
  flex: 1;
  text-align: right;
}

.custom-img {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}


/*-----------------------------------*\
 * #How we do it
\*-----------------------------------*/

.section {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  padding: 50px 50px 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.section .sub-section{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Add styles for the heading */
.section .section-heading {
  font-size: 2.1rem; /* Adjust the font size */
  margin-bottom: 40px; /* Adjust the margin as needed */
  color: #333; /* Text color for the heading */
}

.step {
  flex: 1;
  text-align: center;
}

.number{
  min-height: 45px;
  margin: 5px;
}
.step-number {
  background-color: teal;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius:50% ;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.step-description {
  /* font-size: 18px; */
  min-height: 150px;
}
.step-description p {
  font-size: 14px;
  text-align: center;
  padding: 5px 10px ;
  
}

@media (max-width: 768px) {
  .sub-section {
    flex-direction: column;
    text-align: center;
  }

  .step {
    margin-bottom: 20px;
  }
}


/* Base styles for Join_our_team_contact */
.Join_our_team_contact {
  text-align: center;
  background-color: whitesmoke;
  padding: 80px;
  border-radius: 10px;
  margin-top: 20px;
}

.Join_our_team_contact-heading {
  font-size: 2rem;
  color: #333;
}

.Join_our_team_contact-subheading {
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px;
}

.Join_our_team_contact-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* WhatsApp button */
.Join_our_team_contact-whatsapp-button,
.Join_our_team_contact-email-button {
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
}

.Join_our_team_contact-whatsapp-button i,
.Join_our_team_contact-email-button i {
  margin-right: 10px;
  font-size: 18px;
}

.Join_our_team_contact-whatsapp-button:hover,
.Join_our_team_contact-email-button:hover {
  background-color: var(--teal);
}

/* Responsive styles */
@media (max-width: 768px) {
  .Join_our_team_contact {
    padding: 40px;
  }

  .Join_our_team_contact-heading {
    font-size: 1.5rem;
  }

  .Join_our_team_contact-subheading {
    font-size: 1rem;
  }

  .Join_our_team_contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .Join_our_team_contact-whatsapp-button,
  .Join_our_team_contact-email-button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}




/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

/* old code */
/* .ftr-cont {
  background-color: white;
  margin: 0 auto;
  padding: 50px 150px;


}

.ftr-contup {
  background-color: white;
  margin: 0 0 24px 0;
}

.ftr-contup h1 {
  color: #000;
  align-items: center;

}

.ftr-cont-dwn {
  background-color: white;
  display: flex;
  justify-content: space-between;
  color: black;

}

.ftr-ele {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ftr-ele i {

  padding: 12px;

} */



footer {
  /* background: var(--teal); */
  /* background-image: linear-gradient(60.4deg, rgba(0, 128, 128, 1) 72.5%, rgba(255, 215, 0, 1) 72.6%); */
  /* background-image: linear-gradient( 23.2deg,  rgba(34,34,34,1) 17%, rgba(45,45,45,1) 17.1%, rgba(45,45,45,1) 81.2%, rgba(34,34,34,1) 81.4% ); */
  background-image: linear-gradient( 23.2deg, #000000d1 17%, #2d2d2dc7 17.1%, #2d2d2dc7 81.2%, #000000d1 81.4% );
  width: 100%;
  bottom: 0;
  left: 0;
}

footer .content {
  /* max-width: 1250px; */
  margin: auto;
  padding: 30px 120px;
}

footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  border-bottom: 2px solid #fff;
}

.content .top .logo-details {
  color: #fff;
  font-size: 30px;
}
.content .top .logo-details img{
  width: 150px;
}

.content .top .media-icons {
  display: flex;
  position: relative;
  
}

.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.top .media-icons a.facebook {
  background: #4267B2;
}

.top .media-icons a.facebook:hover {
  color: #4267B2;
  background: #fff;
}

.top .media-icons a.instagram {
  background: #E1306C;
}

.top .media-icons a.instagram:hover {
  color: #E1306C;
  background: #fff;
}

.top .media-icons a.whatsapp {
  background: #25d366;
}

.top .media-icons a.whatsapp:hover {
  color: #25d366;
  background: #fff;
}

.top .media-icons a.linkedin {
  background: #0077B5;
}

.top .media-icons a.linkedin:hover {
  color: #0077B5;
  background: #fff;
}


footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer .content .link-boxes .box {
  /* width: calc(100% / 5 - 10px); */
  padding-right: 10px;
  flex: 1 auto;
}

.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}

.link-boxes .box .link_name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}

.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}

.content .link-boxes .box li a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}

.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.content .link-boxes .input-box {
  margin-right: 55px;
}

.link-boxes .input-box input {
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #140B5C;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
  color: #AFAFB6;
  font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
  background: #fff;
  color: #140B5C;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
  opacity: 1;
}

footer .bottom-details {
  width: 100%;
  background: var(--white);
}

footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 0px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  opacity: 0.8;
  text-decoration: none;
}

.bottom-details .bottom_text .copyright_text {
  padding: 10px;
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bottom-details .bottom_text a {
  margin-right: 10px;
}

@media (max-width: 900px) {
  footer .content {
    padding: 30px 80px;
  }

  footer .content .link-boxes {
    flex-wrap: wrap;
  }

  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  footer {
    position: relative;
  }
  footer .content {
    padding: 30px 40px;
  }
  .content .top .logo-details {
    font-size: 26px;
  }

  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    margin: 0 5px;
    font-size: 14px;
    line-height: 35px;
  }

  .content .top .logo-details img{
    width: 130px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }

  footer .content .link-boxes .input-box {
    width: 60%;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  footer .content {
    padding: 30px 30px;
  }
  .content .top .logo-details img{
    width: 110px;
  }
  .content .top .media-icons a {
    height: 30px;
    width: 30px;
    font-size: 12px;
    line-height: 35px;
  }
}