body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;   
}
html {
	scroll-behavior: smooth;
}

/*--FONTS--*/
@font-face {
    font-family: 'GeistBlack';
    src: url('../fonts/Geist-Black.ttf') format('truetype');
}
@font-face {
    font-family: 'GeistRegular';
    src: url('../fonts/Geist-Regular.ttf') format('truetype');
}
  @font-face {
    font-family: 'GeistMedium';
    src: url('../fonts/Geist-Medium.ttf') format('truetype');
}
  @font-face {
    font-family: 'GeistSemiBold';
    src: url('../fonts/Geist-SemiBold.ttf') format('truetype');
}
  @font-face {
    font-family: 'GeistLight';
    src: url('../fonts/Geist-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'GeistUltra';
    src: url('../fonts/Geist-UltraBlack.ttf') format('truetype');
}
@font-face {
  font-family: 'GeistMono-Bold';
  src: url('../fonts/GeistMono-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'GeistMono-Black';
  src: url('../fonts/GeistMono-Black.ttf') format('truetype');
}
@font-face {
  font-family: 'GeistMono-Regular';
  src: url('../fonts/GeistMono-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'GeistMono-Light';
  src: url('../fonts/GeistMono-Light.ttf') format('truetype');
}
/*--FONTS--*/



/*---NAVBAR SECTION----*/

.container.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    margin-top: 5px;
    transition: all 0.5s ease-in-out;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.container-sticky.ease-out {
    transition: all 0.3s ease-out; /* Add ease-out for scrolling back to top */
}
  
.container.sticky .logo {
    flex: 0 0 auto;
}
   
.container.sticky .nav-tabs {
    flex: 1;
    margin: 0;
    text-align: center; /* Center align the list items */
}
  
.container.sticky .nav-tabs ul {
    display: inline-block; /* Reset the display style */
    list-style: none;
    padding: 0;
    margin: 0;
}
   
.container.sticky .cta-button {
    flex: 0 0 auto;
}
  
.nav-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-tabs ul li {
    display: inline-block;
    margin-right: 70px;
}

.nav-tabs ul li a {
    color: #5e5e5e;
    text-decoration: none;
    justify-content: space-between;
    font-family: 'GeistRegular', sans-serif; 
    font-size: 1.2rem;
    font-weight: 100;
}

.nav-tabs ul li a:hover {
    color: greenyellow;
    transition: 0.2s;
    font-weight: bold;
}

.logo img {
    width: 13rem; /* Adjust size as needed */
    height: auto;
    cursor: pointer;
}

.cta-button .button {
    background-color: #f0f0f0;
    color: black;
    font-weight: bolder;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'GeistBlack', sans-serif;
}

.cta-button .button:hover{
    background-color: black;
    color: #fff;
    transition: 0.5s;
}

.menu{
  display: none;
}

.aside-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Initially hide the menu off-screen */
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transition: right 2s ease-in; /* Add a smooth transition effect */
    z-index: 1000;
}
  
.aside-menu ul {
    list-style: none;
    padding: 0;
}
  
.aside-menu ul li {
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
}
  
.aside-menu ul li:last-child {
    border-bottom: none;
}
  
.aside-menu ul li a {
      color: #5e5e5e;
      text-decoration: none;
      justify-content: space-between;
      font-family: 'GeistRegular', sans-serif; 
      font-size: 1.2rem;
      font-weight: 100;
}
  
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 900; /* Ensure the overlay is below the aside menu */
    display: none; /* Initially hide the overlay */
}
  
.show-menu {
    right: 0; /* Show the menu */
}
  
.show-overlay {
    display: block; /* Show the overlay */
}



@media only screen and (max-width : 1000px){
  
   .nav-tabs ul li {
    display: inline-block;
    margin-right: 10px;
  }
    .nav-tabs ul li a {
      justify-content: space-between;
      font-family: 'GeistRegular', sans-serif; 
      font-size: 1rem;
      font-weight: 100;
  }
  .logo img{
    width: 12rem;
   }
}


@media(max-width: 700px){
   
  .logo img{
       width: 10rem;
  }
  .nav-tabs{
    display: none;
  }
  .cta-button .button{
    display: none;
  }
  .menu{
    display: inline;
    width: 30px;
    cursor: pointer;
  }
}

@media only screen and (max-width: 480px) {

    .container.sticky {
        padding: 0 1px; /* Minimal padding */
        border-radius: 50px; /* Remove border radius for smaller screens */
    }

    .container.sticky .logo img {
        width: 10rem; /* Smaller logo size */
    }

    .container.sticky .nav-tabs ul {
        flex-direction: column; /* Stack navigation items */
        text-align: center; /* Center align text */
    }

    .container.sticky .nav-tabs ul li {
        margin-bottom: 5px; /* Add space between items */
    }

    .container.sticky .nav-tabs ul li a {
        font-size: 0.7rem; /* Adjust font size */
    }

    .cta-button .button {
        display: none; /* Hide the button */
    }

    .menu {
        display: inline; /* Show the menu icon */
        width: 20px; /* Adjust size */
        padding-right: 10px;
    }
}

/*---NAVBAR SECTION----*/





/*---HERO SECTION---*/
.hero-banner {
    background-image: url('../assets/test.png');
    background-size: cover;
    background-position: center;
    object-fit: cover;
    height: 550px; /* Adjust height as needed */
    align-items: center;
    background-color: #f5f5f5;
}

.text-box{
    width: 75%;
    color: black;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    /*background-image: url('../icons/artboard-2-line.svg');
    background-repeat: repeat;
    background-position: bottom 1px right 2px;
    background-size: 5rem;*/
}

.text-box h1{
    color: black;
    font-size: 60px;
    font-weight: bold;
    font-family: 'GeistUltra', sans-serif; 
    padding-top: 0;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    padding-bottom: 0;
}

.text-box p{  
    padding-top: 0;
    font-size: 30px;
    line-height: 30px;
    color: #5e5e5e;
    text-align: center;
    font-family: 'GeistMedium', sans-serif; 
}

p span{
    color: #000000;
    font-weight: bold;
}

h1 span {
  background: #ee0979; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ff6a00,
    #ee0979
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    blue 40%,
    #ff6a00,
    #ee0979
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100%;
  background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    border-radius: 50px;
    padding: 12px 34px;
    font-size: 22px;
    font-weight: bold;
    background: #fff;
    position: relative;
    cursor: pointer;
    font-family: 'GeistUltra', sans-serif;
    margin: 0 auto;
}

.hero-btn:hover{
    border: 1px solid #000000;
    background: #000000;
    transition: 0.5s;
    color: #fff;
}

.hero-btn i{
  font-size: 1.15rem;
  padding: 5px;
}


@media (max-width : 1024px){

  .text-box{
    top: 55%;
  }
  .text-box h1{
    font-size: 45px;
  }
}

@media only screen and (max-width : 1000px){
  
    .text-box{
      width: 60%; 
      top: 55%; 
   }  
   .text-box h1{
    font-size: 35px;
    text-align: center; 
  }
  .text-box p{  
    font-size: 20px;
    text-align: center;
  }
 
}
  
@media only screen and (max-width: 700px){
   
    .text-box{
       width: 70%;
       top: 55%;
    }
    .text-box h1{
      font-size: 35px;
      text-align: center; 
    }
    .text-box p{  
      font-size: 19px;
      text-align: center;
    }
   
  .nav-tabs{
    display: none;
  }
}

@media only screen and (min-width: 500px) {
    .text-box {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center content horizontally */
        text-align: center; /* Center text inside the text-box */
    }
    
    .hero-btn {
        display: inline-block; /* Keep button inline with other elements */
        margin: 0 auto; /* Centers the button horizontally if needed */
    }
}

@media only screen and (max-width: 480px) {
    .hero-banner {
        display: flex;
        justify-content: center; /* Center the content horizontally */
        align-items: center; /* Center the content vertically */
        height: 500px; /* Full viewport height */
        text-align: center; /* Center text inside the section */
    }

    .text-box{
        width: 70%;
        top: 50%;
     }

     .text-box h1{
        font-size: 30px;
        text-align: center; 
      }
      .text-box p{  
        font-size: 15px;
        text-align: center;
      }
  
    .hero-btn {
        display: inline-flex; /* Aligns child elements (like text) horizontally */
        margin: 0 auto; /* Centers the button horizontally */
        text-align: center; /* Centers text inside the button */
    }
}

/*@media only screen and (max-width: 320px){
  .text-box{
    top: 50%;
  }
}*/


@media (max-width: 320px) {
  .hero-banner {
    height: 400px; /* Adjust height as needed */
  }  

  .text-box {
    padding-top: 5%;
    width: 95%;
  }

  .text-box h1 {
    font-size: 22px;
  }

  .text-box p {
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-btn {
    font-size: 16px;
    padding: 8px 16px;
  }
}


/*---HERO SECTION----*/








/*---WHY SECTION----*/

.course{
    width: 80%;
    margin: auto;
    text-align: start;
    padding-top: 50px;
  }
  
  h1{
   font-family: 'GeistBlack', sans-serif;
   font-size: 36px;
   font-weight: 600;
  }
  
  h5{
    font-family: 'GeistRegular', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #383838;
  }
  
  p{
    font-family: 'GeistRegular', sans-serif;
    color: #383838;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
  }
  
  .row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
  }
  
  .course-col{
    flex-basis: 31%;
    background: #e2f8e2;
    border-radius: 10px;
    border: 1px solid #000000;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
  }
  
  .course-col img{
    width: 30px;
  }
  .course-col h3{
  font-family: 'GeistSemiBold', sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  margin: 10px 0;
  }
  
  .course-col:hover{
  box-shadow: 0 0 10px 10px rgba(116, 116, 116, 0.1);
  }
  
  #one{
  background: #ffe8e8;
  background: #fff;
  }
  
  #two{
  background: #ffffd1;
  background: #fff;
  }
  #three{
  background: #ccffaf;
  background: #fff;
  }
  #one h3{
  color: #eb0f0f;
  color: #000000;
  }
  #two h3{
  color: #b9b900;
  color: #000000;
  }
  #three h3{
  color: #008100;
  color: #000000;
  }
  
  #one p{
  color: #eb0f0f;
  color: #000000;
  }
  #two p{
  color: #b9b900;
  color: #000000;
  }
  #three p{
  color: #008100;
  color: #000000;
  }
  
  @media(max-width: 700px){
  
    .row{
        flex-direction: column;
    }
    h5{
      font-size: 18px;
    }
  }
/*--WHY SECTION--*/
  




/*--SERVICES SECTION--*/

.services-container{
  width: 96%;
  margin: 0 auto;
  height: 100%;
}

.services-container h1{
  text-align: center;
  padding-top: 5%;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.services-container h1::after{
  content: '';
  background: #000;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.service{
  text-align: center;
  padding: 5px 5px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
  margin-bottom: 5px;
}

.service i{
  font-size: 40px;
  margin-bottom: 10px;
  color: #000;
}

.service h2{
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'GeistSemiBold', sans-serif;
}

.service:hover{
  background: #3f3f3f;
  color: #fff;
 
}

.service:hover i, 
.service:hover p{
  color: #fff;
}

i.ri-computer-line{
  color: #00ac09;
}
i.ri-code-box-line{
  color: #650094;
}
i.ri-smartphone-line{
  color: #180085;
}
i.ri-file-code-line{
  color: #e0e002;
}
i.ri-google-fill{
  color: #EA4335;
}
i.ri-linkedin-box-fill{
  color: blue;
}
i.ri-facebook-circle-fill{
  color: #4267B2;
}
/*--SERVICES SECTION--*/






/*--CLIENTS SECTION--*/

.partners_section {
  padding: 50px 0;
}

.section_title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section_title h3 {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'GeistUltra', sans-serif;
}


.logos_slider {
  overflow-x: hidden;
}

.overflow {
  display: flex;
  padding: .5rem 1rem;
  overflow: hidden;
}

.logos_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  animation: logoLoop 30s linear infinite;
}

.logo_item {
  width: 12rem;  /* Fix width to ensure consistency */
  height: 6rem;  /* Set a fixed height to maintain aspect ratio */
  display: flex;
  align-items: center;
  justify-content: center;
  background: whitesmoke;
  border-radius: 1rem;
  margin: 0 1rem;
  padding: 1rem;
}

.logo_item img {
  max-width: 100%;   /* Ensure images are responsive */
  max-height: 100%;  /* Maintain proportionality */
  object-fit: contain;  /* Ensure the image retains its aspect ratio */
}

@keyframes logoLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .logo_item {
    width: 10rem;   /* Adjust size for medium screens */
    height: 5rem;   /* Adjust height for medium screens */
  }
}

@media (max-width: 320px) {
  .section_title h3 {
    font-size: 1.6rem;
  }
}

/*--CLIENTS SECTION--*/


/*--WORKS SECTION--

.grid {
  padding-bottom: 10%;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  margin: 0 auto;
}

.works h1{
  padding-top: 20px;
  text-align: center;
}

.item {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  font-size: 150%;
  margin: 10px;
}

.item-1 {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.item-2 {
  grid-column: 3 / span 4;
  grid-row: 1;
}

.item-3 {
  grid-column: 1 / span 4;
  grid-row: 5 / span 6;
}

--WORKS SECTION--*/





/* General Styles */

.works {
  text-align: center;
  padding: 20px;
}

.works h1 {
  margin-bottom: 20px;
  font-size: 2.3rem;
}

/* Grid Container */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr); /* Default: 3 Columns */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Grid Items */
.item {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: 'GeistRegular', sans-serif;
  font-weight: 700;
}

.item img {
  max-width: 100%;
  height: 13rem;
  margin-top: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.item h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333; /* Optional: Match your theme */
}

.item p {
  margin: 5px 0 10px;
  color: #555;
  font-size: 14px;
}


.work-description {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.work-description a{
  text-decoration: none;
  color: #333;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr; /* 2 Columns on tablets */
  }
}

@media (max-width: 450px) {
  .grid {
    grid-template-columns: 1fr; /* 1 Column on smaller screens */
  }
}

@media (max-width: 320px) {
  .item {
    font-size: 14px; /* Adjust text size for very small screens */
  }

  .item img {
    height: auto;
  }
  

  .work-description {
    font-size: 12px;
  }
}












/*--TESTIMONIALS--*/
.testimonials{
  background: #e4e4e4;
  width: 80%;
  margin: auto;
  margin-top: 50px;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  border-radius: 20px;
}

.testimonials h1{
  color: #000;
}
.testimonials h2{
  font-size: 18px;
  color: #222222;
  font-family: 'GeistRegular', sans-serif;
}

.testimonial-col{
  flex-basis: 44%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
  background: #fff;
  padding: 25px;
  cursor: pointer;
  display: flex;
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.testimonial-col img{
  height: 40px;
  margin-left: 5px;
  margin-right: 30px;
  border-radius: 50%;
}


.testimonial-col p{
  padding: 0;
  font-size: 15px;
}

.testimonial-col h3{
  margin-top: 15px;
  text-align: left;
  color: #3d3d3d;
  font-size: 14px;
  font-family: 'GeistLight', sans-serif;
}



@media(max-width: 700px){

  .testimonial-col img{
      margin-left: 0px;
      margin-right: 15px;
  }

}

/*--TESTIMONIALS--*/




















/*---CTA---*/
.cta{
  margin: 50px auto;
  width: 90%;
  
  background: linear-gradient(30deg, #161616,#464646,#808080,#a1a1a1);
  background-position: center;
  background-size: cover;
  border-radius: 200px;
  text-align: center;
  padding: 15px 0;
}

.cta h1{
color: #fff;
font-size: 50px;
margin-bottom: 20px;
padding: 0;
}
.cta h3{
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  padding: 0;
  font-family: 'Inter', sans-serif;
  }

@media(max-width: 768px){

    .cta{
      width: 90%;
      border-radius: 70px;
      text-align: center;
      padding: 15px 0;
    }
  
    .cta h1{
        font-size: 25px;
    }
}


@media(max-width: 700px){
  .cta h1{
      font-size: 26px;
  }
}

@media(max-width: 425px){

  .cta{
    width: 90%;
    border-radius: 50px;
    text-align: center;
    padding: 15px 0;
  }

  .cta h1{
      font-size: 21px;
  }
}

@media(max-width: 320px){

  .cta{
    width: 80%;
    border-radius: 50px;
    text-align: center;
    padding: 15px 0;
  }

  .cta h1{
      font-size: 21px;
  }
}
/*---CTA---*/






















/*---FOOTER SECTION----*/

footer{
  position: relative;
  background: #cecece;
  background: #f1f1f1;
  width: 100%;
  bottom: 0;
  left: 0;
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #AFAFB6;
}
footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top .logo-details{
  color: #fff;
  font-size: 37px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
}

.logo-details img{
  width: 13rem;
  padding: 0;
  margin: 0;
}
.content .top .media-icons{
  display: flex;
}
.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;
}
a img{
  padding-top: 7px;
  width: 23px;
  color: #1b1b1b;
}
/* .top .media-icons a:nth-child(1){
  background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #E1306C;
}
.top .media-icons a:nth-child(3):hover{
  color: #E1306C;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #0077B5;
}
.top .media-icons a:nth-child(4):hover{
  color: #0077B5;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #008000;
}
.top .media-icons a:nth-child(5):hover{
  color: #FF0000;
  background: #fff;
}*/
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  font-family: 'GeistMedium', sans-serif;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 20px;
  background: #000;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #272727;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease;
  font-family: 'GeistRegular', sans-serif;
}

.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);
  width: 100%;
  outline: none;
  border: 2px solid #AFAFB6;
  background: #fff;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #000;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
  font-family: 'GeistRegular', sans-serif;
}
.link-boxes .input-box input[type="button"]{
  width: 275px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 500;
  font-family: 'GeistSemiBold', sans-serif;
  margin: 4px 0;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 4px;
}
.input-box input[type="button"]:hover{
   background: #004105;
   color: #fff;
}
footer .bottom-details{
  width: 100%;
  background: black;
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  font-family: 'GeistLight', sans-serif;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}



@media (max-width: 1024px) {
  .link-boxes .input-box input{
    width: calc(100% + 55px);
    width: 100%;
  }
  .link-boxes .input-box input[type="button"]{
   width: 100%;
  }
}

@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
  .link-boxes .input-box input{
    width: calc(100% + 55px);
    width: 100%;
  }
  .link-boxes .input-box input[type="button"]{
   width: 100%;
  }
}
@media (max-width: 700px){
  footer{
    position: relative;
  }
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  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;
  }
  .link-boxes .input-box input{
    width: calc(100% + 55px);
    width: 100%;
  }
  .link-boxes .input-box input[type="button"]{
   width: 100%;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}

@media (max-width: 320px){
  footer .bottom-details{
    width: 100%;
  }

.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 13px;
  font-weight: 200;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  font-family: 'GeistLight', sans-serif;
}
.link-boxes .input-box input{
  width: 170px;
}
.link-boxes .input-box input[type="button"]{
 width: 200px;
}
}
/*---FOOTER SECTION----*/