:root {
  --primary-color: #eabe3f;
  --dark-color: #53575a;
  --white: #fff;
  --blue-nav: #212a3f;
  --blue-text: #00bfff;
  --size-title: 40px;
  --size-text: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Saira", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* Estilos generales */
img {
  width: 100%;
}

.container {
  width: 80%;
  margin: auto;
}

h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

h2.title {
  font-size: var(--size-title);
  font-weight: 400;
  margin: 20px 0;
}

span.bold {
  color: rgb(1, 1, 80);
}

p.text {
  font-size: var(--size-text);
  color: var(--dark-color);
}

@media only screen and (max-width: 900px) {
  h2.title {
    font-size: 30px;
  }

  p.text {
    font-size: 18px;
  }
}

/* Botones */
.button-one,
.button-two {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  padding: 7px 15px;
  font-weight: 700;
  margin: 15px 25px 0 0;
  cursor: pointer;
  transition: 0.5s ease-in;
}

.button-one {
  background: var(--white);
  color: var(--dark-color);
}

.button-two {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.button-two:hover {
  background: var(--white);
  color: var(--dark-color);
}

@media only screen and (max-width: 640px) {
  .button-one,
  .button-two {
    font-size: 20px;
  }
}

#header {
  width: 100%;
  position: relative;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--blue-nav);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
  -moz-box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.menu .logo-box {
  margin-left: 100px;
}

.menu a {
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
}

.menu .logo-box a {
  font-size: 30px;
  font-weight: 700;
}

.menu .list-container {
  margin-right: 100px;
}

.menu .list-container .list {
  display: flex;
}

.list-container .list li {
  list-style: none;
}

.list-container .list li a {
  margin-right: 10px;
  transition: 0.5s;
  padding: 0 7px;
}

.list-container .list li a.activo {
  font-weight: 700;
  border-bottom: 1px solid var(--blue-text);
}

.list-container .list li a:hover {
  border-bottom: 1px solid var(--blue-text);
}

/* Menu hamburger */
.container-icon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 30px;
  right: 30px;
  display: none;
  cursor: pointer;
}

.hamburger {
  position: absolute;
  width: 25px;
  height: 4px;
  background: var(--white);
  border-radius: 10px;
  transition: 0.4s ease-in;
}

.hamburger:after,
.hamburger:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 4px;
  background: var(--white);
  border-radius: 10px;
  transition: 0.4s ease-in;
}

.hamburger:after {
  top: -8px;
}

.hamburger:before {
  top: 8px;
}

.hamburger.close-hamburger.hamburger {
  background: transparent;
}

.close-hamburger.hamburger::after {
  top: 0;
  transform: rotate(45deg);
}

.close-hamburger.hamburger::before {
  top: 0;
  transform: rotate(135deg);
}

/* Estilos responsive del menu */
@media only screen and (max-width: 900px) {
  .menu .logo-box {
    margin-left: 60px;
  }

  .container-icon {
    display: flex;
    margin-right: 0;
  }

  .menu .list-container {
    position: absolute;
    width: 60%;
    left: -100%;
    height: calc(70vh - 100px);
    top: 60px;
    background: var(--white);
    transition: 0.5s ease-in-out;
  }

  .menu .list-container .list {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 3px solid var(--dark-color);
  }

  .menu .list-container .list li {
    width: 80%;
    height: 40px;
    margin: 8px 0;
    text-align: center;
    border-bottom: 1px solid var(--dark-color);
  }

  .menu .list-container .list li a {
    margin: 0;
    padding: 0;
    color: var(--dark-color);
  }

  .menu .list-container .list li a.activo {
    border: none;
  }
}

@media only screen and (max-width: 640px) {
  .menu .logo-box {
    margin-left: 40px;
  }

  .menu .logo-box a {
    font-size: 28px;
  }

  .container-icon {
    right: 0;
  }

  .menu .list-container {
    width: 80%;
    height: calc(80vh - 100px);
  }
}

.banner {
  position: relative;
}

.banner .banner-container {
  width: 100%;
  height: 100vh;
  background: url(../img/background.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
}

.banner-container .info-banner .title1 {
  color: var(--white);
  font-size: 44px;
  font-weight: 100;
  padding: 0;
  margin: 0;
}


.banner-container .info-banner .title2 {
  color: var(--white);
  font-size: 50px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  margin: 10px 0;
}

.banner-container .info-banner .line {
  width: 430px;
  height: 1px;
  background: var(--white);
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}

.logo-banner{
  width: 50%;
  display: flex;
  justify-content: center;
}

.logo-banner img{
  width: 50%;
}

@media only screen and (max-width: 900px){
  .logo-banner img {
    width:70%;
  }
}


/* Side bar del header */
.banner-container .side-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Redes sociales */
.social-media .social {
  margin: 0;
  padding: 0;
}

.social-media .social li {
  list-style: none;
}

.social-media .social li a {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  font-size: 25px;
  margin: 5px 0;
  transition: 0.4s;
}

.social-media .social li a:hover {
  color: var(--primary-color);
}

/* Estilos responsive del header */
@media only screen and (max-width: 900px) {
  .banner .banner-container,
  .banner-container .side-bar {
    height: 600px;
  }

  .banner-container .info-banner {
    margin-top:150px;
  }

  .banner-container .info-banner .title2,
  .banner-container .info-banner .title1 {
    font-size: 35px;
  }
}




@media only screen and (max-width: 640px) {
  .banner .banner-container .side-bar {
    top: 60px;
    left: 0;
    width: 100%;
    height: 50px;
  }

  .banner-container .side-bar .social {
    display: flex;
  }

  .banner .banner-container,
  .banner-container .side-bar {
    height: 700px;
  }

  .banner-container .info-banner .line {
    width: 60%;
  }

  .banner-container .info-banner .title1 {
    font-size: 30px;
  }

  .banner-container .info-banner .title2 {
    font-size: 30px;
  }

  .info-banner {
    margin-top:80px;
  }
  .info-banner .logo-banner{
    width:100%;
  }

  .info-banner .logo-banner img{
    width: 80%;
    margin-top:20px;
    margin-left: 40px;
  }
}

/* Section mensaje */
.mensaje {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}

.mensaje .img-mensaje {
  width: 20%;
}

.mensaje .text-mensaje p {
  text-align: center;
  font-size: 24px;
  margin: 15px 0;
}

.mensaje .button-one {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 500;
  border: 1px solid var(--primary-color);
}

.mensaje .button-one:hover {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

@media only screen and (max-width: 900px) {
  .mensaje .img-mensaje {
    width: 30%;
  }
}

@media only screen and (max-width: 640px) {
  .mensaje .img-mensaje {
    width: 70%;
  }

  .mensaje .button-one {
    padding: 8px 0;
    margin: 0;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
  }
}

/* Nosotros */
.nosotros {
  background: var(--white);
  padding: 30px 0 0 0;
}

.nosotros .container {
  display: flex;
  flex-wrap: wrap;
}

.nosotros .text-us {
  width: calc(60% - 10px);
  padding-right: 30px;
}

.nosotros .img-us {
  width: calc(38% - 10px);
}
.inter-ops {
  width: 100%;
  background-color: #d3d3d3;
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
  border-radius: 15px; 
}

.inter-ops a {
  text-decoration: none;
}

.inter-ops .highlight {
  font-weight: bold;
  color: #003975;
}


@media only screen and (max-width: 900px) {
  .nosotros .container {
    align-items: center;
  }

  .nosotros .timg-us {
    width: calc(40% - 10px);
  }
}

@media only screen and (max-width: 640px) {
  .nosotros {
    padding: 20px 0 30px 0;
  }

  .nosotros .text-us {
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .nosotros .img-us {
    margin: auto;
    margin-top: 30px;
    width: 90%;
  }
}




/* Seccion para pasar a otra pagina */

.bg_banner-other {
  background-color: var(--blue-nav);
  padding:50px 0;
  margin-top:50px;
}

.bg_banner-other .info_banner-other {
  background-color: var(--white);
  padding: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap:wrap;
}

.info_banner-other h3{
  font-size: 30px;
  color:var(--dark-color);
  margin-bottom: 20px;
}

.info_banner-other .interops{
  font-size: 25px;
  font-weight: bold;
  color:var(--dark-color);
  margin-bottom: 20px;
}


.info_banner-other h3 span {
  color:var(--blue-nav);
}

.info_banner-other .typed {
  font-size: 25px;
  font-weight: bold;
  color:var(--blue-nav);
}

.info_banner-other .button_other {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 25px;
  font-weight: 700;
  margin: 15px 25px 0 0;
  margin-top:30px;
  cursor: pointer;
  transition: 0.3s ease-in;
  color: var(--white);
  background-color: var(--blue-nav);
  box-sizing: border-box;
  border-radius: 10px;
  border:1px solid var(--blue-nav);
}

.info_banner-other .button_other:hover{
  background-color: var(--white);
  color:var(--blue-nav);
}

.info_banner-other .info_other {
  width:50%;
}

.info_banner-other .img_other {
  width:20%;
  margin-right: 50px;
}


@media only screen and (max-width: 900px) {
  .info_banner-other .img_other {
    width:30%;
    margin-right: 50px;
  }
}



@media only screen and (max-width: 640px) {
  .bg_banner-other .info_banner-other {
    padding: 30px 20px;
    justify-content: space-around;
    align-items: center;
    flex-wrap:wrap;
  }
  
  .info_banner-other h3{
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .info_banner-other .interops{
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .info_banner-other .typed {
    font-size: 22px;
  }
  
  .info_banner-other .button_other {
    font-size: 16px;
    padding: 7px 20px;
    margin: 15px 25px 0 0;
    margin-top:20px;
    width:100%;
    text-align: center;
  }

  
  .info_banner-other .info_other {
    width:100%;
  }
  
  .info_banner-other .img_other {
    width:80%;
    margin:auto;
    margin-top:30px;
  }
}



/* Seccion servicios */
.services_container {
  padding:50px 0;
}
.info_services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info_services .list_container {
  display: flex;
  flex-wrap: wrap;
}

.list_container .list_services {
  margin-right: 30px;
}

.list_container .list_services li {
  list-style: none;
  margin:0;
  padding: 0;
  font-size: 20px;
  color: var(--dark-color);
  font-weight: bold;
  margin:10px 0;
}

.list_container .list_services li i {
  color:#2BD480;
  font-size: 25px;
  margin-right: 15px;
}

.services_container .button_services {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 25px;
  font-weight: 700;
  margin: 15px 25px 0 0;
  margin-top:30px;
  cursor: pointer;
  transition: 0.3s ease-in;
  color: var(--white);
  background-color: var(--blue-nav);
  box-sizing: border-box;
  border-radius: 10px;
  border:1px solid var(--blue-nav);
}

.services_container .button_services:hover{
  background-color: var(--white);
  color:var(--blue-nav);
}

.info_services .img_services {
  width: 35%;
  margin-right: 50px;
}

@media only screen and (max-width: 900px){
  .info_services .img_services {
    width: 40%;
    margin-right: 0;
  }

  .info_services .list_container {
   width: 50%;
  }
  
  .list_container .list_services {
    margin:0;
  }
}

@media only screen and (max-width: 600px) {
  .info_services .list_container {
    width: 100%;
   }
   .info_services .img_services {
    width: 70%;
    margin:auto;
    margin-top:30px;
  }
  .list_container .list_services li {
    font-size: 18px;
  }

  .list_container ul {
    margin:0;
    padding:0;
  }
  .list_container .list_services li i {
    font-size: 20px;
    margin-right: 15px;
  }

  .services_container .button_services {
    font-size: 16px;
    padding: 7px 20px;
    margin: 15px 25px 0 0;
    margin-top:20px;
    width:100%;
    text-align: center;
  }
}

/* Seccion vision y mision */
.vision-mision-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto;
}

@media only screen and (max-width: 900px) {
  .vision-mision-container {
    justify-content: center;
  }
}

.vision-mision {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.vision-mision div {
  width: auto;
  margin: auto;
}

@media only screen and (max-width: 900px) {
  .vision-mision img {
    width: 80%;
    margin: 50px auto;
  }

  .vision-mision {
    width: 500px;
  }
}

.vision,
.mision {
  flex: 1;
  padding: 20px;
  background-color: rgb(29, 29, 65);
  /* Fondo */
  border: 2px solid #003975;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vision:hover,
.mision:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #0056b3;
}

.vision .content,
.mision .content {
  color: white;
  /* Letras */
  text-align: justify;
  margin-bottom: 20px;
}

.vision h3,
.mision h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.vision p,
.mision p {
  line-height: 1.6;
  width: 100%;
}

.img-vision-mision {
  display: block;
  margin: 0 auto 20px auto;
  padding: 0 15px 0 15px;
  width: 15%;
}

/* ---------- Servicios ---------------- */
.servicios {
  padding: 50px 0;
}

@media only screen and (max-width: 900px) {
  .servicios {
    padding: 0;
  }
}

.services-background {
  background-color: #f3f3f3;
  width: 100%;
  padding: 50px 0;
  box-sizing: border-box;
}

@media only screen and (max-width: 640px) {
  .services-background {
    padding: 20px 0;
  }
}

.servicios .card-servicios {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.servicios .card-servicios .card {
  background-color: white;
  width: calc(50% - 10px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 6px solid rgb(66, 66, 179);
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
  -moz-box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
}

.card-servicios .card .social {
  display: flex;
}

.card .social-media .social li a {
  color: var(--dark-color);
  font-size: 23px;
  margin: 7px 0;
}

.card .social-media .social li a:hover {
  color: var(--primary-color);
}

.card .img-card {
  width: calc(40% - 10px);
}

.card .img-card img {
  height: 100%;
  border-radius: 10px 0 0 4px;
  object-fit: contain;
  object-position: center;
}

.card .info-card {
  width: calc(60% - 10px);
  padding: 10px;
  position: relative;
}

.card .info-card h3 {
  font-weight: 300;
  font-size: 18px;
}

.card .info-card p {
  font-size: 18px;
  margin-top: 10px;
}

.card .info-card .button-container {
  width: 100%;
  text-align: center;
}

.card .info-card .button-two {
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
  margin: 20px 0 0 0;
  padding: 5px 10px;
  font-size: 14px;
  display: block;
  margin-top: 50px;
}

.card .info-card .button-two:hover {
  background: var(--dark-color);
  color: var(--white);
}

@media only screen and (max-width: 900px) {
  .servicios h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 30px;
  }
  .card .img-card {
    width: calc(40% - 5px);
    height: 120px;
  }

  .card .info-card {
    width: calc(60% - 5px);
  }

  .card .info-card {
    padding: 5px 0;
  }

  .card .info-card h3 {
    font-size: 15px;
  }

  .card .info-card p {
    font-size: 10px;
    margin-top: 4px;
    text-align: justify;
    text-align-last: justify;
    padding-right: 20px;
    margin-bottom: 20px;
  }

  .card .info-card .button-two {
    font-size: 12px;
    display: block;
    margin-right: 20px;

    margin-top: 0;
  }
}

/*    Responsive servicios      */

@media only screen and (max-width: 640px) {
  .servicios .card-servicios .card {
    width: 100%;
  }

  .card .img-card {
    width: 100%;
    height: 180px;
  }

  .card .img-card img {
    border-radius: 10px 10px 0 0;
  }

  .card .info-card {
    padding: 20px 15px;
    width: 100%;
  }

  .card .info-card h3 {
    font-size: 20px;
  }

  .card .info-card p {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .card .social-media {
    margin: 10px 0;
  }

  .card .social-media .social li a {
    font-size: 26px;
  }

  .card .info-card .button-two {
    font-size: 16px;
    text-align: center;
    width: 100%;
    margin: 15px 0 0 0;
    padding: 6px 0;
    margin-bottom: 5px;
  }
}

/* Seccion contpaq */

.contpaq_banner-img{

}


.contpaq_container {
  margin: 80px 0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.contpaq_container .item_contpaq {
  width:calc(30% - 20px);
  background-color: #ffff;
  border-radius: 10px;
  border-bottom:5px solid var(--blue-nav);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.item_contpaq .card_img img{
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.item_contpaq .card_info{
  padding: 20px;
}
.item_contpaq .card_info h3{
  font-size: 22px;
}

.item_contpaq .card_info ul {
  margin:0;
  padding: 0;
  margin-top: 20px;
}

.item_contpaq .card_info ul li {
  list-style: none;
  color: var(--dark-color);
  font-size: 20px;
  margin-top: 10px;
}

.item_contpaq .card_info ul li i {
  color:#007bff;
  font-size: 25px;
  margin-right: 15px;
}

@media only screen and (max-width: 900px) {
  .contpaq_container {
    margin:20px 0;
  }
  .contpaq_container .item_contpaq {
    width:calc(50% - 20px);
    margin:30px 0;
  }
  .item_contpaq .card_info ul li {
    font-size: 18px;
  }
  
  .item_contpaq .card_info ul li i {
    font-size: 20px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 640px) {
  .contpaq_container {
    margin:10px 0;
  }
  .contpaq_container .item_contpaq {
    width:100%;
    margin:10px 0;
  }

  .item_contpaq .card_info h3{
    font-size: 20px;
  }
  .item_contpaq .card_info ul li {
    font-size: 18px;
  }
  
  .item_contpaq .card_info ul li i {
    font-size: 20px;
    margin-right: 7px;
  }
}

/* Contacto */
.contact-section {
  padding: 20px 0 50px 0;
  background: linear-gradient(180deg, #a2cfff, #1a237e, #000000);
}

.contact-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 15px;
}

.contact-section .title {
  font-size: var(--size-title);
  font-weight: 400;
  color: white;
  text-align: center;
  width: 100%;
}

.contact-section .map-container {
  flex: 1 1 75%;
  text-align: center;
  margin-bottom: 30px;
}

.contact-section .map-container iframe {
  width: 100%;
  max-width: 800px;
  border: none;
  border-radius: 8px;
}

.contact-section .contact-info {
  flex: 1 1 100%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.contact-section .contact-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-section .contact-info h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #1a237e;
}

.contact-section .info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: transform 0.3s;
}

.contact-info-container {
  display: flex;
  justify-content: center;
  gap: 60px;
}

@media only screen and (max-width: 900px) {
  .contact-info-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  .contact-section .info-item {
    box-sizing: border-box;
    width: calc(33% - 10px);
    margin: 10px 0;
    padding: 15px 10px;
  }
}

@media only screen and (max-width: 640px){
  .contact-section .contact-info h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .contact-section .info-item {
    width: 100%;
  }
}

.contact-section .info-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(136, 136, 136, 0.2);
}

.contact-section .info-item .icon {
  font-size: 30px;
  margin-right: 15px;
  color: #1a237e;
}

.contact-section .info-item:hover .icon {
  color: #333;
  /* Color de icono oscuro para contraste */
}

.contact-section .info-item .details {
  text-align: left;
}

.contact-section .info-item a {
  text-decoration: none;
  color: inherit;
}

.contact-section .info-item a:hover {
  text-decoration: underline;
}

.contact-section .info-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-section .info-item p {
  font-size: 16px;
  margin: 0;
}

/* Footer */
footer {
  background: #000;
}

footer .footer-information {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  color: var(--white);
  font-size: 24px;
}

footer .footer-information .in-login {
  text-decoration: none;
  color: #fff;
}

.footer-information .location,
.footer-information .social-media .social {
  display: flex;
  margin: 15px 0;
}

.footer-information .social-media .social li a {
  font-size: 34px;
}

@media only screen and (max-width: 900px) {
  footer .footer-information {
    font-size: 20px;
  }

  .footer-information .social-media .social li a {
    font-size: 25px;
  }
}

@media only screen and (max-width: 640px) {
  footer .footer-information {
    font-size: 18px;
  }
}
