@import url('https//fonts.googleapis.com/css2?family=poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif; 
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-image: url("../images/bg.jpg");
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
    background-size: cover;
    background-attachment: fixed;
}

.menu_bar {
	display:none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 50px;
    width: 100%;
    box-sizing: border-box;
    background-color:rgb(26, 61, 114);
    z-index: 100;
}

header .logo {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 150px;
    float:left;
    font-weight: bold;
}

header .logo img {
    width: 200%;
    height: auto;
}

header nav {
    float: right;
    margin-top: 15px;
}

header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style:none;
}

header nav ul li {
    list-style: none;

    display:inline-block;
	position: relative;
}

header nav ul li:hover {
	background:#023859;
}

header nav ul li a {
    color: rgb(255, 255, 255);
    display: block;
    text-decoration: none;
    padding: 0 20px;

    height: 50px;
    line-height: 50px;        
    transition: 0.5s;
}

header nav ul li a:hover {
    border-radius: 5px;
    font-size: 17.5px;
    border-radius: 5px;
    color: rgb(255, 255, 255);
}

header nav ul li a span {
	margin-right:10px;
}
header nav ul li a.active {   
    border-color: rgb(49, 49, 49);
  border-width: 1px;
  border-radius: 5px;
}

header nav ul li a.active:hover {
    border-color: rgb(71, 71, 71);
    border-width: 1px;
    border-radius: 5px;
}


header nav ul li a span {
	margin-right:10px;
}

header nav ul li:hover .children {
	display:block;
}

header nav ul li .children {
	display: none;
	background:#011826;
	position: absolute;
	width: 150%;
	z-index:1000;
}

header nav ul li .children li {
	display:block;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,.5);
}

header nav ul li .children li a {
	display: block;
}

header nav ul li .children li a span {
	float: right;
	position: relative;
	top:3px;
	margin-right:0;
	margin-left:10px;
}

header nav ul li .caret {
	position: relative;
	top:3px;
	margin-left:10px;
	margin-right:0px;
}


header p {
    color: #fff;
    margin-top: 60px;
    margin-left: 0%;
}

.menu-toggle
{
    color: rgb(255, 255, 255);
    float: right;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    margin-top: 15px;
}


.contact {
    position: relative;
    min-height: 100vh;
    padding:  100px 100px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.contact .content {
    max-width: 800px;
    text-align: center;
}

.contact .content h2 {
    
    font-size: 36px;
    color: rgb(26, 61, 114);
    font-weight: bold;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.container .contactInfo {
    
    width: 50%;
    display: flex;
    flex-direction: column;
}

.container .contactInfo .box {
    
    position: relative;
    padding: 20px 0;
    display: flex;
}

.container .contactInfo .box .icon {
   
    min-width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items:center;
    border-radius: 50%;
    border-color: rgb(88, 88, 88);
    font-size: 22px;
    color: rgb(88, 88, 88);
    border: solid;
    border-width: 1px;
}

.container .contactInfo .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: rgb(88, 88, 88);
    flex-direction: column;
    font-weight: 800;
}

.container .contactInfo .box .text h3 {
    
    font-weight: 500;
    color: rgb(88, 88, 88);
}

.contactForm {
    width: 40%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.);
    border-radius: 5px;
}

.contactForm2 {
    width: 10%;
}

.contactForm h2 {
    font-size: 30px;
    color: rgb(88, 88, 88);
    font-weight: 500;
}

.contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 0px 0;
    border: none;
    border-bottom: 2px solid rgb(88, 88, 88);
    outline: none;
    resize: none;
    background-color: rgba(255, 255, 255, 0);
    color: rgb(88, 88, 88);
}

.contactForm .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: rgb(88, 88, 88);
    
    
}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span

 {
    color: rgb(26, 61, 114);
    font-size: 12px;
    transform: translateY(-20px); 
}


.contactForm .inputBox input[type="submit"] {
    width: 100px;
    background: rgb(26, 61, 114);
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
}

.mapa {
    
    width: auto;
    height: 800px;
}

footer {
    padding: 0px 0;
    width: 100%;
    height: auto;
    margin-top: 00px;

}

footer .social {
    text-align: center;
    padding-bottom: 25px;
    color: rgb(49, 49, 49);
    
}

footer .social a{
    font-size: 24px;
    color: inherit;
    border: 1px solid rgb(49, 49, 49);
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    padding-top: 1px;
    transition: 0.5s;
}

footer .social a:hover {
    font-size: 27px;
    border-radius: 50%;
}

.sub-footer p {
    margin-top: 0px;
    text-align: center;
    font-size: 15px;
    color: rgb(255, 255, 255);
    margin-bottom: 0;
    
}

.sub-footer {
    padding-top: 1px;
    width: 100%;
    height: auto;
    padding-bottom: 25px;
    background-color: rgb(26, 61, 114);
}

.sub-footer .contactInfo {
    width: 90%;
    margin-right: 20px;
    display: flex;
    margin: 1em 0 0 auto;
}

.sub-footer .contactInfo .box {
    width: 50%;
    position: relative;
    padding: 20px 0;
    display: flex;
    float: left;
}

.sub-footer .contactInfo .box .icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border-color: rgb(255, 255, 255);
    font-size: 15px;
    color: rgb(255, 255, 255);
    border: solid;
    border-width: 1px;
}

.sub-footer .contactInfo .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 10px;
    color: rgb(255, 255, 255);
    flex-direction: column;
    font-weight: 300;
    align-items: flex-start;
}

.sub-footer .contactInfo .box .text h3 {
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.sub-footer .contactInfo .box .text p {
    margin-top: -7px;
}


@media (max-width: 1700px){ 

    .sub-footer .contactInfo {
        width: 95%;

    }
    
}

@media (max-width: 1134px){ 

    .sub-footer .contactInfo {
        flex-direction: column;
        width: 70%;

    }
    
}

@media (max-width: 1084px){

    header {
        padding: 0 20px;
        transition: 0.5s;
        position: fixed;     
    }

    .menu-toggle {
        display: block;
        z-index: 201;
    }

    header nav {
        position: fixed;
        width: 70%;
        height: calc(100vh - 160px);
        margin-top: 100px;
        left: 100%;
        transition: 0.5s;
        z-index: 100;
    }

    header:hover {
        background: rgba(0, 43, 107, 0.8);
    }

    header nav.active {
        width: 400px;
        left: 0;
        background: rgba(0, 43, 107, 0.8);
    }

    header nav ul {
        display: block;
        text-align: left;
    }

    header nav ul li {
        display: block;
        border-bottom:1px solid rgba(255,255,255,.5);
        
    }
    header nav ul li a {
        border-bottom: 1px solid rgba (0,0,0,.2)
    }

    header nav ul li a.active {
        border-color: #e2e2e2;
        border: solid ;
        border-width: 1px;
        border-radius: 5px;
    }

    header nav ul li:hover .children {
        display: block;
      }
      
      header nav ul li .children {
        width: 100%;
        position: relative;
      }
      
      header nav ul li .children li a {
        margin-left:20px;
      }
      
      header nav ul li .caret {
        float: right;
      }
    .contact .content {

        text-align: center;
        
    }

    .contact {
        padding-top: 250px;
        width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        flex-direction: column;
        width: 100%;
    }
    .container .contactInfo {
        margin-bottom: 40px;
        width: 100%;
    }
    .container .contactInfo, .contactForm {
        width: 100%;
    }

    .contactForm {
        width: 100%;

    }

    .sub-footer {
        padding-top: 1px;
        width: 100%;
        height: auto;
        padding-bottom: 25px;
        background-color: rgba(0, 43, 107, 0.8);
        align-content: center;
    }
    
    .sub-footer .contactInfo {
        width: 70%;
        margin:auto;
        display: flex;
        flex-direction: column;
        align-content: flex-end;
        margin: 1em 0 0 auto;
    }
    .sub-footer .contactInfo .box {
        width: 100%;
        float: none;
    }

}