body {
    font-family: 'Roboto', sans-serif;
    line-height: normal;
    color: #333;
}

h1 {
    font-size: 70px;
    margin-top: 80px;
    padding-bottom: 10px;
    /*border-bottom: 3px solid white;*/
}
h2{
    font-size: 70px;
    font-weight: 600;
    color: #41587b;
    margin-bottom: 40px;
}
h3{
    font-size: 40px;
    color: #41587b;
    font-weight: 600;
    margin-bottom: 30px;
}
a{
    color: #41587b;
    opacity: 0.8;
    transition: opacity 0.3s;
    border-bottom: 1px dashed #41587b;;
}
a:visited{
    color: #41587b;
}
a:hover{
    color: #41587b;
    opacity: 1;
    text-decoration: none;
}
p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}
.bg-tg{
    background: #41587b;
    color: white;
}
.bg-tg h1, .bg-tg h2, .bg-tg h3{
    color: white;
}
.bg-tg a,
.bg-tg a:hover,
.bg-tg a:visited{
    color: white;
}
.bg-tg a{
    border-color: white;
    opacity: 1;
}
.bg-tg a:hover{
    opacity: 0.7;
}
.button{
    background: #41587b;
    color: white;
    padding: 20px 40px;
    font-size: 30px;
    font-weight: 400;
    opacity: 1;
    display: inline-block;
    border: none;
    border-radius: 5px;
}
.button:hover{
    color: white;
    opacity: 0.7;
}
.button:visited{
    color: white;
}
.button.green{
    background: #7ae076;
}
#topBanner {
    margin-bottom: 50px;
}
#topBanner p,
#topBanner ul{
    font-size: 20px;
    font-weight: 300;
}
#topBanner p{
    line-height: 1.5;
}
#topBanner ul{
    padding-left: 20px;
    font-size: 20px;
    line-height: 1.3;
}
#main_phone{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/landing_resources/images/phonebot2-min.png');
    width: 300px;
    height: 553px;
}
.main-phone-container{
    padding: 60px 60px 60px 100px;
}
.instruction-ol{
    list-style: none;
    counter-reset: instruction-ol-counter;
    font-size: 45px;
    font-weight: 600;
    padding-left: 120px;
    color: #333;
}
.instruction-ol > li{
    position: relative;
    min-height: 120px;
    padding-top: 33px;
    padding-left: 20px;
    margin-bottom: 20px;
}
.instruction-ol > li:before{
    counter-increment: instruction-ol-counter;
    content: counter(instruction-ol-counter);

    display: inline-block;
    position: absolute;
    left: -120px;
    top: 0;
    width: 120px;
    height: 120px;
    padding: 10px 26px;
    border-radius: 50%;
    border: 15px solid #41587b;
    background: white;
    color: #666;
    font-weight: 900;
    font-size: 60px;
    line-height: normal;

}


.slick-dots {
    list-style: none;
    padding-left: 0;
}

.slick-dots li{
    display: inline-block;
    margin-right: 60px;
    position: relative;
}
.slick-dots button {
    width: 120px;
    height: 120px;
    padding: 0;
    border-radius: 50%;
    border: 15px solid #41587b;
    background: white;
    color: #666;
    font-size: 60px;
    font-weight: 900;
    opacity: 0.5;
    transition: opacity 0.4s;
}
.slick-dots li:not(:last-child):after{
    position: absolute;
    content: '>';
    font-weight: 900;
    font-size: 40px;
    transform: scaleY(3);
    top: 30px;
    right: -40px;
    opacity: 0.3;
}
.slick-dots li:not(.slick-active):hover button{
    opacity: 0.7;
}
.slick-dots .slick-active button {
    opacity: 1;
}
.slick-dots button:focus{
    outline: none;
}
iframe{
    height: 640px;
}
.instruction{
    width: 100%;
    height: 700px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.instruction:focus{
    outline: none;
}
@media(max-width: 767px){
    h1{
        margin-top: 40px;
        font-size: 50px;
    }
    h2{
        font-size: 40px;
    }
    .main-phone-container{
        padding: 0;
        text-align: center;
    }
    .main-phone-container> div{
        margin: 0 auto 30px;
        width: 70%;
    }
    .instruction-ol{
        font-size: 20px;
        padding-left: 60px;
    }
    .instruction-ol > li{
        min-height: 60px;
        padding-top: 0;
        display: flex;
        flex-flow: column;
        justify-content: space-around;

    }
    .instruction-ol > li:before{
        width: 60px;
        height: 60px;
        left: -60px;
        border-width: 8px;
        padding: 4px 13px;
        font-size: 30px;
    }
    iframe{
        height: 250px;
    }
    .button{
        font-size: 22px;
        font-weight: 300;
    }
}