.html {
    margin:0;
    padding:0;
    overflow-x:hidden;
    scroll-behavior: smooth;
  }

  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #ffffff;
  }
  nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px 10px;
    height: 90px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .wrapper .logo img {
    position: absolute;
    color: #f2f2f2;
    /* font-size: 50px;
font-weight: 600;
text-decoration: none;
margin-top: 60px;*/
    width: 240px;
    height: 90px;
  }
  .navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    /* padding: 10px 15px; */
    transition: color 0.3s ease;
  }
  .wrapper .nav-links {
    display: inline-flex;
  }
  .nav-links li {
    list-style: none;
  }
  .nav-links li a {
    color: #4f2c3e;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 9px 15px;
    /*border-radius: 5px;*/
    transition: all 0.3s ease;
  }
  .nav-links li a:hover {
    color: #fff;
    background: #511c2f;
  }
  .nav-links .mobile-item {
    display: none;
  }
  .nav-links .drop-menu {
    position: absolute;
    background: #2c5e9f;
    color: #fff;
    width: 300px;
    line-height: 30px;
    /*top: 100px;*/
    margin-top: 10px;
    opacity: 0.9;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }

  .nav-links .drop-menu :hover {
    background: #434343;
  }
  .nav-links li:hover .drop-menu,
  .nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 0.9;
    visibility: visible;
  }
  .drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    color: #fff;
    font-weight: 200;
    border-bottom: 1px solid rgb(255, 255, 255);
    font-size: 14px;
  }

  ol,
  ul {
    padding-left: 0rem;
  }
  .mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    margin-top: 20px;
    top: 70px;
    opacity: 0;
    visibility: hidden;
  }
  .mega-box .content {
    background: linear-gradient(45deg, #764f8f, #da1f3e);
    padding: 25px 20px;
    display: flex;
    width: 100%;
    opacity: 1;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  .mega-box .content .row {
    width: calc(50% - 30px);
    line-height: 45px;
  }
  .content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .content .row header a {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
  }
  .content .row .mega-links {
    margin-left: -37.5px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
  .row .mega-links li {
    padding: 0 20px;
  }
  .row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
    border-bottom: 1px solid rgb(255, 255, 255);
  }
  .row .mega-links li a:hover {
    color: #f2f2f2;
    /*background: #000000;*/
    /*border-radius: 5px;*/
  }
  .wrapper .btn {
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
  }

  @media screen and (max-width: 1024px) {
    .wrapper .btn {
      display: block;
    }
    .wrapper .nav-links {
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #a6a6a6;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
      transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: #3a3b3c;
    }
    #menu-btn:checked ~ .nav-links {
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn {
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn {
      display: block;
    }
    .nav-links li {
      margin: 15px 10px;
    }
    .nav-links li a {
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    .nav-links .drop-menu {
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 20px;
      width: 100%;
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box {
      max-height: fit-content;
    }
    .nav-links .desktop-item {
      display: none;
    }
    .nav-links .mobile-item {
      display: block;
      color: #2c5e9f;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover {
      color: #ffffff;
      background: #2c5e9f;
    }
    .drop-menu li {
      margin: 0;
    }
    .drop-menu li a {
      /*border-radius: 5px;*/
      font-size: 18px;
    }
    .mega-box {
      position: static;
      top: 65px;
      opacity: 1;
      visibility: hidden;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box .content {
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box .content .row {
      width: 147%;
      /*margin-bottom: 15px;*/
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
      border-top: 0px;
    }
    .content .row .mega-links {
      border-left: 0px;
      padding-left: 15px;
    }
    .row .mega-links li {
      margin: 0;
    }
    .content .row header {
      font-size: 19px;
    }
    ul {
    padding-left: 20px;
    /* margin-top: 20px; */
    color: #555555;
    }
    li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
    }
    li strong {
    color: #333333; /* Emphasize the titles */
    }
  }
  nav input {
    display: none;
  }

  .link-animated a {
    transition: 0.5s;
    color: blue;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
  }
  
  .link-animated a:hover {
    padding-left: 10px;
  }

  .whatsapp{
    position: fixed;
    cursor: pointer;
    padding: 1px;
    width: auto;
    text-align: left;
    outline: none;
    font-size: 18px;
    border-bottom: none;
    bottom: 20px;
    left: 25px;
    z-index: 2;
}

section.aboutuspart .container31 {
    display: grid;
    grid-template-columns: 40% 60%;
    height: 600px;
    width: 100%;
    background: linear-gradient(45deg, #764f8f9e, #1fadda8c);
    align-items: center;
}
section.aboutuspart .unique-content31 {
    position: relative;
    padding: 50px;
    background-color: transparent;
    height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    animation: slideIn31 1s ease-out forwards;
}
section.aboutuspart .unique-content31 h1 {
    /* font-size: 48px; */
    margin-bottom: 5px;
}
section.aboutuspart .unique-content31 p {
    font-size: 19px;
    line-height: 1.5;
}
section.aboutuspart .image31 {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.aboutuspart .image31 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1024px) {
section.aboutuspart .container31 {
grid-template-columns: 1fr; /* Stacks content vertically */
height: auto;
}
section.aboutuspart .image31 {
order: -1; /* Moves image to the top */
height: 300px;
}
section.aboutuspart .unique-content31 {
padding: 30px;
text-align: left;
}
section.aboutuspart .unique-content31 h1 {
font-size: 48px;
font-size: 36px;
}
section.aboutuspart .unique-content31 p {
font-size: 18px;
}
}
@media (max-width: 768px) {
section.aboutuspart .image31 {
height: 250px;
}
section.aboutuspart .unique-content31 {
padding: 20px;
height: auto;
}
section.aboutuspart .unique-content31 h1 {
font-size: 25px;
margin-bottom: 10px;
}
section.aboutuspart .unique-content31 p {
font-size: 14px;
}
}
@keyframes slideIn31 {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
                                                                        /*  <!-- /* part 2 */ 
section.identity-section {
    padding: 50px 20px;
}
.section-container44, .identity-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    gap: 20px;
}
.text-content55, .identity-content {
    flex: 1;
    padding: 20px;
}
.text-content55 h1, .identity-content h1 {
    font-size: 36px;
    color: #333333;
    margin-bottom: 10px;
}
.text-content55 h1::after, .identity-content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ff9900, #ff5b5b);
    margin-top: 10px;
}
.text-content55 p, .identity-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
}
.text-content55 a, .identity-content a {
    color: #0066cc;
    text-decoration: none;
}
.text-content55 a:hover, .identity-content a:hover {
    text-decoration: underline;
}
.image-container66, .identity-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container66 img, .identity-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
    .section-container44, .identity-section {
        flex-direction: column-reverse; /* Stack content and image */
        /* text-align: center; */
    }
    .text-content55, .identity-content {
        padding: 50px;
    }
    .text-content55 h1, .identity-content h1 {
        font-size: 28px;
    }
    .text-content55 p, .identity-content p {
        font-size: 16px;
    }
    .image-container66 img, .identity-image img {
        max-width: 90%; /* Adjust image size for smaller screens */

    }
    section.aboutuspart .image31 img {
      width: 100%;
      height: 100%;
      margin-top: 110px;
      object-fit: cover;
    }
    section.aboutuspart .unique-content31 p {
      font-size: 14px;
      margin-bottom: -10px;
    }
    
}
@media screen and (max-width: 480px) {
    .text-content55 h1, .identity-content h1 {
        font-size: 24px;
    }
    .text-content55 p, .identity-content p {
        font-size: 14px;
    }
    .image-container66 img, .identity-image img {
        max-width: 100%;
        height: auto;
    }
}



body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  }
  
  /* Key IT Services Section */
  /* .key-services-unique {
  font-size: 2.5rem;
  font-weight: bold;
  left: 50px;
  margin-bottom: 20px;
  position: relative;
  }
  
  .key-services-unique::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, orange, pink);
  position: absolute;
  bottom: -10px;
  left: 0;
  } */
  
  /* Service Section */
  .service-section-unique {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 100px;
  border-bottom: 1px solid #e9ecef;
  background-color: #f9f9f9;
  }
  
  .text-container-unique {
  flex: 1;
  padding: 20px;
  }
  
  .text-container-unique h1 {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 20px;
  }
  
  .text-container-unique h1::after{
  content: "";
  display: block;
  width: 150px;
  height: 2.5px;
  background: linear-gradient(45deg, #764f8f, #da1f3e);
  position: absolute;
  bottom: -10px;
  left: 0;
  }
  
  .text-container-unique p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #555;
  }
  
  /* Accordion Menu */
  .accordion-menu-unique {
  display: block;
  position: relative;
  border-radius: 5px;
  }
  
  .accordion-menu-unique h2 {
  font-size: 18px;
  line-height: 34px;
  font-weight: bolder;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  color: #232323;
  margin-bottom: 10px; /* Spacing between the header and bullet list */
  }
  
  .accordion-menu-unique ul {
  list-style: none;
  padding: 0 0px 10px;
  margin-right: 30px;
  border-radius: 5px;
  }
  
  .accordion-menu-unique ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 1px dotted #dce7eb;
  }
  
  .accordion-menu-unique ul li:nth-child(1) {
  border: none;
  }
  
  /* Adding Bullets to the Accordion List */
  .accordion-menu-unique ul li ul {
  list-style-type: disc; /* Ensures that bullets are applied */
  padding-left: 20px; /* Indents the bullets */
  margin-top: 10px;
  }
  
  .accordion-menu-unique ul li ul li {
  margin-bottom: 5px;
  color: rgba(48, 69, 92, 0.8);
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 1px;
  }
  
  /* Arrow Styling */
  .accordion-menu-unique ul li .arrow-unique {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
  }
  
  .accordion-menu-unique ul li .arrow-unique:before,
  .accordion-menu-unique ul li .arrow-unique:after {
  content: "";
  position: absolute;
  /*background-color: #f6483b;*/
  background: linear-gradient(45deg, #764f8f, #da1f3e);
  width: 3px;
  height: 9px;
  }
  
  .accordion-menu-unique ul li .arrow-unique:before {
  transform: translate(-2px, 0) rotate(45deg);
  }
  
  .accordion-menu-unique ul li .arrow-unique:after {
  transform: translate(2px, 0) rotate(-45deg);
  }
  
  /* Checkbox Behavior */
  .accordion-menu-unique ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  }
  
  .accordion-menu-unique ul li input[type=checkbox]:checked ~ ul {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
  }
  
  .accordion-menu-unique ul li input[type=checkbox]:checked ~ .arrow-unique:before {
  transform: translate(2px, 0) rotate(45deg);
  }
  
  .accordion-menu-unique ul li input[type=checkbox]:checked ~ .arrow-unique:after {
  transform: translate(-2px, 0) rotate(-45deg);
  }
  
  .transition,
  p,
  ul li .arrow-unique:before,
  ul li .arrow-unique:after {
  transition: all 0.25s ease-in-out;
  }
  
  /* Image Container */
  .image-container-unique {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 20px;
  min-height: 300px; /* Set a minimum height to avoid shifting */
  }
  
  .image-container-unique img {
  max-width: 100%;
  height: auto;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
  .service-section-unique {
  flex-direction: column;
  text-align: center;
  margin-top: 40px;
  padding: 0px 25px;
  }
  
  .key-services-unique {
  margin-bottom: 50px;
  left: 30px;
  }
  
  .text-container-unique {
  text-align: left;
  padding: 0%;
  line-height: 1.4;
  margin: 20px;
  }

  .text-container-unique h6 {
    color: #ff5a4a;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .image-container-unique {
  height: 30%;
  }
  
  .image-container-unique img {
  max-width: 105%;
  }
  }
                                                                        /*  <!-- /* part 1 */ 

.about{
  margin:50px;
}

.about-section33 {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 20px;
padding: 20px;
background-color: #FFF;
font-family: Arial, sans-serif;
}
.about-content33 {
flex: 1 1 400px;
max-width: 600px;
box-sizing: border-box;
}
.about-content33 h2 {
font-size: 2.5rem;
color: #333;
margin-bottom: 10px;
}
.about-content33 h2::after {
content: '';
display: block;
width: 150px;
height: 2.5px;
background: linear-gradient(45deg, #764f8f, #da1f3e);
margin-top: 8px;
}
.about-content33 p {
font-size: 1rem;
color: #666;
line-height: 1.6;
}
.about-video33 {
flex: 1 1 400px;
max-width: 600px;
position: relative;
text-align: center;
}
/* Main image */
.about-video33 img {
width: 90%;
height: auto;
border-radius: 8px;
cursor: pointer;
transition: transform 0.3s ease-in-out;
}
/* Hover effect */
/* .about-video33:hover img {
transform: scale(1.05);
} */
/* PNG overlay image */
.about-video33 .overlay33 {
opacity: 0;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('./assets/img/image_icon/newonelogo.png') center/contain no-repeat;
transition: opacity 0.3s ease-in-out;
pointer-events: none;
}
.about-video33:hover .overlay33 {
opacity: 1;
}
/* Video popup background overlay */
.video-popup-overlay33 {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 998;
backdrop-filter: blur(5px);
}
/* Video popup container */
.video-popup33 {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 999;
width: 90%;
max-width: 800px;
background-color: #FFF;
padding: 10px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
/* Responsive video iframe */
.video-popup33 iframe {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
border: none;
}
/* Close button styling */
.close-popup33 {
position: absolute;
top: 3px;
right: 1px;
font-size: 24px;
color: #ffffff;
cursor: pointer;
background-color: #141414;
padding: 5px 10px;
border-radius: 20%;
border: 2px solid #000000;
z-index: 1000;
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.close-popup33:hover {
background-color: #333;
color: #FFF;
}
/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .about-section33{
    padding: 0px;
  }
.about-content33 h2 {
font-size: 2rem;
}
.about-content33 p {
font-size: 0.9rem;
}
.video-popup33 {
width: 95%;
max-width: 600px;
}
.close-popup33 {
font-size: 20px;
padding: 5px;
}
}
@media (max-width: 480px) {
.about-content33 h2 {
font-size: 1.8rem;
}
.about-content33 p {
font-size: 0.85rem;
}
.video-popup33 {
width: 90%;
}
.close-popup33 {
font-size: 18px;
}
}
.lead{
  font-size: 1rem;
}


/*--------------- CORE VALUES ------------------*/


/*------------------ New Contact Form --------------------*/

.contact-section ::-webkit-scrollbar {
  width: 8px;
  }
  
  /* Track */
  .contact-section ::-webkit-scrollbar-track {
  background: #f1f1f1;
  }
  
  /* Handle */
  .contact-section ::-webkit-scrollbar-thumb {
  background: #888;
  }
  
  /* Handle on hover */
  .contact-section ::-webkit-scrollbar-thumb:hover {
  background: #555;
  }
  
  .contact-section body {
  background: rgba(132, 155, 219, 0.5);
  font-family: Arial, Helvetica, sans-serif;
  }
  
  .contact-section .container {
  background: #fff;
  margin-top: 50px;
  padding: 20px 20px 20px 20px;
  box-sizing: border-box;
  border-radius: 20px;
  /*width: 945px;*/
  }
  
  .contact-section img {
  padding-left: 50px;
  width: 90%;
  }
  
  .contact-section .text-muted {
  font-size: 13px;
  font-weight: bold;
  }
  
  .contact-section .form-title {
  font-weight: bold;
  }
  
  .contact-section .form-group label {
  font-size: 11px;
  font-weight: bold;
  padding-left: 5px;
  color: #828282;
  }
  
  .contact-section .form-control {
  border: none;
  border-radius: 20px;
  background: rgba(165, 147, 69, 0.075);
  box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.2);
  }
  
  .contact-section .btn {
  width: 100%;
  font-size: 12px;
  margin-top: 10px;
  background-color: #4c2b46;
  color: white;
  text-align: center;
  border-radius: 5px;
  }
  
  .contact-section .form-control:focus {
  color: #495057;
  border-color: #fff !important;
  outline: 0;
  box-shadow: 0 1px 1px 1px rgba(0, 123, 255, 0.25) !important;
  }

/*--------------- Scroll-top -----------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right:2px;
    bottom: 15px;
    z-index: 1099;
    background:#834a8b;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
  }
  
  .scroll-top:hover {
    background: #933b6d;
    color: #fff;
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  }
  
  #preloader:before,
  #preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #834a8b;
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  
  #preloader:after {
  animation-delay: -0.5s;
  }
  
  @keyframes animate-preloader {
  0% {
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  opacity: 1;
  }
  
  100% {
  width: 72px;
  height: 72px;
  top: calc(50% - 36px);
  left: calc(50% - 36px);
  opacity: 0;
  }
  }

  /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Define and load custom font */
@font-face {
  font-family: 'Ethnocentric';
  src: url('/assets/img/Ethnocentric-Regular.woff') format('woff2'); /* Replace with the correct font path */
}
.footer h3{
  font-size: 26px;
  font-family: 'Ethnocentric', sans-serif; /* Fallback to sans-serif if font fails to load */
}

.footer {
    font-size: 14px;
    background-color: #1f1f24;
    padding: 50px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: normal;
  }

  .footer .icon {
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
  }

  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
  }

  .footer .footer-links {
    margin-bottom: 30px;
  }

  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    
    align-items: center;
  }

  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }

  .footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    
  }

  .footer .footer-links ul a:hover {
    color: #fff;
    
  }

  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
  }

  .footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
  }

  .footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
  }
  .copyright a {
    color: white;
  }

  .footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
  }

  .footer .credits a {
    color: #fff;
  }

  hr {
    border-color: #666;
  }