* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* font-family: "Montserrat", sans-serif; */
    /* overflow: hidden; */
  }
   
  /* --- Customize ScrollBars --- */
  .footer .center .linkedin-content::-webkit-scrollbar {
    width: 11px;
  }
  .footer .center .linkedin-content::-webkit-scrollbar-track {
    background: #fff;
  }
  .footer .center .linkedin-content::-webkit-scrollbar-thumb {
    background: #676767;
    border-radius: 7px;
  }
  
  /* Header Styles Starts Here */
  header {
    background-color: #ec9122;
    padding: 5px 0;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
  .header a {
    text-decoration: none;
    color: #fff;
  }
  .header .icons i {
    margin-right: 7px;
    transition: all 0.3s ease;
  }
  .header .icons i:hover {
    scale: 1.2;
    color: #5f86c3;
  }
  .header .email i {
    margin-right: 1px;
  }

  @media screen and (max-width: 576px) {
    header {
      padding: 0 0 2px 0;
    }
    .header .icons i{
        margin-right: 3.5px;
    }
    .header a{
        font-size: 0.7rem;
    }
    .header .phone span{
        font-size: 0.7rem;
    }
    .header i{
        font-size: 0.8rem;
    }
  }
  /* Header Styles Ends Here */


  /* Nav Styles Starts Here */
  nav {
    padding: 12px 0 !important;
    font-family: "Montserrat", sans-serif !important;
  }
  nav .nav-link {
    font-weight: 500;
  }
  nav .dropdown-menu {
    background-color: #e79b3e !important;
  }
  nav .dropdown-item {
    color: #fff;
    font-weight: 400;
  }
  nav .dropdown-item:hover,
  nav .dropdown-item:focus {
    background-color: #e79b3e !important;
    color: #fff;
  }

  @media screen and (max-width: 576px) {
    nav {
      z-index: 100 !important;
      position: absolute !important;
      background-color: #fff !important;
    }
    nav .nav-link {
        font-size: 0.8rem !important;
      }
      nav .dropdown-item {
        font-size: 0.8rem !important;
      }
  }

  /* .dropdown-toggle::after {
    display: none;
  } */

  /* Nav Styles Ends Here */


  /* Top Image Section Starts Here */

  .slider_container {
    position: relative;
    width: 100%;
    min-width: 50rem;
    height: 40rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    width: 300%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    animation: 15s cubic-bezier(1, 0.95, 0.565, 1) sliding infinite;
  }
  
  .slide {
    position: relative;
    min-width: 100%;
    height: 100%;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
  }
  
  @keyframes sliding {
    0% {
      transform: translateX(0%);
    }
    20% {
      transform: translateX(0%);
    }
    30% {
      transform: translateX(0%);
    }
    40% {
      transform: translateX(-100%);
    }
    50% {
      transform: translateX(-100%);
    }
    60% {
      transform: translateX(-100%);
    }
    70% {
      transform: translateX(-100%);
    }
    80% {
      transform: translateX(-200%);
    }
    90% {
      transform: translateX(-200%);
    }
    100% {
      transform: translateX(-200%);
    }
  }

  .top-image{
    overflow: hidden;
  }
  .top-image img{
    width: 100%;
    position: relative; 
  }
  .top-image .top-text{
    position: absolute;
    top: 45%;
    left: 8%;
  }
  .top-image .top-text h1{
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
  }
  .top-image .top-text span{
    background-color: #ec9122;
    padding: 0 40px 5px 20px;
    border-radius: 5px;
  }
  .top-image .top-text .top-text-background{
    background-color: #ec9122;
    width: 120%;
    height: 80px;
    position: absolute;
    top: 0;
    left: -50%;
    border-radius: 5px;
  }

  @media screen and (max-width: 576px) {
    .slider_container {
      height: 17rem;
    }
    .slide img {
      object-fit: cover;
    }
    
    .top-image .top-text{
      top: 22%;
      left: 5%;
    }
    .top-image .top-text h1{
      font-size: 1.5rem;
      margin-bottom: 1.1rem;
    }
    .top-image .top-text span{
      padding: 0 10px 5px 10px;
    }
    .top-image .top-text .top-text-background{
      height: 30px;
      padding: 10px 0 27px 0;
    }
  }
  /* Top Image Section Ends Here */



  /* Leading Company Section Starts Here */
  .leading-company{
    padding: 4rem 0;
    position: relative;
  }
  .leading-company h1{
    color: #ec9122;
    /* font-family: "Montserrat", sans-serif; */
    font-size: 2.3rem;
    text-align: center;
  }

  .leading-company .leading-text{
    background-color: #ececec;
    padding: 2rem 1rem 12rem 1rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    text-align: center;
  }
  .leading-company .leading-text span{
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
  }
  .leading-company .leading-text h5{
    font-size: 1.3rem;
  }
  .leading-company .leading-text h5:nth-child(2){
    margin-bottom: 1.5rem;
  }
  .leading-company .leading-text p{
    font-size: 1rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
  }

  .leading-company .team-img{
    position: absolute;
    width: 60%;
    bottom: -10rem;
    left: 20%;
  }
  .leading-company .team-img img{
    width: 100%;
  }

  @media screen and (max-width: 576px) {
    .leading-company{
      padding: 2.5rem 0.5rem;
    }
    .leading-company h1{
      font-size: 1.3rem;
    }
    .leading-company .leading-text{
      padding: 1rem 0.5rem 4rem 0.5rem;
    }
    .leading-company .leading-text span{
      font-size: 0.9rem;
    }
    .leading-company .leading-text h5{
      font-size: 0.8rem;
    }
    .leading-company .leading-text h5:nth-child(2){
      margin-bottom: 1rem;
    }
    .leading-company .leading-text p{
      font-size: 0.7rem;
    }
    .leading-company .team-img{
      width: 80%;
      bottom: -3rem;
      left: 10%;
    }
    .leading-company .team-img img{
      border-radius: 10px;
    }
  }
  /* Leading Company Section Ends Here */


  /* Top Cards Section Starts Here */
  .top-cards-background{
    background-image: url('images/bg2.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2.7rem 0 4rem 0;
    overflow: hidden;
    margin-top: 17rem;
  }
  .top-cards-background h1{
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-family: "Montserrat", sans-serif;
  }

  .top-cards-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1%;
    flex-wrap: wrap;
  }

  .top-cards-row .card{
    width: 19%;
    overflow: hidden;
    height: 20rem;
  }
  .top-cards-row .card img{
    width: 100%;
  }
  .top-cards-row .card .head{
    padding: 15px;
    height: 4.5rem;
    /* background-color: red; */
  }
  .top-cards-row .card .head h2{
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    text-align: center;
  }
  .top-cards-row .card .desc{
    padding: 0 8px;
    /* background-color: #5f86c3; */
  }
  .top-cards-row .card .desc p{
    font-size: 0.8rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-align: center;
  }

  @media screen and (max-width: 1400px) {
    .top-cards-row .card{
      height: 17rem;
    }
    .top-cards-row .card .desc p{
      font-size: 0.65rem;
    }
    .top-cards-row .card .head{
      padding: 15px;
      height: 3.2rem;
    }
    .top-cards-row .card .head h2{
      font-size: 0.8rem;
    }
    .top-cards-row .card .desc{
      padding: 0 5px;
    }
    .top-cards-row .card:nth-child(4) p{
      padding: 0px 8px 0 8px;
    }
  }

  @media screen and (max-width: 576px) {
    .top-cards-background{
      padding: 2rem 0 2rem 0;
      margin-top: 7rem;
    }
    .top-cards-background h1{
      margin-bottom: 2rem;
    }
    .top-cards-row .card{
      width: 100%;
      height: 22rem;
      margin-bottom: 0.5rem;
    }
    .top-cards-row .card img{
      height: 13rem;
    }
    .top-cards-row .card .head{
      height: 4rem;
    }
    .top-cards-row .card .head h2{
      font-size: 1.1rem;
    }
    .top-cards-row .card .desc p{
      font-size: 0.8rem;
    }
  }
  /* Top Cards Section Ends Here */


  /* @media (max-width: 768px) {
    .top-cards-row .card {
      width: 45%;
    }
  }
  
  @media (max-width: 480px) {
    .top-cards-row .card {
      width: 100%;
    }
  } */


  /* Customized Solutions Starts Here */
  .customized-solutions{
    background-image: url('images/bg3.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 0 2rem 0;
    margin-top: 0rem;
  }

  .customized-solutions-container .head{
    text-align: center;
  }
  .customized-solutions-container .head h4{
    /* margin-bottom: 1rem; */
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
  }
  .customized-solutions-container .head h1{
    color: #ec9122;
    max-width: 80%;
    margin: 1rem auto;
  }
  .customized-solutions-container .head p{
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
  }

  .customized-solutions-container .cards-row{
    display: flex;
    justify-content: space-around;
    padding: 2rem 10%;
  }
  .customized-solutions-container .cards-row .card{
    width: 30%;
    border-radius: 10px;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    border: none;
  }
  .customized-solutions-container .cards-row .card img{
    transition: all 0.3s ease;
  }
  .customized-solutions-container .cards-row .card img:hover{
    scale: 1.02;
  }
  .customized-solutions-container .cards-row .card h2{
    font-size: 1.5rem;
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-align: center;
  }
  .customized-solutions-container .cards-row .card p{
    font-size: 0.9rem;
    margin-top: 5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-align: center;
  }
  .customized-solutions-container .cards-row .card button{
    background-color: transparent;
    border: none;
    outline: none;
    margin-bottom: 8px;
    transition: all 0.2s ease;
  }
  .customized-solutions-container .cards-row .card button:hover{
    scale: 1.05;
  }
  .customized-solutions-container .cards-row .card button a{
    text-decoration: none;
    color: #ec9122;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
  }
  .customized-solutions-container .cards-row .card button i{
    color: #fff;
    background-color: #ec9122;
    border-radius: 50%;
    padding: 3px 4px;
    font-size: 13px;
  }

  .customized-solutions-container .foot-text p{
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding-top: 1.4rem;
  }

  @media screen and (max-width: 576px) {
    .customized-solutions{
      padding: 3rem 0 2rem 0;
    }
    .customized-solutions-container .head h4{
      font-size: 1.1rem;
    }
    .customized-solutions-container .head h1{
      max-width: 100%;
      font-size: 1.3rem;
      margin: 0.7rem 0;
    }
    .customized-solutions-container .head p{
      font-size: 0.8rem;
    }
    .customized-solutions-container .cards-row{
      flex-direction: column;
      padding: 1rem 2.5%;
    }
    .customized-solutions-container .cards-row .card{
      width: 100%;
      margin-top: 0.9rem;
    }
    .customized-solutions-container .foot-text p{
      font-size: 0.7rem;
      padding-top: 1rem;
    }
  }
  /* Customized Solutions Ends Here */


  /* Brand Icons Row Starts Here */
  .brand-icons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    overflow: hidden;
  }
  .brand-icons .brand-logo{
    width: 12%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .brand-icons .brand-logo img{
    width: 100%;
    object-fit: contain;
  }
  .brand-icons .brand-logo #brand-logo-2{
    width: 55%;
    /* height: 80%; */
  }
  .brand-icons .brand-logo #brand-logo-6{
    width: 70%;
    /* height: 80%; */
  }

  @media screen and (max-width: 576px) {
    .brand-icons{
      padding: 1.5rem 1rem;
    }
  }
  /* Brand Icons Row Ends Here */


  /* Serve As Consultants Section Starts Here */
  .serve-as-consultants{
    padding: 3rem 0;
  }
  .serve-as-consultants .head{
    text-align: center;
  }
  .serve-as-consultants .head h4{
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
  }
  .serve-as-consultants .head h1{
    /* font-family: "Montserrat", sans-serif; */
    font-size: 2rem;
    font-weight: 500;
    max-width: 70%;
    margin-left: 15%;
    color: #292929;
    margin-top: 1rem;
  }

  .serve-as-consultants .serve-cards{
    padding: 4rem 0 0 0;
    display: flex;
  }
  /* .serve-as-consultants .serve-cards .left, .right{
    width: 25%;
    padding: 2rem;
    display: flex;
    align-items: center;
  } */
  .serve-as-consultants .serve-cards .center{
    width: 100%;
    padding: 2rem;
  }
  .serve-as-consultants .serve-cards .center .card{
    margin: 1rem;
  }
  .serve-as-consultants .serve-cards .center .top, .bottom{
    display: flex;
  }
  .serve-as-consultants .serve-cards .center .bottom{
    margin-top: 3rem;
  }
  .serve-as-consultants .serve-cards .card{
    /* width: 18%; */
    width: 100%;
    padding: 3rem 0.8rem 1rem 0.8rem;
    border: 3px solid #ec9122;
    position: relative;
  }
  .serve-as-consultants .serve-cards .card h5{
    color: #ec9122;
    font-family: "Montserrat", sans-serif; 
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
  }
  .serve-as-consultants .serve-cards .card p{
    font-family: "Montserrat", sans-serif; 
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
  }
  .serve-as-consultants .serve-cards .card img{
    position: absolute;
    top: -2.7rem;
    left: 40%;
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .serve-as-consultants .btn{
    display: flex;
    justify-content: center;
  }
  .serve-as-consultants .btn button{
    background-color: #ec9122;
    border: none;
    outline: none;
    padding: 8px 0;
    border-radius: 5px;
    transition: all 0.2s ease;
  }
  .serve-as-consultants .btn button:hover{
    background-color: #da7901;
  }
  .serve-as-consultants .btn button a{
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 0 20px;
  }
  .serve-as-consultants .btn button i{
    font-size: 0.9rem;
  }

  @media screen and (max-width: 1400px) {
    .serve-as-consultants .serve-cards{
      padding: 4rem 0 0 0;
      display: flex;
    }
    .serve-as-consultants .serve-cards .center{
      width: 100%;
      padding: 2rem;
    }
    .serve-as-consultants .serve-cards .center .card{
      margin: 1rem;
    }
    .serve-as-consultants .serve-cards .center .top, .bottom{
      display: flex;
    }
    .serve-as-consultants .serve-cards .center .bottom{
      margin-top: 2rem;
    }
    .serve-as-consultants .serve-cards .card{
      width: 100%;
      padding: 2.5rem 0.6rem 0.3rem 0.6rem;
    }
    .serve-as-consultants .serve-cards .card h5{
      font-size: 1.3rem;
    }
    .serve-as-consultants .serve-cards .card p{
      font-size: 0.85rem;
    }
    .serve-as-consultants .serve-cards .card img{
      top: -2rem;
      left: 37%;
      width: 60px;
      height: 60px;
    }
  }

  @media screen and (max-width: 576px) {
    .serve-as-consultants{
      padding: 1rem 0.5rem 2.5rem 0.5rem;
      overflow: hidden;
    }
    .serve-as-consultants .head h4{
      font-size: 0.9rem;
    }
    .serve-as-consultants .head h1{
      font-size: 1.1rem;
      max-width: 100%;
      margin-left: 0;
    }
    .serve-as-consultants .serve-cards .center{
      padding: 0 0.5rem 1rem 0.5rem;
    }
    .serve-as-consultants .serve-cards .center .card{
      margin: 0;
      margin-bottom: 2.9rem;
    }
    .serve-as-consultants .serve-cards .center .top, .bottom{
      flex-direction: column;
    }
    .serve-as-consultants .serve-cards .center .bottom{
      margin-top: 0;
    }
    .serve-as-consultants .serve-cards .card img{
      top: -1.8rem;
      left: 42%;
      width: 50px;
      height: 50px;
    }
    .serve-as-consultants .btn button{
      margin-top: -1.5rem;
    }
    .serve-as-consultants .btn button a{
      font-size: 1rem;
      padding: 0 18px;
    }
    .serve-as-consultants .btn button i{
      font-size: 0.8rem;
    }
  }
  /* Serve As Consultants Section Ends Here */


  /* Interesting Facts Section Starts Here  */
  .interesting-facts{
    /* background-image: url('images/bg4.webp'); */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    background-color: #eaeaea;
    padding: 3rem 0;
    margin-bottom: 3rem;
    overflow: hidden;
  }
  .interesting-facts-container h1{
    color: #fff;
    /* font-family: "Montserrat", sans-serif;  */
    font-weight: 500;
    color: #000;
  }
  .interesting-facts-container p{
    color: #fff;
    font-family: "Montserrat", sans-serif; 
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 1.5rem;
    color: #000;
  }

  .interesting-facts-container .fact-img-row{
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
    margin: 3rem 0 1rem 0;
  }
  .interesting-facts-container .fact-img-row .fact-img{
    width: 22%;
  }
  .interesting-facts-container .fact-img-row .fact-img img{
    width: 100%;
    border-radius: 50px;
    position: relative;
  }



  .interesting-facts-container .fact-img-row .fact-img h2{
    position: absolute;
    top: 6%;
    left: 39%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    color: #ec9122;
    font-family: "Montserrat", sans-serif;
  }
  .interesting-facts-container .fact-img-row .fact-img h2 i{
    font-size: 1.5rem;
    padding: 2px 0 0 6px;
  }

  @media screen and (max-width: 576px) {
    .interesting-facts{
      padding: 0.5rem 0;
      margin-bottom: 0;
    }
    .interesting-facts-container p{
      font-size: 0.8rem;
      margin-top: 1rem;
    }
    .interesting-facts-container .fact-img-row{
      flex-direction: column;
      margin: 1.5rem 0 1rem 0;
    }
    .interesting-facts-container .fact-img-row .fact-img{
      width: 70%;
      margin-left: 15%;
      margin-bottom: 1rem;
    }
    .interesting-facts-container .fact-img-row .fact-img h2{
      top: 6%;
      left: 41%;
      font-size: 2rem;
    }
    .interesting-facts-container .fact-img-row .fact-img h2 i{
      font-size: 1rem;
      padding: 0 0 0 6px;
    }
  }
    
  /* Interesting Facts Section Ends Here  */


  /* Certified Local Section Starts Here */
  /* .certified-local{
    padding: 4rem 0;
  }
  .certified-local-container{
    border: 3px solid #ec9122;
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }
  .certified-local-container .left{
    width: 47%;
  }
  .certified-local-container .left h1{
    font-size: 2.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
  }
  .certified-local-container .left p{
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin-top: 1rem;
  }
  .certified-local-container .left .img-row{
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
  }
  .certified-local-container .left .img-row .img-box img{
    width: 70%;
  }
  .certified-local-container .left .img-row .img-box:nth-child(2){
    margin-left: 2rem;
  }
  .certified-local-container .right{
    width: 52%;
  }
  .certified-local-container .right img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  } */
  /* Certified Local Section Ends Here */


  /* Success Stories Section Starts Here */
  /* .success-stories{
    margin: 0 0 5rem 0;
  }
  .success-stories-container{
    border: 3px solid #ec9122;
    border-radius: 25px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }
  .success-stories-container .left{
    width: 48%;
  }
  .success-stories-container .left img{
    width: 100%;
  }
  .success-stories-container .right{
    width: 52%;
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
  }
  .success-stories-container .right .top{
    display: flex;
    align-items: center;
  }
  .success-stories-container .right .top img{
    width: 80%;
  }
  .success-stories-container .right .top h6{
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;
  }
  .success-stories-container .right .top h2{
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 1rem;
  }
  .success-stories-container .right .bottom{
    display: flex;
    flex-direction: column;
    padding-top: 2.5rem;
  }
  .success-stories-container .right .bottom p{
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .success-stories-container .right .bottom p:last-child{
    margin-top: 1.5rem;
    font-weight: 600;
  } */
  /* Success Stories Section Ends Here */


  /* Footer Styles Starts Here */
  footer{
    background-color: #ec9122;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
  }
  .footer{
    display: flex;
    justify-content: space-between;
  }
  .footer .left{
    width: 29%;
    color: #fff;
  }
  .footer .left img{
    background-color: #fff;
    padding: 0.5rem 0.8rem;
    margin-top: 1rem;
  }
  .footer .left a{
    color: #fff;
  }
  .footer .left .foot-icons{
    margin-top: 2rem;
  }
  .footer .left .foot-icons i{
    margin-right: 0.7rem;
    font-size: 1.3rem;
    transition: all 0.2s ease;
  }
  .footer .left .foot-icons i:hover{
    scale: 1.1;
    color: #5f86c3;
  }
  
  .footer .center{
    width: 30%;
  }
  .footer .center h3{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  .footer .center img{
    width: 100%;
    /* position: relative; */
  }
  .footer .center button{
    position: absolute;
    left: 75%;
    top: 46%;
    border: none;
    outline: none;
    font-size: 0.8rem;
    padding: 2px 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 3px #616161;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
  }
  .footer .center button:hover{
    background-color: #ededede4;
  }
  .footer .center .linkedin-content{
   height: 150px;
   overflow-y: scroll;
   padding: 10px;
   background-color: #d2d0d0;
  }
  
  .footer .end{
   width: 22%;
   color: #fff;
   display: flex;
   flex-direction: column;
  }
  .footer .end h3{
   font-size: 1.1rem;
  }
  .footer .end p{
   font-size: 0.8rem;
  }
  .footer .end div{
   margin-bottom: 1rem;
  }
  /* .footer .end img{
   width: 30px;
   margin-left: 90%;
   margin-top: 1.3rem;
   cursor: pointer;
   transition: all 0.3s ease;
  } */
  /* .footer .end img:hover{
   scale: 1.1;
  } */
  .footer-line .line{
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    margin-top: 1rem;
  }
  .copyright{
   display: flex;
   justify-content: space-between;
   color: #fff;
   margin-top: 7px;
   font-size: 0.9rem;
  }

  #back-to-top{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    bottom: 1.2rem;
    right: 1.4rem;
    box-shadow: rgba(0, 0, 0, 0.308) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: all 0.3s ease;
  }
  #back-to-top:hover{
      scale: 1.1;
  }

  @media screen and (max-width: 1400px) {
    .footer .center button{
      top: 41%;
    }
  }

  @media screen and (max-width: 576px) {
    footer{
        margin-top: 1rem;
    }
    .footer{
        flex-direction: column;
      }
      .footer .left{
        width: 100%;
      }
      .footer .left img{
        margin-top: 0.5rem;
        width: 45%;
      }
      .footer .left .foot-icons{
        margin-top: 1rem;
      }
      .footer .center{
        width: 100%;
        margin-top: 2rem;
      }
      .footer .end{
        width: 100%;
        margin-top: 2rem;
      }
      .copyright{
        font-size: 0.7rem;
       }
       #back-to-top{
        width: 20px;
        height: 20px;
        bottom: 1rem;
        right: 1rem;
      }
  }

/* Footer Styles Ends Here */
