*{
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.2s ease;
}

body {
    font-family: "Roboto", sans-serif;
}


a{
    text-decoration: none;
}
a:hover{
    transform: scale(1.02);
}

.see-all-categories{
    position: relative;
    background: #e77336;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
    margin-left:5px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

#title-holder{
    max-height: 220px;
    display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}


#news-category{
    position: relative;
    background: #e77336;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
     font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.on-top-container{
    display:flex;
    align-items:end;
}

.on-top-container .date-on-top{
    font-weight:400;
    margin-bottom:5px;
    opacity:0.4;
    margin-left:5px;
}

.on-top-container #news-category-on-top{
    position: relative;
    background: #e77336;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
    margin-bottom:5px;
     font-size: 18px;
    color: #fff;
    font-weight: 600;
}

#social-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
#social-buttons #sub-social-buttons{
    display: flex;
}

#social-buttons p{
    opacity: 0.4;
    font-size: 18px;
}

#social-buttons #sub-social-buttons i{
    font-size: 40px;
    margin-left: 10px;
    cursor: pointer;
}


#social-buttons #sub-social-buttons i:hover{
    color: #e77336;
}



/*SLIDE*/

#top-page{
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #e77336;
    background-image: url("/img/decor/BG_04.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode:multiply;
    display: flex;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
#top-page > #top-page-logo{
    width: 100%;
    min-width:300px;
    max-width:400px;
    margin: 20px auto;
    align-items: center;
    cursor:pointer;
}

#top-page > #slider {
  position: relative;
  width: 100%;
margin-left: 30px;
    
  overflow: hidden;
    border-left: dashed 2px rgb(255,255,255,1);
}

@media (max-width: 800px) {
    #top-page > #slider{
        display:none;
    }
}

#top-page > #slider > #slide-container {
  display: flex;
  transition: transform 1s ease-in-out;
}

#top-page > #slider > #slide-container > .slide {
  width: 100%;
  flex: 0 0 auto;
min-height: 150px;
}

#top-page > #slider > #slide-container > .slide .div-container-text-top {
  position: absolute;
    z-index: 2;
    width: 90%;
    padding: 30px;
  top: 35%;
  transform: translateY(-50%);
    border-radius: 10px;
}

#top-page > #slider > #slide-container > .slide .div-container-text-top #header-title-holder{
    display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
padding-top:5px;
box-sizing:border-box;
text-overflow: ellipsis;
}

#top-page > #slider > #slide-container > .slide .div-container-text-top #header-title-holder h3{
    font-size: 25px;
    color: #fff;

}
#top-page > #slider > #slide-container > .slide .div-container-text-top p{
    cursor: pointer; 
    background: #fff; 
    width: 130px; 
    padding:10px;
    color: #e77336;
    
}

#top-page > #slider > #slide-container > .slide .div-container-text-top p:hover{
    opacity: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4)
}


#top-page > #slider #nav-container {
  position: absolute;
  bottom: 10px;
    padding: 0 0 0 24px;
  display: flex;
}

#top-page .nav-dot {
    position:relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
    z-index:10000;
}

#top-page .nav-dot.active {
    transform: scale(1.5);
    opacity: 1;
}


/*HEADER*/

#nav-icon2 {
  width: 65px;
  height: 40px;
  position: relative;

  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
    transform: scale(0.6);
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 18px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 36px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 29px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px;
}

header{
    position: sticky;
    top: 0;
    background: #e77336;
    border: none;
    font-size: 15px;
    z-index: 1;
    margin-bottom: 10px;
}

header #show-menu-header-bar{
    width:200px;
    padding:15px;
    background:#222222;
    position:absolute;
    top:50px;
    color:#fff;
    left:0;
    cursor:pointer;
    display:none;
}
header #show-menu-header-bar a{
    color:#fff;
}
header #show-menu-header-bar:hover{
    transform:scale(1.02);
}


#sub-header{
    background: #222;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px;
box-sizing:border-box;
}

header #header-left{
    width: 100%;
    display: flex;
    align-items: center;
}


header #header-right{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 1000px) {
    header #header-right{
        display:none;
    }
}

@media (max-width: 650px) {
    header #header-left{
        display:none;
    }
}

header #header-right a{
    cursor:pointer;
}

header #header-right i{
    color: #fff;
    padding:10px;
    font-weight: 100;
    text-transform: uppercase;
    cursor:pointer;
}

header #header-right i:hover{
    transform:scale(1.01);
}

header #header-left #header-category a{
    color: #ffffff;
    font-weight: 600;
    padding: 10px;
    box-sizing:border-box;
}

header #header-left img{
    width: 40px;
    padding: 5px;
    margin-right: 15px;
    margin-left: 15px;
    background: #e77336;
    cursor: pointer;
}

header #header-bottom{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
}

header #header-bottom a{
    color: #ffffff;
    padding: 10px;
    font-size: 20px;
    font-weight: 400;
}
header #header-bottom a:hover{
    background: rgb(0,0,0,0.4)
}


/*MAIN*/

main #top-section{
    display: flex;
    margin-top: 10px;
    padding: 20px;
    box-sizing: border-box;
}

main #middle-section{
    padding: 20px;
    box-sizing: border-box;
}

main #bottom-section{
    padding: 20px;
}



main #main-left{
    width: 70%;
}

main #main-left #sub-main-left{
    width:95%
}



main #main-right{
    width: 30%;
    color:rgb(0,0,0,0.8);
    
}
@media (max-width: 950px) {
    main #main-right{
        display:none;
    }
    main #main-left{
        width: 100%;
    }
    main #top-section{
        margin-top: 0px;
        padding:10px;

    }
    main #main-left #sub-main-left{
        width:100%;
    }
}



h2{
    text-transform: uppercase;
    color: #e77336;
}

h3{
    text-transform: uppercase;
    color: #e77336;
}

main #main-right #main-notice{
    font-size: 15px;
    font-weight: 600;
    border-top: dashed 2px rgb(204,54,54,0.4);
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    cursor: pointer;
}

main #main-right #main-notice:hover{
    transform: scale(1.01);
}

main #main-right #main-notice > div > .time-notice{
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 10px;
    opacity: 0.6;
}

.grap-content-text{
    max-height: 6em;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position:relative;
}




.circle{
    width: 13px;
    min-width: 13px;
    min-height: 13px;
    height: 13px;
    margin-top: 2px;
    margin-right: 5px;
    background: #e77336;
    border-radius: 100px;
    
}

.notice-common{
    width:95%;
    position: relative;
    display: flex;
    border-top: solid 2px rgb(204,54,54,0.4);
    padding: 20px 0 20px 0;
    cursor: pointer;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 950px) {
    main #main-left .notice-common{
        margin: 0 auto;
    }
}

.notice-common:hover{
    transform: scale(1.01);
}
.notice-common > div > img{
    width:100%;
    height:200px;
    object-fit: cover;
    position: relative;
    float: right;
    min-width: 300px;
    margin-left:10px;
}

.notice-common > div {
    flex: 1;
    margin: 0 1rem;
}


@media (max-width: 750px) {
    
    #noticias-de-interes-h2{
        display:none;
    }
    
    .notice-common{
        width:100%;
        flex-direction: column;
        padding: 40px 0px 40px 0px;
        border-top: solid 0px;
        border-bottom: solid 2px rgb(204,54,54,0.4);
    }


    .notice-common > .img-container-new {
        order: -2;
        margin-bottom: 1rem;
    }
    
    .notice-common > .img-container-new > img {
        width:100%;
        height:auto;
        border-radius:5px;
    }
    
    main #top-section{
        width:100%;
    }
    
    .notice-common hr{
        display: none;
    }
    
    .notice-common .grap-content-text{
    margin-top:10px;
    opacity:0.6;
    font-weight:400;
}

    
    
}

.notice-common > div > hr{
    opacity: 0.4;
    margin-top:20px;
        margin-bottom:20px;
}
main #main-left .notice-common > div > h3{
    font-size: 25px;
}
main #main-left .notice-common > div > p{
    opacity: 0.6;
}

/*SQUARE SECTION*/

main #square-section{
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
}
main #square-section .square{
    position: relative;
    width: 250px;
    height: 195px;
    background: #e77336;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
}

main #square-section .square::before{
   content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
    mask-image: linear-gradient(
        to top,
        #000 00%,
        transparent
    );
}

main #square-section .square:hover{
    transform: scale(1.01)
}

main #square-section .square img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#square-section .square[id="first-square"], 
#square-section .square[id="last-square"]{
    width: 100%;
    height: 400px;
    margin-left: 0px;
    margin-right: 0px;
}

@media (max-width: 950px) {
    
    
    #square-section .square[id="first-square"], 
    #square-section .square[id="last-square"]{
        display:flex;
        height: 400px;
        margin-left: 5px;
    margin-right: 5px;
    }
    main #square-section .square{
    display:none;
}

}

@media (max-width: 750px) {
    
    #square-section .square[id="first-square"], 
    #square-section .square[id="last-square"]{
        display:none;


    }


}


main #square-section .square .square-info{
    width: 100%;
    position: absolute;
    bottom: 0;
    box-shadow: 0 0 15px rgba(17, 17, 17, .15);
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    box-sizing: border-box;
}

main #square-section .square .square-info p{
    max-height: 220px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

main #square-section .square .square-date{
    font-size: 15px;
    font-weight: 600;
    position: absolute;
    top: 0px;
    color: #fff;
    background: #e77336;
    left: 0;
    padding: 10px;
    box-sizing: border-box;
    border-bottom-right-radius: 5px;
}


/*MIDDLE*/

main #middle-section{
    width: 100%;
    background-color: #e77336;
        background-image: url("/img/decor/BG_04.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode:multiply;
    color:#fff;
    padding:0;
}
main #middle-section img{
        width: 80%;
    }
@media (max-width: 750px) {
    main #middle-section img{
        width: 100%;
    }
}

main #middle-section .notice-common{
    border-top: solid 2px rgb(0, 0, 0, 0.1);
}

main #middle-section h2{
    width: 100%;
    color: #fff;
}

main #middle-section .notice-common > div > hr{
    opacity: 0.4;
}
main #middle-section .notice-common > div > h3{
    font-size: 25px;
    color: #fff;
}


main #main-right-scroll{
    position:sticky;
    top:60px;
}

/*SCROLLS*/
main #main-right-scroll::-webkit-scrollbar {
    width: 5px;
}
main #main-right-scroll::-webkit-scrollbar-thumb {
  background-color: #e77336;
  border-radius: 2px; 
}



.carrusel {
  width: 100%;
  text-align: center;
  position: relative;
   border-top: dashed 2px rgb(204,54,54,0.4);
    padding-top: 20px;

}

.slides {
  width: 100%; /* card * 4 + margin * 4 */
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  transition: all .5s ease;
    padding: 10px 0 20px 0;
    box-sizing: border-box;
}
.slides .slide {
  scroll-snap-align: start;
    position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  margin-right: 15px;
  margin-left: 15px;
  border-radius: 5px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgb(0,0,0,0.2);
}

.slides .slide:hover {
  transform: scale(1.01);
    cursor: pointer;
}

.slides::-webkit-scrollbar {
    height: 8px;
}
.slides::-webkit-scrollbar-thumb {
  background-color: #e77336; /* Color del thumb (puedes ajustar el valor alfa para hacerlo más transparente) */
  border-radius: 2px; /* Borde redondeado del thumb */
}

/* Estilo para el fondo del thumb cuando se está interactuando con la barra de desplazamiento */
.slides::-webkit-scrollbar-thumb:hover {
  background-color: #e77336; /* Color del thumb al pasar el ratón por encima */
}

/* Estilo para el fondo del thumb cuando se está manteniendo pulsado */







.slides .slide .bottom-text-slide{
    position: absolute;
    width: 90%;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom:5px;
}

.slides .slide .info-slide-box{
    padding: 10px;
    box-sizing:border-box;
}

.slides .slide .info-slide-box h2{
       font-size: 22px;
     max-height: 200px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slides .slide .info-slide-box p{
    font-size: 15px;
    opacity: 0.6;
    max-height: 200px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slides .slide img{
    width: 100%;
    height:200px;
    object-fit: cover;
}

.slides .slide .info-slide-box hr{
    width: 90%;
    margin: 0 auto;
    opacity: 0.4;
    margin:10px;
}


.carrusel .btn-prev,
.carrusel .btn-next{
  position: absolute;
  width: 50px;
  height: 50px;
  background: #e77336;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 15px rgba(17,17,17,.15);
  cursor: pointer;
    border: none;
    border-radius: 2px;
}
.carrusel .btn-prev i,
.carrusel .btn-next i{
  color: #fff;
}
.carrusel .btn-prev{
  left: -15px;
}
.carrusel .btn-next{
  right: -15px;
}


@media (max-width: 750px) {
    .carrusel{
        border-bottom: dashed 2px rgb(204,54,54,0.4);
        border-top: dashed 0px;
    }
    .carrusel .btn-prev{
      right: 60px;

    }
    .carrusel .btn-next{
      left: 60px;
    
    }
    
    
    .carrusel .btn-prev,
    .carrusel .btn-next{
        top:90%;
        margin-left: auto; 
        margin-right: auto; 
    }
    
    .slides {
        padding: 10px 0 90px 0;
    }
}



/*NEWS SECTION*/




main[id="main-noticias"] #top-section #main-left #news-title{
    border-top: 1px solid rgb(0,0,0,0.2);
    border-bottom: 1px solid rgb(0,0,0,0.2);
    padding: 20px 0 20px 0;
    box-sizing: border-box;
    display: block;
    align-items: center;
}

main[id="main-noticias"] #top-section #main-left #news-title h1{
    font-size: 30px;
    color: #e77336;
}

main[id="main-noticias"] #top-section #menu-list a{
    color: #e77336;
    text-decoration: underline;
}

main[id="main-noticias"] #top-section #main-left article{
    width: 100%;
    position: relative;
    white-space: pre-wrap;
    font-size: 20px;
    color: rgb(0,0,0,0.8);
    text-align:justify;
}

main[id="main-noticias"] #top-section #main-left article img{
    width: 100%;
}

.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a {
    margin: 0 5px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius:2px;
}

.pagination a:hover {
    background-color: #f4f4f4;
}

/*FOOTER*/

.footer {
    margin-top: 100px;
    background-color: #e77336;
        background-image: url("/img/decor/BG_04.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode:multiply;
    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 {
    
    max-width: 1100px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
    flex-wrap: wrap;
    justify-content: start;
    padding:40px 40px 200px 40px;
    box-sizing:border-box;
    margin:0 auto;
}

.footer-content .footer-menu{
min-width:120px;
}

.footer-content ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}

@media (max-width: 800px) {
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr); 
        grid-gap: 20px;
        padding:10px 10px 100px 10px;
    }
    .footer-content .footer-menu{
        min-width:100px;
        }
    
    .footer-logo{
        display:none;
    }
}

.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    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: 11px;
    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-title {
    color: #fffff2;
    font-size: 14px;
    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: 3px;
    top: 11px;
    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: 62px;
    top: 3px;
    width: 28px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 24px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 34px;
}

.footer-copyright {
    background-color: #222222;
    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: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}






