@import url("https://fonts.googleapis.com/css?family=Merriweather");
body {
    color: #000;
    background-color: #fff;
    font-family: Merriweather;
}
.btn-primary {
    color: #fff;
    font-size: 18px;
    padding: 8px 15px;
    background-color: #b90903;
    border: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
}
.btn-primary:hover {
    background-color: #010101;
}
img.logo {
    margin: 10px 0 0;
}
h2.main_head {
    margin: 30px 0 0;
    text-align: center;
}
h5.head_contact {
    margin: 10px 0 30px;
    text-align: center;
    font-weight: 600;
    color: #b90903;
    font-size: 20px;
    letter-spacing: 2px;
}
.icon_box {
    padding: 15px;
    background-color: #fff4ea;
    display: flex;
    align-items: center;
    transition: .3s;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    cursor: pointer;
}
.icon_box:hover {
    transform: scale(1.02);
    transition: .3s;
}
.icon_holder {
    padding: 10px;
}
.txt_holder {
    font-size: 22px;
    padding: 10px;
}
.box_main {
    color: #000;
    text-align: center;
    padding: 10px;
    background-color: #fff4ea;
    transition: .3s;
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
}
.box_main:hover {
    transform: scale(1.02);
    transition: .3s;
}
.box_main h3 {
    margin: 20px 10px 30px;
    padding: 0;
    font-size: 24px;
}
.box_main p {
    font-size: 16px;
}
.box_main i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #b90903;
    background-color: #fff;
    display: block;
    margin: auto;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
}
.box_main .btn-primary {
    color: #fff;
    font-size: 18px;
    padding: 8px 15px;
    margin: 20px 10px 10px;
    background-color: #b90903;
    border: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
}
.box_main .btn-primary:hover {
    background-color: #010101;
}
@media(max-width: 768px){
    h2.main_head {
        font-size: 24px;
    }
    .box_main h3 {
        font-size: 20px;
    }
}