@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url(fonts/Roboto-Bold.ttf);
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url(fonts/Roboto-Light.ttf);
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url(fonts/Roboto-Black.ttf);
}

html, body{
    margin: 0;
    width: 100%;
    font-family: roboto, Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #444;
}

*{
    box-sizing: border-box;
}

a{
    color: #0d0d68;
    text-decoration: none;
    transition: 0.3s ease;
}

ul{
    margin: 20px 0;
}

ul li{
    margin: 0 0 15px 0;
}

h1, h2, h3, h4{
    font-weight: 600;
    color: #0d0d68;
}

h1{
    font-size: 40px;
    line-height: 46px;
    margin: 46px 0 15px;
}

h2{
    font-size: 32px;
    line-height: 38px;
    margin: 38px 0 15px;
}

h3{
    font-size: 26px;
    line-height: 32px;
    margin: 32px 0 15px;
}

h4{
    font-size: 20px;
    line-height: 26px;
    margin: 26px 0 15px;
}

.wrapper{
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.heading{
    position: relative;
    text-align: left;
/*    background-color: #0d0d68;*/
    padding: 20px 0;
}

.heading h1{
    margin: 0;
    color: #0d0d68;
    font-weight: 900;
    line-height: 30px;
}

.heading h1 small{
    font-size: 30px;
}

.content {
    padding: 0 0 50px;
    min-height: calc(100vh - 265px);
}

.content h2{
    color: #fff;
    margin-top: 0; 
    text-align: center; 
    padding: 50px 30px;
    margin: 0 0 25px;
    background: #0d0d68;
    border-radius: 10px;
}

.content h2 span{
    font-size: 0px;
    line-height: 0px;
}

.imagebox{
    display: flex;
    flex-wrap: wrap;
}

.imagebox > div{
    display: flex;
    align-items: center;
    width: 25%;
    float: left;
    padding: 0 2.5%;
    border-right: 1px solid #ccc;
    margin-bottom: 20px;
}

.imagebox > div:last-child{
    border-right: none;
}

.imagebox img{
    width: 100%;
}

.price{
    display: inline-block;
    width: 32%;
    margin-right: 1%;
    margin-top: 20px;
    background-color: #F17F04;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.price:last-child{
    margin-right: 0;
}

.price h4{
    color: #fff;
    font-size: 22px;
    margin: 0 0 15px;
}

.price b{
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
}

.btn{
    display: inline-block;
    width: 32%;
    margin-right: 1%;
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
    background-color: #0d0d68;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
}

.btn:hover{
    background-color: #F17F04;
}

.footer{
    display: inline-block;
    width: 100%;
    height: 150px;
    padding: 15px 25px 0;
    background: #D3DAF5;
    color: #333;
    border-radius: 10px 10px 0 0;
}

.footer div{
    display: inline-block;
    line-height: 28px;
    margin: 10px 0;
}
.footer div:first-child{
    width: 60%;
}

.footer div:nth-child(2){
    width: 39%;
    text-align: right;
}

.footer p{
    display: inline-block;
    
    
}

@media screen and (max-width: 1024px) {

    html, body{
        font-size: 16px;
        line-height: 22px;
    }

    h1{
        font-size: 28px;
        line-height: 34px;
        margin: 30px 0 15px;
    }

    h2{
        font-size: 24px;
        line-height: 30px;
        margin: 26px 0 15px;
    }

    h3{
        font-size: 20px;
        line-height: 26px;
        margin: 24px 0 15px;
    }
    
    h4{
        font-size: 18px;
        line-height: 22px;
        margin: 22px 0 15px;
    }

    ul{
        padding-left: 20px;
    }
    
    .heading{
        height: auto;
    }
    
    .heading h1{
        font-size: 32px;
        line-height: 24px;
    }
    
    .heading h1 small{
        font-size: 24px;
    }
    
    .content h1{
        padding: 20px 0;
    }
    
    .footer{
        height: auto;
    }
    
    .footer div{
        width: 100% !important;
        text-align: left !important;
    }
    
    .footer p{
        display: inline;
        line-height: 26px;
    }
}

@media screen and (max-width: 768px) {
    
    .btn{
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .imagebox > div{
        width: 50%;
    }
    
    .imagebox > div:nth-child(2){
        border-right: none;
    }
    
    .price{
        width: 100%;
        margin-right: 0;
    }
}
