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

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #0C2030;
    font-weight:400;
}

input[type=text], select, textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border-radius: 0;
    padding: 5px 5px;
    line-height: 1.4;
}

input[type=text], select, textarea {
    width: 100%; 
    max-width: 400px;
    border: 1px solid #133A1E;
}

input[type=checkbox] {
    margin-right: 5px;
}

input[type=file] {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

a.button {
    background-color:#0C2030;
    border: 1px solid #0C2030;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    display: inline-block;
    min-width: 150px;
    text-align:center;
    text-transform:uppercase;
    font-size: 0.9em;
    font-weight: bolder;
    transition: all 0.4s;
}

a.button:hover, a.button:active, a.button:focus {
    background-color: #BCD2E2;
    color: #0C2030;
}

h1 {
  font-size: 2.5em; 
  line-height:1.1;
  font-weight:600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-size: 2em;
  line-height:1.1;
  font-weight:600;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 25px;
}

h3 {
  font-size: 1.5em;
  line-height:1.1;
  font-weight:600;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 25px;
}

h4 {
  font-size: 1.2em;
  font-weight:600;
}

a:hover, a:focus, a:active {
    color: #000;
}

label {
    display:block;
    font-size: 0.9em;
}

strong {
    font-weight: 600;
}

@media (min-width: 1200px) {

    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 2em;
    }

    h4 {
      font-size: 1.2em;
    }

}

.container {
    max-width: 1200px;
}

.bg-blue {
    background-color: #BCD2E2;
}

.bg-blue a.button:hover, .bg-blue a.button:active, .bg-blue a.button:focus {
    background-color: #FFF;
}

/************ HEADER **********/



/************ FOOTER **********/

footer {
    height: 1150px;
}

footer .wrapper { 
    background-image: url("../images/footer.jpg");
    background-size: auto 900px;
    background-position: bottom center;
    background-repeat: no-repeat;
    height: 100%;
}

footer #quote {
    padding: 0 15px;
}

footer #quote a.button {
    margin-top: 35px;
}

footer #bottom {
    color: white;
    font-size: 0.9em;
}

footer #bottom .logo img {
    height: 100px;
    margin-bottom: 35px;
}

footer #bottom .links {
    border-top: 1px solid white;
    background: rgba(0,0,0,0.2);
}

footer #bottom .links a {
    text-decoration:none;
    color: inherit;
    transition: all 0.5s;
}

footer #bottom .links a:hover, footer #bottom .links a:active, footer #bottom .links a:focus {
    text-decoration:underline;
}

footer #bottom .links a.facebook:before {
    content: url('../images/icon-facebook.svg');
    position:relative;
    top: 3px;
    margin-right: 5px;
}

footer > img { 
    margin-top: 300px;
    width: 100%;
}

@media (min-width: 576px) {

    footer #quote img {
        max-width: 500px;
    }

}

@media (min-width: 768px) {

}

@media (min-width: 1200px) {

    footer #quote img {
        max-width: 600px;
        height:auto;
    }

    footer {
        height: calc(40vw + 550px);
    }

    footer .wrapper { 
        background-size: contain;
    }

}

@media (min-width: 1400px) { 


}

@media (min-width: 1600px) {

    

}


/************ HOME **********/
.b-home header {
    position: relative;
    background-image: url("../images/header-home.jpg");
    background-size: cover;
    background-position: center center;
}

.b-home header .content {
    width: 100%;
    height: 100%;
    position:relative;
    top: 0;
    left: 0;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.b-home header .content .top {
    z-index: 2;
    width: 100%;
    flex: 1 1 0;
    display: flex;
    /*align-items: center;*/
    align-items: flex-start;
    justify-content: flex-end;
}

.b-home header .content .top .container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.b-home header .content .top .logo {    
    padding: 75px 25px;
    max-width: 500px;
}

.b-home header .content .bottom {
    z-index: 2;
    width: 100%;
   margin-bottom: 100px;
}

.b-home header .content .bottom .container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.b-home header .content .bottom .date-location {
   color: white;
   line-height: 1.2;
   font-size: 1.8em;
   border: 1px solid white;
   padding: 30px 40px;
   display:inline-block;
}

.b-home header .content .bottom .date-location strong {
   font-weight: 700;
}

.b-home header .content .bottom .more {
   display:none;
}

.b-home header .content .bottom .more a {
    text-decoration:none;
}

.b-home header:after {
    position:absolute;
    content:'';
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 1;
}

.b-home main {
    overflow:hidden;
}

.b-home main #intro .text {
    font-size: 1.2em;
}

.b-home main #intro .text a.button {
    margin-top: 25px;
}

.b-home main #intro .info ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.b-home main #intro .info ul li {
    padding: 10px 25px 10px 64px;
    border-bottom: 1px solid white;
    position:relative;
}

.b-home main #intro .info ul li:first-child {
    border-top: 1px solid white;
}

.b-home main #intro .info ul li:nth-child(1):before {
    content:url('');
    position: absolute;
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    background: url('../images/icon-calendar.svg');
    background-size: auto 34px;
    background-position: top center;
    background-repeat: no-repeat;
}

.b-home main #intro .info ul li:nth-child(2):before {
    content:url('');
    position: absolute;
    top: 15px;
    left: 15px;
    width: 34px;
    height: 34px;
    background: url('../images/icon-location.svg');
    background-size: auto 34px;
    background-position: top center;
    background-repeat: no-repeat;
}

.b-home main #intro .info ul li:nth-child(3):before {
    content:url('');
    position: absolute;
    top: 15px;
    left: 15px;
    width: 34px;
    height: 34px;
    background: url('../images/icon-time.svg');
    background-size: auto 34px;
    background-position: top center;
    background-repeat: no-repeat;
}

.b-home main #intro .info ul li:nth-child(4):before {
    content:url('');
    position: absolute;
    top: 15px;
    left: 15px;
    width: 34px;
    height: 34px;
    background: url('../images/icon-social-media.svg');
    background-size: auto 34px;
    background-position: top center;
    background-repeat: no-repeat;
}

.b-home main #intro .info ul li a {
    text-decoration:none; 
}

.b-home main #details ul {
    padding-left: 0;
    margin: 0 0 12px 0;
    list-style: none;
}

.b-home main #details ul li {
    position:relative;
    padding-left: 22px;
    margin-bottom: 5px;
}

.b-home main #details ul li:before {
    content:url('');
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 12px;
    background: url('../images/icon-check.svg');
    background-size: auto 12px;
    background-position: top center;
    background-repeat: no-repeat;
}

.b-home main #details .image > div {
    margin-left: -15px;
    width: 100vw;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width: 576px) {

    .b-home main #details .image > div {
        margin-left: -25px;
    }

}

@media (min-width: 768px) {

    .b-home header {
        height: 100%;
        min-height: 600px;
    }

    .b-home header .content .top .logo {   
        margin-left: 50%;
        padding: 75px 0;
    }


    .b-home header .content .bottom {
        z-index: 2;
        width: 100%;
       margin-bottom: 0;
    }
    
    .b-home header .content .bottom .container {
        display: block;
    }

    .b-home header .content .bottom .date-location {
        width: 50%;
        font-size: 2em;
    }

    .b-home header .content .bottom .more {        
        display:block;
        margin-left: 50%;
        width: 50%;
        background-color: #BCD2E2;
        padding: 20px 40px;
    }

    .b-home header .content .bottom .more img {
       height: 45px;
    }

    .b-home header .content .bottom .more img:last-child {
        position: relative;
        top: 10px;
    }

}

@media (min-width: 992px) {

    .b-home header {
        min-height: 800px;
    }

    .b-home header .content .bottom .more img {
       height: 50px;
    }

    .b-home main #details .text {
        position:relative;
    }

    .b-home main #details .text:after {
        position:absolute;
        right: 0;
        bottom:0;
        content: '';
        background-color: #BCD2E2;
        width: 50vw;
        height: 50px;
    }

    .b-home main #details .image > div {
        margin-left: 0;
        width: 50vw;
        height: 100%;
    }

}

@media (min-width: 1200px) {

    .b-home header .content .bottom .more {     
        padding: 30px 40px;
    }

    .b-home header .content .bottom .more img {
       height: 60px;
    }

    .b-home header .content .bottom .date-location {
        font-size: 2.5em;
    }

}

@media (min-width: 1400px) {

    .b-home header .content .bottom .date-location {
        font-size: 3em;
    }

}