@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Work Sans', sans-serif;
    background: rgb(36, 41, 62);
    background-image: url("https://admin.radiofx.co/src/static/bg.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

#content-wrapper {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    color: #fff;
    background-color: transparent;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
    border-radius: 2px;
    padding: 0px;
    width: 900px;
    max-width: 100vw;
    margin: auto;
    text-align: center;
}


.cta-text{
    color: rgb(58, 62, 82);
    font-size: 19px;
    font-weight: 600;
    line-height: 1; 
    margin-bottom: 10px;
    

}
a:hover{
    opacity: 0.7;
}
hr{
    margin: 50px auto;
}
.radio-wrapper{
    padding: 15px;
    height: 400px;
    width: 400px;
    border-radius: 3px;
    border: solid 2px #A3AAC9;
    background-color: #fff;
    color: rgb(58, 62, 82);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
a:hover{
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    #content-wrapper h1{
        margin-bottom: 15px;
    }
    #content-wrapper h3{
        margin-bottom: 50px;
    }
    #content-wrapper h4{
        margin-bottom: 15px;
    }
    .cta-text{
        min-height: 35px;
    }
    .cta-img{
        min-height: 120px;
        line-height: 120px;
    }
    .col-md-6{
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media screen and (max-width: 767px) {
    .col-md-6{
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 720px) {
    #content-wrapper {
        position: relative;
        top: initial;
        right: initial;
        transform: initial;
        width: 100%;
        height: 100%;
        text-align: center;
    }
    .radio-wrapper{
        margin: 0 auto;
        height: 300px;
        width: 300px;
    }
    .radio-content{
    max-width: 210px;
    }
    .cta-img img{
        width: 100%;
       height: auto;
    }
}