/* styles.css */

/* Reset some default browser styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
.navi-section{
  height: 80px;
}
header{
  height: 100%;
  position: relative;
  top: 0; 
  width: 100%;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  background : #000;
  object-fit: cover;
  background-size: cover;
}
header .logo{
  position: relative;
  font-size: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  float: left;
}
header .navigation a{
  color: #fff;
  text-decoration: none; 
  font-size: 25px !important;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 2px 15px;
  border-radius: 20px;
  transition: 0.3s;
  transition-property: background;
}
header .navigation a:not(:last-child){
  margin-right: 1px;
}
.logo-link img{
  position: absolute;                             /* Position the logo absolutely */
  top: 50%;                                       /* Align the top of the logo to the middle of the navigation bar */
  left: 10px;                                     /* Adjust the left position of the logo */
  transform: translateY(-50%);                    /* Adjust to vertically center the logo */
  width: auto;                                    /* Allow the logo to adjust its width */
  height: 90px;                                   /* Set the desired height of the logo */
}
.header a.logo-link {
  position: absolute;                             /* Position the logo link absolutely */
  top: 50%;                                       /* Align the top of the logo link to the middle of the navigation bar */
  left: 10px;                                     /* Adjust the left position of the logo link */
  transform: translateY(-50%);                    /* Adjust to vertically center the logo link */
  text-decoration: none;                          /* Remove underline from the logo link */
  color: inherit;                                 /* Inherit text color from parent */
}

header .navigation a:hover,
header .navigation .logo-link:hover img {
  filter: drop-shadow(0 0 5px rgba(85, 146, 255, 0.5))
          drop-shadow(0 0 10px rgba(85, 146, 255, 0.5))
          drop-shadow(0 0 20px rgba(85, 146, 255, 0.5))
          drop-shadow(0 0 30px rgba(85, 146, 255, 0.5));
}
header .navigation a:hover,
header .navigation .logo-link:hover img {
  text-shadow: 0 0 5px rgba(85, 146, 255, 0.5), /* Lighter shadow */
               0 0 10px rgba(85, 146, 255, 0.5), /* Medium shadow */
               0 0 20px rgba(85, 146, 255, 0.5), /* Stronger shadow */
               0 0 30px rgba(85, 146, 255, 0.5); /* Even stronger shadow */
}
label{
  display: none;
}
#check{
  z-index: 3;
  display: none;
}
.logo{
  float: inline-start;
}


.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  transition: opacity 1s, visibility 0.75s;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: #009578;
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}


/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}



/* ---------------------------- */
/* ---------------------------- */


/* Home page image slider*/
.swiper {
  width: 95%; /* Adjust this value to cover half the screen */
  height: 50%; /* Make it cover the entire height of the viewport */
  margin-top: 50px;
  /* margin-bottom: 160px; */
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.swiper-slide {
  text-align: center !important;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: none;
  padding-top: none;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 80vh;
  object-fit: cover;
}
.swiper-slide::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: -1px;
  bottom: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.5) 5%, rgba(0,0,0,0) 100%)!important;
}


.swiper-slide .subtitle {
  font-size: 34px;
  font-weight: bolder;
  max-width: 400px;
  line-height: 1.3;
  position: absolute;
  top: 10%;
  right: 60%;
  transform: translate(-50%, -50%);
  color:#ffffff;
  text-align: left;
  z-index: 1;
}

.swiper-slide .text {
  font-size: 35px !important;
  max-width: 400px;
  line-height: 1.3;
  position: absolute;
  top: 70%;
  right: 70%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: left;
  z-index: 1;
}


.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 50vh;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
/* Define the animation */
@keyframes fadeUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Apply animation to elements */
.swiper-slide .subtitle.animated, .swiper-slide .text.animated {
  animation: fadeUp 0.8s ease forwards;
}


/* Content styles */

.content {
    /* max-width: 12000px; */
    margin: 0 auto;
    padding: 60px;
}

.content h1 {
    font-size: 3em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-bottom: 25px;
    /* color: rgb(240, 165, 15);    */
    color:  #1a1a1a;

  }
.content h1:hover {
  color: #5592ff;
}

.content p {
    font-size: 1.5em;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    font-family: Arial, sans-serif;
    text-align: center;
    margin-bottom: 20px;
    /* color: rgb(233, 21, 21); */
    color: #222222;

}
.content p:hover {
  color: #5592ff;
}

.additional-content p{
    font-size: 1.5em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    margin-bottom: 25px;
    /* color: rgb(189, 14, 174); */
    color: #666666;
}
.additional-content p:hover {
  color: #5592ff;
}

/*------------------------------------------*/


/* Services */

.heading{
  font-size: 1.5em;
  text-align: center;
  color: #0c08e7;
}

.heading:hover {
  color: #00bbff;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  padding: 0 20px;
}

.service-card {
  flex: 0 0 calc(33.33% - 15px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: box-shadow 0.3s ease;
  margin-bottom: 20px;
  margin-right: 20px;
  height: 300px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.service-card .icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #000; /* Set text color to black */
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.service-card .icon-box h3
{
  margin: 0;
  color: #000; /* Set text color to black */
  font-size: 20px; /* Adjust font size as needed */
  font-weight: bold; /* Set font weight to bold */
}

.service-card .icon-box p {
  margin: 0;
  color: #000; /* Set text color to black */
  font-size: 16px; /* Adjust font size as needed */
  /* font-weight: bold; Set font weight to bold */
}

.service-card.e-commerce {
  background-image: url('e-commerce.jpg');
  background-size: 60%;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.service-card.finance-banking {
  background-image: url('Finance-And-Banking.jpg'); 
  background-size: 60%;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.service-card.telecom {
  background-image: url('tele.jpg'); 
  background-size: 60%;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.service-card.education-training {
  background-image: url('education-training.jpg'); 
  background-size: 60%;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.service-card.health-care {
  background-image: url('HCare.jpg');
  background-size: 60%;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.service-card.tours-travels {
  background-image: url('tours-travels.jpg');
  background-size: 60%;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.service-card:nth-child(3n) {
  margin-right: 0;
}

.service-card:hover {
  box-shadow: 0 8px 12px rgba(255, 255, 255, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5); /* Adjust opacity as needed */
  backdrop-filter: blur(5px); /* Apply blur effect */
  transition: backdrop-filter 0.3s ease;
}

.service-card:hover::before {
  backdrop-filter: blur(0); /* Remove blur effect on hover */
}

.service-card:hover img {
  opacity: 0.5; /* Reduce opacity of image on hover */
}



/* ------------------------------------- */

.button_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}
button {
  padding: 10px 20px;
  background-color: #00bbff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #5592ff;
}

/* Owner Style */

/*.owner-slider-section {*/
/*  text-align: center;*/
/*  margin-bottom: 50px;*/
/*  color: #00bbff;*/
/*  width: 100%;*/
/*}*/

/*.owner-slider-section h2 {*/
/*  font-size: 28px;*/
/*  margin-bottom: 20px;*/
/*}*/

/*.owner-slider-section h2:hover {*/
/*  color: #020000;*/
/*}*/

/*.owner-slider-container {*/
/*  display: flex;*/
/*  justify-content: space-around;*/
/*  align-items: center;*/
  flex-wrap: wrap; /* Allow items to wrap to the next line if necessary */
  
/*}*/

/*.owner-slide {*/
/*  flex: 0 0 auto;*/
/*  margin-right: 20px;*/
/*}*/

/*.owner-slide img {*/
/*  border-radius: 50%;*/
  width: 200px; /* Adjust size as needed */
  height: 200px; /* Adjust size as needed */
/*}*/

/*.owner-slide p{*/
/*  font-size: 20px;*/
/*  margin-bottom: 20px;*/
/*  font-weight: bold;*/
/*}*/

/*.owner-slide h3{*/
/*  color: #000;*/
/*  font-size: 20px;*/
/*  font-weight: bolder;*/
/*}*/




 

/* ---------------------------------- */

/* Custom footer CSS */
a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}
.pg-footer {
  font-family: 'Roboto', sans-serif;
}


.footer {
    background-color: #476f70fd; 
    color: #fff;
}
.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: -1px 0px 300px !important;
    /* position: relative; */
    font-size: 17px;
    justify-content: space-around;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 21px;
    padding-right: 82px;
    width: 100%;
    color: #fff;
 
}
.footer-logo-link img{
  box-sizing: border-box;
  float: left;
  padding-left: 10px;
  padding-right: 200px;
  width: 400px

}
.footer-logo p{
  box-sizing: border-box;
  float: left;
  padding-left: 10px;
  padding-right: 190px;
  width: 380px;
  font-size: 14px;
  text-align: justify;
  
}
.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;

}
.footer-logo-link {
    display: inline-block;
}
.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
/* .footer-menu-name:hover{
  color: #0c08e7;
} */
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 0px;
    padding-left: 0;
}
.footer-menu-list li  a{
  font-size: 17px;

}
.footer-menu-list li {
    margin-top: 5px;
    font-size: 26px;
    margin-bottom: -12px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}
.button:last-of-type {
    margin-right: 0;
}
.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #fffff2;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}





.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 26px;
    left: 13px;
    top: 22px;
    width: 26px;
}

.footer-social-link {
    display: block;
    /* padding: 10px; */
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 72px;
    top: 16px;
    width: 35px;
}
.footer-social-link.facebook {
    height: 48px;
    left: 133px;
    top: 20px;
    width: 24px;
}

.footer-social-link.insta {
    height: 34px;
    left: 186px;
    top: 22px;
    width: 39px;
}

.footer-copyright {
    background-color: #027b9a;
    color: #fff;
    padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}
.footer-content-column ul li a:hover{
  color: #000;
}
.footer-call-to-action-link-wrapper :hover{
  color: #000;
}









#scrollUp {
  font-size: 20px;
  color: #fff !important;
  background: #ff7038 ;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 88px;
  z-index: 99;
  cursor: pointer;
}
a:link, a:visited, a:focus {
  text-decoration: none;
  outline: 0;
}
.fas {
  font-weight: 900;
}
.fas {
  font-family: "Font Awesome 5 Free";
}
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}


.whatsapp-button {
  position: fixed;
  bottom: 150px;
  right: 20px;
  z-index: 9999;
  background-color: green;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #25d366; /* WhatsApp green color on hover */
}

.whatsapp-button img {
  width: 40px; /* Adjust icon size */
  height: auto;
}


/*responsive styles */
@media(max-width: 768px){
 
  header .navigation{
      display: none;
  }
  label{
      display: block;
      font-size: 25px;
      cursor: pointer;
      transition: 0.3s;
      transition-property: color;
  }
  label:hover{
      color: #fff;
  }
  label .close-btn{
      display: none;
  }
  #check:checked ~ header .navigation{
      z-index: 2;
      position: fixed;
      background: #fff;
      color: #0c0c0c;
      top: 0;
      bottom: 0;
      left: 0;
      right: 150px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* align-items: center; */
  }
  #check:checked ~ header .navigation a{
      font-weight: 700;
      margin-right: 0;
      margin-bottom: 50px;
      letter-spacing: 2px;
      color: #000;
  }
  #check:checked ~ header label .menu-btn{
      display: none;
  }
  #check:checked ~ header label .close-btn{
    z-index: 2;
    display: block;
    /* position: fixed; */
    color: #fff;
    left: 618px;
}
label .menu-btn{
    /* position: absolute; */
    color: #fff;
    left: 617px;
  top: 16px;
}
  header .logo{
      position: absolute;
      bottom: -6px;
      float: left;
      width: 90px;
  }
  .logo-link img{
    position: absolute;                             /* Position the logo absolutely */
    top: 50%;                                       /* Align the top of the logo to the middle of the navigation bar */
    left: 10px;                                     /* Adjust the left position of the logo */
    transform: translateY(-50%);                    /* Adjust to vertically center the logo */
    width: auto;                                    /* Allow the logo to adjust its width */
    height: 70px;                                   /* Set the desired height of the logo */
  }
  .swiper{
    overflow: hidden;
  }
  .swiper-slide .text {
    font-size: 35px !important;
    max-width: 400px;
    line-height: 1.3;
    position: absolute;
    top: 70%;
    right: 70%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: left;
    z-index: 1;
  }
  .service-card {
    flex: 0 0 calc(100% - 10px); /* Two cards per row on tablets */
  }
  .swiper-slide .subtitle {
    font-size: 20px;
    top: 19%;
    text-align: center;
  }
  }

  .swiper-slide .text {
    font-size: 18px;
    top: 32%;
    right: 60%;
    text-align: center;
  }
  .content h1 {
    font-size: 35px;
  
  .content p {
    font-size: 20px;
  }
.additional-content p{
  font-size: 18px;
  }
  .swiper-slide img{
    flex-direction: column !important;
  }
  
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
/* Up 768px */
/* --------------------------------------- */
/* down 480px */

@media screen and (max-width: 480px) {

  header .navigation{
    display: none;
  }
  label{
    display: block;
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
    transition-property: color;
  }
  label:hover{
    color: #fff;
  }
  label .close-btn{
    display: none;
  }
  #check:checked ~ header .navigation{
    z-index: 20;
    position: fixed;
    background: #fff;
    color: #0c0c0c;
    top: -500px;
    bottom: 0;
    left: 0;
    right: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
  }
  #check:checked ~ header .navigation a{
    font-weight: 700;
    margin-right: 0;
    margin-bottom: 50px;
    letter-spacing: 2px;
    color: #000;
  }
  #check:checked ~ header label .menu-btn{
    display: none;
  }
  #check:checked ~ header label .close-btn{
  z-index: 22;
  display: block;
  position: fixed;
  color: #fff;
  left: 380px;  
  top: 28px;
  }
  label .menu-btn{
  /* position: absolute; */
  color: #fff;
  left: 617px;
  top: 16px;
  }


/* ------------------------------ */
  .service-card {
    flex: 0 0 calc(100% - 10px); /* One card per row on mobile devices */
    margin-right: 0;
  }
  .swiper{
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin: 0 auto !important;
    
  }

  .swiper-slide .subtitle {
    font-size: 20px;
    top: 19%;
    right: 0%;
    text-align: center;
  }
  .swiper-slide img{
    flex-direction: column !important;
  }
  .swiper-slide .text {
    font-size: 27px !important;
    max-width: 400px;
    line-height: 1.3;
    position: absolute;
    top: 10% !important;
    right: 0% !important;
    transform: translate(0%, -8%) !important;
    color: #ffffff;
    text-align: center;
    z-index: 1;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 105px) !important;
}

/* .service-card::before {
  scroll-snap-align: start; 
  backdrop-filter: none;
} */

  .content h1 {
    font-size: 35px;
  }
  .content p {
    font-size: 20px;
  }
.additional-content p{
  font-size: 18px;
  }
.heading h2{
  font-size: 30px;
}
.heading p{
  font-size: 22px;
}

.footer-content-column {
  /* box-sizing: border-box; */
  float: none !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  width: 100%;
  color: #fff;
}
.footer-logo p {
  box-sizing: none !important;
  float: none !important;
  padding-left: none !important;
  padding-right: none !important;
  width: 380px !important;
  font-size: 16px !important;
  text-align: center !important;
}
.footer{
    width: 100%;
    color: #fff;
    margin: 0 auto;
    justify-content: center;
    display: grid;
    text-align: center;
}
.footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 0px 0px 0px !important;
  position: relative;
  font-size: 17px;
  justify-content: space-around;
}
.footer-logo-link img {
  padding-top: 15px;
  padding-left: 0px;
  padding-right: 0;
  width: 220px;
}
.footer-logo p {
  padding-left: 0px;
  padding-right: 0px;
  font-size: 14px;
  text-align: justify;
  display: grid;
  margin: 0 auto;
}
.footer-social-links {
  bottom: 0;
  height: 54px;
  position: relative;
  right: 0;
  width: 236px;
}
.whatsapp-button {
  position: fixed;
  bottom: 90px;
  right: 214px;
}

#scrollUp {
  font-size: 20px;
  color: #fff !important;
  background: #ff7038 ;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  right: 225px;
  bottom: 30px;
  z-index: 99;
  cursor: pointer;
}
.footer-copyright{
  float: inline-end;
}
.footer-social-link.twitter {
  height: 28px;
  left: 67px;
  top: 16px;
  width: 35px;
}
.footer-social-link.insta {
  height: 34px;
  left: 180px;
  top: 22px;
  width: 39px;
}

}


@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}


@media (min-width: 760px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 0px 0px 359px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }
}
