html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
    font-family: 'Helvetica', 'Segoe UI', Arial, sans-serif;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.video-wrapper {
    pointer-events: none;
    position: relative;
    width: 100%;      
    height: 355px;     
    overflow: hidden;
    background: black;
}

.contact-btn{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #06293a;
    color: #FFF;
    padding: 12px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    line-height: 1; 
    transition: .2s;
}

.contact-btn span{
    font-size: 20px;
}

.contact-btn:hover{
    background-color: #2ec396;
}

.howto-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 50px;
    border: solid;
    border-color: #FFF;
    color: #FFF;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    line-height: 1;
    transition: .2s;
}

.howto-btn span{
    font-size: 20px;
}


.howto-btn:hover{
    border-color:#2ec396;
    color: #FFF;
}

.page-container{
    max-width: 1200px;
    margin: 50px auto;
    justify-content: space-between;
}

.page-container h1{
    font-size: 1.6rem;
    margin: 20px auto ;
    text-align: center;
    max-width: 1200px;
}

.content-container{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.header-text{
    margin-bottom: 50px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0px 100px;
}

.header-text h1{
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.left{
    flex-basis:500px;
    flex-shrink:1;
}

.right{
    flex-basis:1000px;
    flex-shrink:1;
}

.right h1{
    font-size: 34px;
    font-weight: 600;
}

.index{
    flex-basis: 450px;
    margin: 0px 20px;
}

.index a{
    flex-basis: 700px;
    color: #FFF;
}

.index-wrap li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.index-wrap li::before {
    content: "- ";
    color: #fff;
    margin: auto 15px;
    width: 1em;
}

.index h1{
    border:1px solid #FFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    margin: 0px;
}

.index-wrap{
    padding: 20px 0px;
    border:1px solid #FFF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.brokers-list{
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: stretch;
}

.broker{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 0px 5px;
    width: 380px;
    min-height: 150px;
    background: linear-gradient(#0E5C75, #001C45);
    margin-bottom: 50px;
}

.broker h2{
    font-weight: 600;
    margin-bottom: 5px;
}

.broker p {
    margin-bottom: 5px;
}

.broker a{
    color: #2ec396;
}

@media screen and (max-width:1200px){
    .broker{
        width:100%;
        margin: 15px 20px;
    }
}

@media screen and (max-width:768px){
    .content-container{
        flex-direction:column;
    }
    .left,.right{
        flex-basis:auto;
        width:100%;
    }
}