@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;400;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #ffffff;
    color: #777;
    font-size: 15px;
    font-family: roboto,Arial,Helvetica,sans-serif;
    font-weight: 400;
    font-style: normal;
}
header{
    display: flex;
    flex-direction: column;
}
.header-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #0046ab;
    padding: 10px 120px;
    color: #ffffff;
}
.header-top .contacto{
    color: #fff;
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    transition: all .2s ease-in;
}

.header-top .contacto .icon{
    padding-right: 5px;
}
.header-top ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.header-top a{
    text-decoration: none;
    color: #ffffff;
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    transition: all .2s ease-in;
}
.header-top a:hover{
    color: #00a800;
}
.header-top a:not(:last-child){
    padding-right: 20px;
}
.header-top li{
    list-style: none;
}
@media only screen and (max-width: 1075px) {

}

/* #endregion ########################################################################################*/
.header-center{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
    padding: 10px 120px;
}
.header-center img{
    vertical-align: middle;
    width: 190px;
    height: 85px;
    border: medium none;
}
.header-center button{
    padding: 12px 40px;
    text-transform: uppercase;
    background-color: #0055b2;
    color: #ffffff;
    outline: none;
    border: none;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease-in;
    cursor: pointer;
}
.header-center button:hover{
    background: #333333;
    color: #ffffff;
}
/* #endregion ########################################################################################*/
.header-bottom{
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;    
}
.header-bottom .head{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    height: 70px;
}
.header-bottom .head-list{
    display: flex;
    flex-direction: row;
    padding: 10px 90px;
}
.header-bottom .head-list .head-list_item{
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    padding-left: 30px;
    line-height: 70px;
    font-weight: 400;
    transition: all .2s ease-in;
}
.header-bottom .head-list .head-list_item:hover{
    font-weight: 400;
}
.header-bottom .head-list .first:first-child{
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 30px;
    line-height: 70px;
    font-size: 45px;
    color: #398ee9;
    list-style: none;
}

.header-bottom .head-list .head-list_item li{
    list-style: none;
}
.pd{
    margin: 10px 120px;
    height: 35px;
    width: 35px;
    background-color: rgba(255, 255, 255, 0.4);
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all .2s ease-in;
    border-radius: 4px;
}
.pd:hover{
    background-color: #398ee9;
    color: #ffffff;
}
@media only screen and (max-width: 1075px) {
    .pd{
        margin: 10px;
    }
    .header-bottom .head{
        justify-content: initial;
    }
    .header-bottom .head-list .first:first-child{
        padding-right: 0px;
    }
}
@media only screen and (max-width: 983px) {
    .header-bottom .head-list{
        display: flex;
        flex-direction: row;
        padding: 10px 40px;
    }
    .pd{
        margin: 10px 50px;
    }
}
@media only screen and (max-width: 916px) {
    .pd{
        margin: 10px;
    }
}
@media only screen and (max-width: 860px) {
    .header-bottom .head-list{
        font-size: 13px;
        padding: 10px;
    }
}
@media only screen and (max-width: 786px) {
    .header-bottom .head-list{
        font-size: 13px;
        padding: 10px 30px;
    }
    .pd{
        display: none;
    }
    .header-top{
        padding: 10px 60px;
    }
    .header-center{
        padding: 10px 60px;
    }
    .header-center button{
        font-size: 14px;
    }
}
/* #endregion ########################################################################################*/
.head.sticky{
    background-color: #ffffff;
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation-name: moveInBottom;
    animation-duration: 1s;
    z-index: 999;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 1px 12px 0 rgb(0 0 0 / 15%);
    -webkit-box-shadow: 0 1px 12px 0 rgb(0 0 0 / 15%);
}
.head.sticky a{
    color: #333;
}
.head.sticky .span{
    color: #333;
}
.head.sticky .pd{
    background-color: rgba(170, 170, 170, 0.4);
    color: #333333;
}
.head.sticky .pd:hover{
    background-color: #398ee9;
    color: #ffffff;
}
@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(-30px);
      }
      100% {
        opacity: 1;
        transform: translate(0);
      }
}
.logo{
    display: flex;
    align-items: center;
}
.img{
    display: none;
}
.head-logo{
    width: auto;
    height: 70px;
    
    object-fit: cover;
    display: block;
}
.icon{
    display: none;
}
.dropdown, .sub-dropdown {
    float:left;
    overflow: hidden;
    }
    .sub-dropbtn{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    .sub-dropbtn .fa{
        padding-top: -50px;
    }
    
    .dropdown .dropbtn,.sub-dropdown .sub-dropbtn  {
        font-size: 15px;    
        border: none;
        outline: none;
        color: #ffffff;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
        text-transform:uppercase !important;
        font-weight: 400;
    }
    .dropbtn{
        padding: 26px 0px 26px 30px;
    }
    .dropbtn .span, .span{
        position: relative;
        cursor: pointer;
    }
    .dropbtn .span::before, .span::before{
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        height: 5%;
        width: 3px;
        background-color: #398ee9;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .1s, width .2s;
        padding: 1px 0px 1px 3px;
    }
    .dropbtn span:hover::before, .span:hover::before{
        transform: scaleX(1);
        width: 100%;
        color: #ffffff;
    }
    .dropdown-content{
        display: none;
        position: absolute;
        background: linear-gradient(to right, rgb(32, 34, 180), rgba(8, 22, 146, 1));
        width: 70%;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        border-top:2px solid#ffffff;
        min-height: 250px;
        animation-name: moveInBottom;
        animation-duration: .3s;
    }
    
    .topnav a:hover, .dropdown:hover .dropbtn,.sub-dropdown:hover .sub-dropbtn {
        color: #ffffff;
    }
    
    .dropdown-content a:hover,.sub-dropdown-content a:hover {
        color: red;
    }
    
    .dropdown:hover .dropdown-content,.sub-dropdown:hover .sub-dropdown-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .dropdown-content ul{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
    }
    .dropdown-content ul a{
        color: #ffffff;
        text-transform: none;
        text-decoration: none;
        padding: 5px;
        font-size: 14px;
        font-weight: normal;
        width: 100%;
    }
    .dropdown-content ul a li{
        list-style: none;
        color: #e8eaf6;
        font-size: 14px;
        font-family: 'Karla', sans-serif;
        transition: all .2s ease-in-out;
        font-weight: 300;
        padding: 5px;
    }
    .dropdown-content ul a li:hover{
        background-color: #013872b6;
    }
    .dropdown-content h1{
        color: #e8eaf6;
        font-size: 18px;
        text-transform: uppercase;
        padding-bottom: 15px;
        font-family: 'Karla', sans-serif;

    }
    @media only screen and (max-width: 1075px) {
        .header-bottom .head.sticky .head-list{
            padding: 10px 70px;
        }
        .header-bottom .head.sticky{
            width: 100%;
        }
    }
    @media only screen and (max-width: 983px) {
        .dropdown-content{
            width: 80%;
        }
        .header-bottom .head.sticky .dropdown-content{
            left: 10%;
        }
        .header-bottom .head.sticky .head-list{
            padding: 10px 30px;
        }
        .header-bottom .head.sticky .pd{
            margin: 10px;
        }
    }
    @media only screen and (max-width: 916px) {
        .header-bottom .head.sticky .head-list{
            font-size: 13px;
        }
    }
    @media only screen and (max-width: 860px) {
        .header-bottom .head.sticky .head-list{
            font-size: 12px;
            padding: 10px 20px;
        }
    }
    @media only screen and (max-width: 786px) {
        .header-bottom .head.sticky .head-list{
            font-size: 12px;
            padding: 10px 20px;
        }
        .header-bottom .head.sticky .head-logo{
            height: 50px;
        }
        .dropdown .dropbtn, .sub-dropdown .sub-dropbtn{
            font-size: 12px;
        }
        .header-bottom .head.sticky .pd{
            display: none;
        }
    }
    @media only screen and (max-width: 640px) {
        .head-list_item{
            display: none;
        }
        .dropdown-content{
            width: 100%;
            left: 0;
        }
        .header-bottom .head.sticky .dropdown-content{
            width: 100%;
            left: 0;
        }
        .dropdown-content h1{
            font-size: 16px;
            padding-bottom: 10px;
        }
        .dropdown-content ul a{
            padding: 4px;
            font-size: 12.5px;
        }
        .dropdown-content ul{
            padding: 15px 10px;
        }
    }
    @media only screen and (max-width: 640px) {
        .header-bottom .head .dropdown-content{
            flex-direction: column;
            height: 100%;
            overflow-y: scroll;
        }
        .dropdown-content ul{
            width: 90%;
        }
    }
/* #endregion ########################################################################################*/
.header-bottom .body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-family: 'Karla', sans-serif ;
    text-transform: uppercase;
    padding-top: 20px;
    text-align: center;
}
.header-bottom .text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header-bottom .body h1{
    font-size: 120px;
    font-weight: 550;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif;
    margin-top: -30px;
    
}
.header-bottom .body h1 span{
    font-weight: 300;
}
.header-bottom .body h2{
    font-size: 130px;
    font-weight: 80;
    letter-spacing: 15px;
    font-family: 'Raleway', sans-serif;
    
}
.header-bottom .body h3{
    padding: 5px;
    background-color: #ffffff;
    color: #777;
    width: 50%;
    font-size: 30px;
    margin-top: 20px;
    font-weight: 500;
    
}
@keyframes moveInFirst {
    0%{
        opacity: 0;
        transform: scale(1.5,1.5);
    }
    100%{
        opacity: 1;
        transform: scale(1,1);
    }
}
@keyframes moveInSecond{
    0%{
        opacity: 0;
        transform: scale(1.5,1.5);
    }
    100%{
        opacity: 1;
        transform: scale(1,1);
    }
}
@keyframes moveInThird{
    0%{
        opacity: 0;
        transform: translate(0px, 50%);
    }
    100%{
        opacity: 1;
        transform: translate(0px, 0%);
    }
}
.header-bottom .buttons{
    margin-bottom: 100px;
    width: 45%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.header-bottom .buttons button{
    padding: 10px;
    text-transform: uppercase;
    outline: none;
    border: none;
    font-size: 16px;
    padding: 12px 35px;
    border-style: solid;
    border-width: 2px;
    letter-spacing: 2px;
    visibility: inherit;
    transition: none 0s ease 0s;
    text-align: left;
    margin: 0px;
    font-family: Raleway;
    font-size: 16px;
    line-height: 17px;
    z-index: 12;
    white-space: nowrap;
    font-weight: 500;
    color: rgb(255, 255, 255);
    cursor: pointer;
}
@media only screen and (max-width: 1075px) {
    .header-bottom .buttons{
        width: 60%;
    }
}
@media only screen and (max-width: 983px) {
    .header-bottom .body h1{
        font-size: 100px;
    }
}
@media only screen and (max-width: 860px) {
    .header-bottom .buttons{
        width: 80%;
    }
    .header-bottom .body h2{
        font-size: 100px;
    }
    .header-bottom .body h1{
        font-size: 70px;
    }
    .header-bottom .body h3{
        font-size: 25px;
    }
}

@media only screen and (max-width: 786px) {
    .header-bottom .body h2{
        font-size: 100px;
    }
    .header-bottom .body h1{
        font-size: 70px;
    }
    .header-bottom .body h3{
        font-size: 25px;
    }
    .header-bottom .buttons{
        width: 80%;
    }
    .header-bottom .body{
        max-height: 80vh;
    }
}
@media only screen and (max-width: 640px) {
    .header-bottom .buttons{
        width: 98%;
    }
}
@media only screen and (max-width: 580px) {
    .header-bottom .body h1{
        font-size: 50px;
        padding-top: 20px;
    }
    .header-bottom .body h2{
        font-size: 70px;
    }
    .header-bottom .body h3{
        font-size: 22px;
        width: 70%;
    }
    .header-top{
        padding: 10px 20px;
    }
    .header-top a{
        font-size: 14px;
    }
    .header-center{
        padding: 5px 20px;
    }
}
@media only screen and (max-width: 480px) {
    .header-center img{
        width: 100px;
        height: auto;
    }
    .header-center button{
        font-size: 12px;
        padding: 12px;
    }
    .header-top a{
        font-size: 12px;
    }
    .header-top a.rm{
        display: none;
    }
}
@media only screen and (max-width: 560px) {
    .header-bottom .buttons button{
        padding: 12px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 420px) {
    .header-bottom .body{
        max-height: 70vh;
    }
    .header-bottom .buttons{
        width: 90%;
        flex-direction: column;
    }
    .header-bottom .buttons button{
        width: 100%;
        margin-top: 10px;
    }
    .header-bottom .buttons button:not(:last-child){
        margin-top: 40px;
    }
    .header-bottom .body h1{
        font-size: 35px;
    }
    .header-bottom .body h2{
        font-size: 50px;
    }
    .header-bottom .body h3{
        width: 95%;
    }
}
.header-bottom .btn1{
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}
.header-bottom .btn2{
    background-color: rgb(219, 28, 34);
    border-color: transparent;
    transition: all .2s ease-in;
}
.header-bottom .btn2:hover{
    background: #333333;
    color: #ffffff;
}
@keyframes moveInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    80% {
      transform: translateX(10px);
    }
    100% {
      opacity: 1;
      transform: translate(0);
    }
  }
  
  @keyframes moveInRight {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }
    80% {
      transform: translateX(-10px);
    }
    100% {
      opacity: 1;
      transform: translate(0);
    }
  }
  /* #endregion ############################################################################*/
    
  /* #endregion ############################################################################*/
  main{
    min-height: 100vh;
    background-color: #ffffff;
}
  /* #endregion ############################################################################*/
