﻿
/*FUENTES*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


@font-face {
    font-family: 'Akhand';
    src: url('/Content/CongresoConxemar2025/assets/fonts/AKHAND-BOLD.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Akhand';
    src: url('/Content/CongresoConxemar2025/assets/fonts/AKHAND-BOLD.OTF') format('opentype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --primary-color: #E11689;
    --secondary-color: #24244F;
    --text-color: #1E1E1E;
    --heading-font: normal 800 53px 'Akhand', sans-serif;
    --subheading-font: normal 600 36px 'Akhand', sans-serif;
    --title-font: normal 600 18px 'DM Sans', sans-serif;
    --text-font: 'DM Sans', sans-serif;
}


/********************************
    GENERAL
    ***********************+*/

body{
    margin-bottom:0!important;
    font-family:var(--text-font);
    color:var(--text-color);
    font-size:17px
}

li{
    list-style:none;
}

ul{
    margin:0;
    padding:0
}

a,p,span{
 font:var(--text-font);
 color:var(--text-color)
}

span.text-danger {
    font-size:12px;
    position:absolute;
}

    span.text-danger span {
        color: red !important
    }

h1, h2 {
    font: var(--heading-font);
    color:var(--secondary-color)
}
h5,h3 {
    font: var(--title-font);
    color: var(--primary-color);
    margin-top:25px
}
a:hover {
    text-decoration: underline;
    color: var(--text-color) !important
}
/********************************
    BUTTONS
    ***********************+*/

.btn.btn-primary,
span.btn.btn-primary {
    background-color: var(--primary-color) !important;
    border-radius: 70px;
    color: #fff;
    transition: background-color 0.4s ease-in;
    border: none;
    padding: 10px 20px;
    box-shadow: 1px 2px 3px 0px rgb(0 0 0 / 26%);
    -webkit-box-shadow: 1px 2px 3px 0px rgb(0 0 0 / 26%);
    -moz-box-shadow: 1px 2px 3px 0px rgb(0 0 0 / 26%);
}
    .btn-primary:hover {
        background-color: var(--secondary-color) !important;
        color: #fff !important;
        border: none
    }
#saveButton {
    background-color: var(--secondary-color) !important;
    font-size: 18px;
    font-weight: 600;
}
    #saveButton:hover {
        background-color: var(--primary-color) !important;
    }
/********************************
    HEADER
    ***********************+*/
header {
    background-color: #fff;
    width: 100%
}

.header-initial{
    display:none
}

.header-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    max-width: 960px;
    margin: 0 20px
}

.header-logo{
    display:block;
    width:100%;
    max-width:96px
}


.header-logo.white {
    display: none
}


.header-logo img {
    width: 100%
}

@media(min-width:1024px){
    header {
        background-color: transparent;
        position: fixed;
        top: 0;
        left: 0;
    }
      .header-initial {
    display:initial;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1;
  }


  .header-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffffde;
    z-index: 2;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }

  .header-scroll.visible {
    transform: translateY(0);
  }

  .header-wrapper {
    max-width: 960px;
    height: 110px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
  }

  .header-logo {
    max-width: 147px;
    width: 100%;
  }

  .header-logo img {
    width: 100%;
    display: block;
  }
}

/********************************
    VIDEO
    ***********************+*/

.fullscreen-video {
    width: 100%;
    height: auto;
    display: block;
}
    .fullscreen-video.desktop{
        display:none
    }

.video-mobile-wrapper{
    width:auto;
    height:490px;
    overflow:hidden;
    position:relative
}

.fullscreen-video.mobile {
    position: absolute;
    top: 0;
    left: 53%;
    height: 100%;
    transform: translateX(-53%);
    object-fit: cover;
    display: block;
}

@media(min-width: 1024px) {
    .fullscreen-video.desktop {
            display: initial
        }
    .video-mobile-wrapper {
        display: none
    }
    }


    /********************************
    CONTENT
    ***********************+*/
    #imgPresentacion, .mflogo {
        display: none;
    }

input.form-control,
select.form-control {
    box-shadow: none;
    border-color: var(--secondary-color);
    height: 40px;
}
input[type="checkbox"],
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 13px;
    height: 13px;
    border: 1px solid var(--secondary-color);
    background-color: white;
    cursor: pointer;
    position: relative;
}
input[type="checkbox"] {
    border-radius: 2px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
input[type="radio"] {
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:6px
}
input[type="checkbox"]:checked::after{
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

    input[type="radio"]:checked::after {
        content: '';
        background-color: var(--primary-color);
        height: 9px;
        width: 9px;
        border-radius: 50%;
        position: initial;
    }

   
    input[type="checkbox"]:checked:focus,
    input[type="radio"]:checked:focus {
        outline: none
    }

    .well-sm {
        background-color: transparent;
        box-shadow: none;
        border:none
    }

.radio-hover:hover,
.line-hover:hover,
.row.line-hover.columns:hover {
    background-color: transparent !important
}

th {
    color: var(--primary-color);
    border-bottom: 4px solid var(--secondary-color)!important;
}
.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
    background-color:transparent
}

.table .lead{
    font-weight:600;
    font-size:17px
}

.body-content hr {
    border-top: 4px solid var(--secondary-color)
}


/********************************
    FOOTER
    ***********************+*/
footer {
    margin: 50px 0 0;
}

.main-footer {
    background-color: var(--primary-color);
  
}

.main-footer__top,
.main-footer__bottom {
    max-width: 960px;
    width: 82%;
    margin: 0 auto;
}

.logos-list {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 14px;
}

.logos-list li {
    width:100%;
    max-width:300px
}

.logos-list li:nth-child(1){
    grid-column:span 2;
    grid-row:1
}
.logos-list li:nth-child(2){
    grid-column:span 2;
    grid-row:2
}
.logos-list li:nth-child(3){
    grid-column:span 2;
    grid-row:3
}
.logos-list img {
    width: 100%
}

.icons-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
    .icons-list li {
        width: 100%;
        max-width: 40px;
    
    }
    .icons-list a {
        display: block;
        width: fit-content;
        height: fit-content;
        margin: 7px
    }
    .icons-list img{
        width:100%;
        transition:filter 0.4s ease-in
    }
.icons-list img:hover {
    filter: invert(100%);
}

footer hr {
    margin: 25px 0;
    color: #fff;
    background-color: #fff;
    height: 1px
}

.main-footer__bottom {
    padding-top: 20px;
    padding-bottom: 40px;

}
.main-footer__bottom .contact{
    text-align:center
}

.bottom-footer {
    max-width: 960px;
    width: 82%;
    margin: 0 auto 30px ;
    padding: 22px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.bottom-footer p{
    font-size:17px;
    margin:10px 0
}


.contact a:hover{
color:#fff!important
}


@media(min-width:768px){
    .icons-list{
        gap:20px
    }
    .icons-list li {
        max-width: fit-content;
    }

    .icons-list img{
        max-width:40px;
        max-height:40px
    }
    .logos-list {
        grid-template-columns: repeat(6, 1fr);
   
    }

        .logos-list li:nth-child(1) {
            grid-row: 1;
            grid-column: span 2; 
        }

        .logos-list li:nth-child(2) {
            grid-row: 1;
            grid-column: 3 / span 2; 
        }

        .logos-list li:nth-child(3) {
            grid-row: 1;
            grid-column: 5 / span 2;
        }

        .logos-list li:nth-child(4) {
            grid-row: 2;
            grid-column: 1 / span 3;
        }

        .logos-list li:nth-child(5) {
            grid-row: 2;
            grid-column: 4 / span 3;
        }

        .logos-list li:nth-child(6) {
            grid-row: 3;
            grid-column: 1 / span 3;
        }

        .logos-list li:nth-child(7) {
            grid-row: 3;
            grid-column: 4 / span 3;
        }
    .main-footer__top,
    .main-footer__bottom{
        width:100%;    
    }

    .main-footer__top {
        padding: 0 30px 20px
    }
    .main-footer__bottom {
        padding: 0 30px 40px
    }

    .bottom-footer {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding:30px;
    }

    footer hr {
        margin:  30px 0 60px;
    }
}

@media(min-width:1024px) {

    .logos-list{
        grid-template-columns:repeat(12,1fr)
    }

        .logos-list li:nth-child(1) {
            grid-row: 1;
            grid-column: 1 / span 4;
        }

        .logos-list li:nth-child(2) {
            grid-row: 1;
            grid-column: 5 / span 4;
        }

        .logos-list li:nth-child(3) {
            grid-row: 1;
            grid-column: 9 / span 4;
        }

        .logos-list li:nth-child(4) {
            grid-row: 2;
            grid-column: 1 / span 3;
        }

        .logos-list li:nth-child(5) {
            grid-row: 2;
            grid-column: 4 / span 3;
        }

        .logos-list li:nth-child(6) {
            grid-row: 2;
            grid-column: 7 / span 3;
        }

        .logos-list li:nth-child(7) {
            grid-row: 2;
            grid-column: 10 / span 3;
        }


}