* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #403f41;
  font-family: "Merriweather", "Helvetica Neue", Arial, sans-serif;
}

a {
  text-decoration: none;
  outline: none;
}

li {
  list-style: none;
}

hr {
  display: block;
  height: 1px;
  border: none;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 5%,
    #9b9c9e 50%,
    rgba(255, 255, 255, 0) 95%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 5%,
    #9b9c9e 50%,
    rgba(255, 255, 255, 0) 95%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 5%,
    #9b9c9e 50%,
    rgba(255, 255, 255, 0) 95%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 );
  /* IE6-9 */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 9vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.25em 0.75em 0 0.5em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.site-logo {
  z-index: -1;
  position: absolute;
  top: 65px;
  left: calc(50% - 95px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo-img {
  width: 180px;
  height: 55px;
}

.logo-new {
  top: 25px;
  background-color: #fff;
  padding: 0.5em;
  border-radius: 5px;
  border: 1px solid #b0b1b3;
  -webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 6%), 0 1px 2px rgb(0 0 0 / 12%);
  box-shadow: 0 1px 3px rgb(0 0 0 / 6%), 0 1px 2px rgb(0 0 0 / 12%);
}

.header-new {
  background-color: #fff;
  z-index: 10;
  border-bottom: 1px solid #b0b1b3;
  -webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 6%), 0 1px 2px rgb(0 0 0 / 12%);
  box-shadow: 0 1px 3px rgb(0 0 0 / 6%), 0 1px 2px rgb(0 0 0 / 12%);
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav__list li {
  padding: 1em;
  outline: none;
  list-style: none;
}

.nav__link {
  color: rgb(95, 95, 95);
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 1em;
}

.account a {
  padding-right: 2em;
}

.account-link {
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
}

.nav__link:hover {
  color: #0066cc;
}

.cta-btn {
  cursor: pointer;
  color: #fff;
  background-color: #0066cc;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  padding: 0.75em 2em;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 20px rgb(57 144 229 / 19%),
    0 6px 6px rgb(57 144 229 / 23%);
  box-shadow: 0 10px 20px rgb(57 144 229 / 19%), 0 6px 6px rgb(57 144 229 / 23%);
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 1em;
}

.cta-btn:hover {
  -webkit-box-shadow: 0 14px 28px rgb(57 144 229 / 25%),
    0 10px 10px rgb(57 144 229 / 22%);
  box-shadow: 0 14px 28px rgb(57 144 229 / 25%),
    0 10px 10px rgb(57 144 229 / 22%);
}

.burger {
  display: none;
  outline: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 2px;
  background-color: #06c;
  margin: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 1600px) {
  header {
    max-height: 70px;
  }
}

@media (max-width: 1280px) {
  .account {
    display: none;
  }
  header {
    z-index: 100;
  }
  .nav__list {
    height: 100vh;
    width: 100vw;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 102, 204, 0.952);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  .nav__link {
    color: #fff;
    font-family: "Merriweather", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.75rem;
  }
  .nav__link:hover {
    color: rgb(64, 63, 65);
  }

  .burger {
    display: block;
    margin: 0 1em;
  }

  .logo-new {
    top: calc(10% - 5px);
    border-color: transparent;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .logo-new img {
    height: 40px;
    width: 150px;
  }
  .nav__list li {
    padding: 0.85em 1em;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .logo-new {
    padding: 0.25em 0.5em;
  }
}
@media (max-width: 425px) {
  .nav__link {
    font-size: 1.65rem;
  }

  .logo-new {
    border: none;
    top: calc(50% - 25px);
    left: calc(50% - 75px);
  }
}

.hidden__lists {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.toggle {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 100;
}

.toggle .line {
  background-color: #fff;
}

.toggle .line-one {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
  -ms-transform: rotate(-45deg) translate(-5px, 5px);
  transform: rotate(-45deg) translate(-5px, 5px);
}
.toggle .line-two {
  opacity: 0;
}
.toggle .line-three {
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
  -ms-transform: rotate(45deg) translate(-5px, -5px);
  transform: rotate(45deg) translate(-5px, -5px);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* INTRO SECTION */
.home-intro {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 10em 0 5.5em 0;
  position: relative;
  background-image: url(./Images/intro.3819843f.svg);
  background-repeat: no-repeat;
  background-position: center 84%;
  background-size: auto 350px;
  overflow: hidden;
}

.intro__title {
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.175rem;
  color: rgb(64, 63, 65);
}

.intro__text-container {
  text-align: center;
  margin: 1.5em 0;
}

.intro__text-container p {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgb(95, 95, 95);
}

.intro__btn {
  color: #fff;
  font-size: 1.2rem;
  background-color: #0066cc;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1em 2em;
  margin-top: 4em;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 20px rgb(57 144 229 / 19%),
    0 6px 6px rgb(57 144 229 / 23%);
  box-shadow: 0 10px 20px rgb(57 144 229 / 19%), 0 6px 6px rgb(57 144 229 / 23%);
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.intro__btn:hover {
  -webkit-box-shadow: 0 14px 28px rgb(57 144 229 / 25%),
    0 10px 10px rgb(57 144 229 / 22%);
  box-shadow: 0 14px 28px rgb(57 144 229 / 25%),
    0 10px 10px rgb(57 144 229 / 22%);
}

@media (min-width: 1450px) {
  .home-intro {
    background-size: auto;
  }
}

@media (max-width: 768px) {
  .intro__title {
    font-size: 3rem;
  }
  .intro__btn {
    margin-top: 3em;
  }
}

@media (max-width: 550px) {
  .home-intro {
    background-image: url(./Images/intro-mobile.3d82e688.svg);
    background-position: bottom;
    height: 66em;
    margin: 1em 0 5em;
  }
  .intro__title {
    font-size: 2.5rem;
    letter-spacing: 0;
  }

  .intro__text-container {
    margin: 1em 0;
  }
}

/* Pricing cards */
.pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  margin: 5em 0;
  z-index: -1;
}

.pricing__title {
  font-size: 2.75rem;
  line-height: 1.25;
  margin: 2em 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

.pricing__cards {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
  gap: 2em 0;
  width: 100%;
  max-width: 700px;
}
.pricing__cards li {
  padding: 30px 25px 10px;
  background-color: #f7f7f7;
  border: 1px solid #b0b1b3;
  border-radius: 5px;
  max-width: 320px;
  min-height: 320px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pricing__card:last-child {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}

.pricing__card h4 {
  font-size: 2rem;
  font-weight: 400;
  color: #58595a;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

.pricing__card h4 small {
  font-size: 1.2rem;
}

.price__month small {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #6f7072;
  padding: 0;
}

.price__month {
  display: block;
  font-family: "Merriweather", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.5rem;
  padding: 0.4em 0;
  color: #403f41;
}

.pricing__btn {
  width: 100%;
  font-size: 1.125rem;
  padding: 1em 4em;
}

.more-btn {
  padding: 1rem 5rem;
  font-size: 1.2rem;
  margin-top: 3.5em;
}

.pricing__card p {
  color: #9b9c9e;
  margin: 0.5em 0;
}

.pricing__card {
  position: relative;
}

.starting-from {
  position: absolute;
  top: 40%;
  font-family: "Merriweather", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #9b9c9e;
}

.pricing__extra-container {
  text-align: center;
  margin: 3em 0;
}

.pricing__extra-container p {
  font-size: 1rem;
  color: #403f41;
}

.pricing__extra-container a {
  text-decoration: none;
  color: #6f7072;
  font-weight: bold;
  outline: none;
}
.pricing__extra-container a:hover {
  color: #06c;
}

@media (max-width: 650px) {
  .pricing__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 425px) {
  .pricing__cards li {
    padding: 30px 18px 10px;
  }
  .pricing__title {
    font-size: 2rem;
  }
  .price__month {
    font-size: 2rem;
  }
}

/* NETWORK SPEED */
.network__speed {
  margin: 5em 0;
  height: auto;
}

.network-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.network__speed h2 {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.5rem;
  padding-bottom: 1.5em;
}

.chart {
  margin: 3em 0;
  position: relative;
}

.chart::before {
  content: "";
  background: url(./Images/turtle.21a98bee.svg) no-repeat;
  height: 9em;
  width: 250px;
  display: block;
  position: absolute;
  top: -5em;
  right: 3vw;
}

.chart::after {
  content: "";
  background: url(./Images/mafia_bunny.5b8840b2.svg) no-repeat;
  height: 9em;
  width: 160px;
  display: block;
  position: absolute;
  left: 40%;
  top: 80%;
}

.chart > li {
  margin-bottom: 1em;
}

.chart__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.chart-label {
  color: #6f7072;
  font-size: 1.2rem;
  width: 20%;
  min-width: 0;
}

.other-chart {
  height: 2.65em;
}

.chart-base {
  border: 3px solid #1f1e21;
  border-radius: 10px;
  width: 100%;
  height: 3rem;
  position: relative;
}

.chart li:not(:first-child) .chart__container .chart-base {
  height: 2.5em;
}

.chart-base::before {
  content: "";
  z-index: 1;
  position: absolute;
  height: 10px;
  width: 101%;
  bottom: 0;
  right: -3px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: rgba(31, 30, 33, 0.1);
}

.chart-base::after {
  content: "";
  z-index: 3;
  height: 3px;
  width: 80px;
  position: absolute;
  bottom: -3px;
  right: 16px;
  background-position-y: bottom;
  background-position-x: left;
  background-size: 105%;
  background: url(./Images/border-image2.0f188011.svg) no-repeat;
}

.chart li:nth-of-type(2) .chart__container .chart-base::after,
.chart li:nth-of-type(3) .chart__container .chart-base::after,
.chart li:nth-of-type(4) .chart__container .chart-base::after {
  background: url(./Images/border-short.6aaf133f.svg) no-repeat;
  right: -35px;
  width: 70px;
  height: 3px;
  bottom: -3px;
}

.chart-bar {
  height: 100%;
  width: 90%;
  z-index: -10;
  display: block;
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#6f7072),
    to(#b0b1b3)
  );
  background: -o-linear-gradient(left, #6f7072, #b0b1b3);
  background: linear-gradient(90deg, #6f7072, #b0b1b3);
}

.chart li:first-child .chart__container .chart-bar {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#1f4c80),
    to(#06c)
  );
  background: -o-linear-gradient(left, #1f4c80, #06c);
  background: linear-gradient(90deg, #1f4c80, #06c);
}

.chart li:nth-of-type(3) .chart__container .chart-bar {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(hsla(220, 1%, 44%, 0.7)),
    to(hsla(220, 2%, 70%, 0.7))
  );
  background: -o-linear-gradient(
    left,
    hsla(220, 1%, 44%, 0.7),
    hsla(220, 2%, 70%, 0.7)
  );
  background: linear-gradient(
    90deg,
    hsla(220, 1%, 44%, 0.7),
    hsla(220, 2%, 70%, 0.7)
  );
}

.chart li:nth-of-type(4) .chart__container .chart-bar {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(hsla(220, 1%, 44%, 0.4)),
    to(hsla(220, 2%, 70%, 0.4))
  );
  background: -o-linear-gradient(
    left,
    hsla(220, 1%, 44%, 0.4),
    hsla(220, 2%, 70%, 0.4)
  );
  background: linear-gradient(
    90deg,
    hsla(220, 1%, 44%, 0.4),
    hsla(220, 2%, 70%, 0.4)
  );
}
.chart-bar::after {
  content: "";
  z-index: 0;
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #fff;
  display: block;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: -40px;
  top: 12px;
}

.chart-number {
  color: #06c;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 1.2rem;
  width: 6%;
  padding-left: 0.5em;
}

@media (max-width: 768px) {
  .network-inner {
    max-width: 820px;
    padding: 3rem 2rem;
  }

  .chart::before {
    width: 200px;
  }

  .chart-label,
  .chart-number {
    font-size: 1rem;
  }

  .network__speed h2 {
    font-size: 2rem;
  }
}

@media (max-width: 425px) {
  .network-inner {
    padding: 3em 1em;
  }
  .chart-label,
  .chart-number {
    font-size: 0.75rem;
  }

  .chart-label {
    width: 18%;
  }
}

@media screen and (min-width: 1280px) {
  .network-inner {
    max-width: 770px;
  }
}

/* Contact */
.customer__service {
  margin: 6em 0;
}

.customer-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 1em;
}

.customer-inner h2 {
  font-size: 2.75rem;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  color: #403f41;
}

.service-lists li {
  position: relative;
}

.service-lists {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  row-gap: 1em;
  margin-top: 5.5em;
}
.service-lists img {
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 144px;
  height: 144px;
}

.service-lists img:hover {
  -webkit-box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
  box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

.service-lists p {
  margin: 1em 0;
  font-size: 1.25rem;
  color: #403f41;
}

.service-tooltip {
  visibility: hidden;
  width: 140px;
  font-size: 0.9rem;
  padding: 0.5em 0.75em;
  background-color: #fff;
  color: #403f41;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  border-bottom: 4px solid #06c;
  z-index: 10;
  position: absolute;
  bottom: 105%;
  left: calc(50% - 70px);
}

.service-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  border-width: 11px;
  border-style: solid;
  border-color: #06c transparent transparent transparent;
}

.service-tooltip h4 {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #06c;
  margin-bottom: 0.5em;
}

.service-lists li:hover .service-tooltip {
  visibility: visible;
}

@media (max-width: 768px) {
  .customer-inner {
    padding: 1em 0.5em;
  }

  .service-lists img {
    width: 130px;
    height: 130px;
  }
  .customer-inner h2 {
    font-size: 2rem;
  }

  .service-lists p {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .service-lists li:last-child:nth-child(3n-2) {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
}

/* FOOTER */
footer {
  margin-top: auto;
  background-color: #1f1e21;
  padding: 3.5em 3.5em;
  color: #fff;
  width: 100vw;
}

.footer-links,
.footer__container-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-company,
.footer-contact,
.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
}

.footer-social {
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 200px;
}
.footer-social ul {
  margin-top: 0.5em;
  max-width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-company li,
.footer-contact li,
.footer-social li {
  margin-bottom: 1em;
}

.address p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-company ul a,
.footer-contact ul a,
.footer-social ul a {
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.1s ease;
}

.footer-company ul a:hover,
.footer-contact ul a:hover,
.footer-social ul a:hover {
  color: #9b9c9e;
}

footer h6 {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  color: #9b9c9e;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 1.5em;
}

.social-icon i {
  font-size: 2rem;
  padding-right: 1em;
  color: #9b9c9e;
  transition: all 0.2s ease;
}

.social-icon i:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .footer__container-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2em 0;
    max-width: 600px;
    width: 100%;
    margin: 0;
  }
  .footer-company,
  .footer-contact {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  footer {
    padding: 3em 2em 0;
  }

  .footer-links,
  .footer__container-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-social {
    margin-top: 1em;
  }

  .footer-social ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 300px;
  }

  .footer-social h6 {
    display: none;
  }
}

@media (max-width: 375px) {
  footer {
    padding: 3em 1em 0;
  }

  .footer__container-one {
    max-width: 350px;
  }

  .footer-company ul a,
  .footer-contact ul a {
    font-size: 0.9rem;
  }
}
