.container-wrapper {
    width: 100%;
    display: flex;
    margin: 0px;
    flex-direction: column;
}
.container {
    display: block;
    margin: 0px;
    max-width: 1300px;
    padding: 0 150px;
}

.blue-section {
    background-color: #0567AD;
    margin-top: 100px;
    color: white;
    padding-bottom: 55px;
}
.classic-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10%;
    margin-top: 100px;
}

.classic-content .wrapper-text {
    width: 50%;
}

.title{
    color: #003C67;
    font-size: 45px;
    font-weight: 800;
    margin: 0px;
}

.container .wrapper-title {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 55px;
    text-align: center;
}

.container.blue-container .wrapper-title h1{
    color: white;
}

.container .wrapper-title b{
    font-style: italic;
    font-weight: 100;
    font-size: 18px;
}

.subtitle {
    color: #5C5C5C;
    margin-top: 10px;
    margin-bottom: 45px;
}

.subtitle.yellow {
    color: #FFE86D;
}
.blue-container h2 {
    color: white;
}


.content-btn{
    text-align: center;
    border: solid 1px;
    border-radius: 10px;
    padding: 10px 50px;
    background-color: transparent;
    color: #0567AD;
    border-color: #0567AD;
    font-family: Iceberg;
    font-size: 22px;
    margin-top: 25px;
}

.content-btn i{
    font-size: 25px;
    margin-right: 15px;
}

.content-btn:hover {
    cursor: pointer;
    background-color: #003C67;
    color: white;
    border-color: #0567AD;
}

.container .classic-content .wrapper-img {
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
}

.container .classic-content .wrapper-img img{
    max-width: 450px;
}

.container .classic-content .wrapper-img img.normal{
    max-width: 350px;
}

.blue-shadow-img.right{
    box-shadow: 15px 15px 0px #66C8FF; 
    border-radius: 20px;
    max-width: 450px;
}

.blue-shadow-img.left{
    box-shadow: -15px 15px 0px #66C8FF; 
    border-radius: 20px;
    max-width: 450px;
}

.wrapper-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.content-btn.yellow {
    color: #FFE86D;
    border-color: #FFE86D;
    padding: 10px 100px;
}

.content-btn.yellow:hover{
    background-color: #FFE86D;
    color: #003C67;
    border-color: #003C67;
}

.contact-form {
    display: flex;
    flex-direction: column;
    margin: 0px;
    gap: 30px;
    justify-content: center;
}

.wrapper-form  {
    width: 45%;
}

.contact-form label{
    display: flex;
    flex-direction: column;
}

.contact-form label input, .contact-form label textarea{
    margin-top: 5px;
    border-radius: 10px;
    width: 100% ;
    border: solid 1.5px;
    border-color: #003C67;
    height: 30px;
    color: #5C5C5C;
    padding: 8px;
    font-size: 15px;
}
.contact-form label textarea{
    height: 80px;
}
.wrapper-contact-media {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 45%;
    gap: 20px;
}
.wrapper-contact-media .contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wrapper-contact-media .media ul{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
    gap: 10px;
}
.wrapper-contact-media .media ul li{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    background-color: #003C67;
}
.wrapper-contact-media .media ul li i{
    font-size: 25px;
    color: white;
}




@media screen and (max-width: 1270px) {
    .container .classic-content .wrapper-img img{
        max-width: 350px;
    }
}

@media screen and (max-width: 980px) {
    .container {
        padding: 0px 80px 0px 80px;
    }
    .wrapper-contact-media .contact button{
        font-size: 15px;
        padding: 10px 10px;
    }
    .wrapper-contact-media .contact  i{
        font-size: 20px;
    }
    .title{
        font-size: 36px;
        line-height: 42px;
    }
    .subtitle{
        font-size: 22px;
    }
    .container .classic-content .wrapper-text p{
        font-size: 16px;
    }
    .content-btn{
        font-size: 20px;
    }
    .container .classic-content .wrapper-img img{
        max-width: 100%;
    }
}

@media screen and (max-width: 840px) {

    .container .classic-content {
        margin-top: 80px;
    }
    .title{
        font-size: 32px;
        line-height: 38px;
    }
    .subtitle{
        font-size: 20px;
        margin-bottom: 30px;
    }
    .container {
        padding: 0px 50px 0px 50px;
    }
    .blue-shadow-img.right{
        box-shadow: 8px 8px 0px #66C8FF; 
        border-radius: 20px;
        max-width: 350px;
    }
    
    .blue-shadow-img.left{
        box-shadow: -8px 8px 0px #66C8FF; 
        border-radius: 20px;
        max-width: 350px;
    }
}

@media screen and (max-width: 720px) {
    .container {
        padding: 0px 20px 0px 20px;
    }

}

@media screen and (max-width: 680px) {
    .container .classic-content {
        flex-direction: column;
    }
    .container .classic-content .wrapper-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .container .classic-content .wrapper-text button{
        padding: 5px 20px;
        font-size: 15px;
    }
    .container .classic-content .wrapper-img {
        margin-top: 50px;
    }
    .container .classic-content .wrapper-img{
        width: 100%;
    }
    .container .classic-content .wrapper-img img{
        max-width: 80%;
    }
    .title {
        font-size: 25px;
    }
    .subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .wrapper-contact-media .media ul li{
        width: 40px;
        height: 40px;
    }
    .wrapper-contact-media .media ul li i{
        font-size: 18px;
        color: white;
    }
}

@media screen and (max-width: 550px) {
    .container .classic-content .wrapper-text p {
        font-size: 14px;
    }

    .title {
        font-size: 28px;
    }
    .container .mobile-img-first div:first-child{
        order: 1;
    }
    .container .mobile-img-first .wrapper-img {
        margin-top: 20px
    }
    .wrapper-form  {
        width: 100%;
    }
    .wrapper-contact-media  {
        width: 100%;
        margin-top: 50px;
}
    .wrapper-contact-media .media ul li{
        width: 50px;
        height: 50px;
}
.wrapper-contact-media .media ul li i{
        font-size: 25px;
}
    
}