h1{
    font-size: 48px;
    line-height: 1.2;
}

h2{
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 25px;
}

h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 600;
}

h4{
   margin-bottom: 20px;
   margin-top: 30px;
}

h5{
    font-size: 16px;
}

p {
    margin-bottom: 20px;
}


/* Banner */
.banner{
    padding: 80px 0 30px;
    position: relative;
}

.banner:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.3);
}

.banner h1{
    padding: 10px;
    position: relative;
}

/* Common Button Style */
.common-btn{
    font-family: "Cabin", sans-serif;
    padding: 12px 20px;
    font-size: 16px;
    transition: all ease-in-out 0.3s;
    border: 0;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    text-transform:uppercase;
}


/* Contact Raymond James Styling Start */
.contact-us{
    padding: 60px 0 50px;
}

    .contact-us .content .h2head {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 25px;
        font-weight:800;
    }

.contact-us ul{
    margin-bottom: 30px;
}

.contact-us p a{
    transition: all ease-in-out 0.3s;
}

.contact-us .container{
    display: flex;
    gap: 30px;
}

.contact-us .content{
    width: calc(100% - 337px);
}

.contact-us .wrap{
    width: 337px;
}

    .contact-us .wrap img{
        width: 100%;
    }

.contact-us .wrap iframe{
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
}

.contact-us .form{
    display: flex;
    flex-wrap: wrap;
    margin: 30px -5px -8px;
}

.contact-us .form .form-group{
    width: calc(50% - 10px);
    margin: 8px 5px;
}

.contact-us .form-group label{
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.contact-us .form-group input,
.contact-us .form-group textarea{
    border-radius: 3px;
    font-size: 15px;
    padding: 9px 20px;
    font-family: "Cabin", sans-serif;
    height: 43px;
    width: 100%;
    outline: 0;
}

.contact-us .form-group textarea{
    height: 96px;
}

    .contact-us .form-group:nth-last-child(1),
    .contact-us .form-group:nth-last-child(4) {
        width: 100%;
    }

    .contact-us .form-group:nth-last-child(2) {
        margin-top: 42px;
    }

    .contact-us button {
        width: 100%;
    }

.contact-us .wrap p strong{
    display: block;
}

.contact-us .wrap ul{
    list-style: none;
}

    .contact-us .contact-captcha {
        display:flex;
    }

        .contact-us .contact-captcha .sum-lbl {
            font-weight: bold;
            width: 50%;
            margin-top: 7px;
        }

    .contact-us .social-icons {
        display: flex;
        gap: 5px;
    }

.contact-us .social-icons li {
    margin-bottom: 0;
}

.contact-us .social-icons li a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.3s;
}

.contact-us .social-icons li a svg{
    width: 20px;
}
/* Contact Raymond James Styling End */

.iframe-box {
    margin-top:30px;
}

/* Media Queries Start Here */
@media screen and (max-width:1024px) {
    .banner{
        padding: 120px 0 40px;
      }

      .banner h1{
        padding: 0;
      }
}

@media screen and (max-width:767px) {
    h1{
        font-size: 30px;
    }

    .contact-us .container{
        flex-wrap: wrap;
    }

    .contact-us .wrap,
    .contact-us .content{
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .contact-us .form .form-group{
        width: 100%;
    }

    .iframe-box {
        margin-top: 30px;
    }

    .contact-us .contact-captcha {
        display: block;
    }

        .contact-us .contact-captcha .sum-lbl {
            width: 100%;
        }

    .contact-us .form-group:nth-last-child(2) {
        margin-top: 15px;
    }
}