/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

*{
    margin: 0;
    padding: 0;
}
.deliverSassBox{
    padding: 40px 0 70px;
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
}
.deliverSassBox .deliverSassContent{
    background: #FFFFFF;
    -webkit-box-shadow: 0 2px 16px 0 rgba(0,182,176,0.20);
            box-shadow: 0 2px 16px 0 rgba(0,182,176,0.20);
    width: 48%;
}
.deliverSassBox .deliverSassImg{
    width: 240px;
    height: 240px;
    display: block;
    margin: 60px auto 24px;
}
.deliverSassBox .deliverSassTitle{

    font-size: 20px;
    color: #000000;
    text-align: center;
    line-height: 32px;
    margin-bottom: 12px;
}
.deliverSassBox .deliverSassDes{
    font-size: 16px;
    color: #666666;
    text-align: center;
    line-height: 24px;
    margin-bottom: 32px;

}
.deliverSassBox .deliverSassButton{
    display: block;
    margin: 0 auto;
    width: 149px;
    height: 44px;
    background: #1BD1D1 ;
    color: #FFFFFF;
    border-radius: 44px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 32px;
    text-decoration:none;

}
.deliverSassBox .deliverSassButton span{
    position: relative;
}
.deliverSassBox .deliverSassButton::before{
    content: '';
    display: block;
    width: 0px;
    height: inherit;
    position: absolute;
    border-radius: 44px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;

}
.deliverSassBox .deliverSassButton:hover:before{
   width: inherit;
   background-color: rgba(0,182,176,0.8);

}
@media screen and (max-width:1200px) {
    .deliverSassBox{
        margin: 0 48px;
    }
}
@media screen and (max-width:960px) {
    .deliverSassBox{
        padding: 40px 0 48px
    }
}
@media screen and (max-width:750px) {
    .deliverSassBox{
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
         -ms-flex-direction: column;
             flex-direction: column;
     padding: 24px 0 28px;
     margin: 0 20px;
    }
    .deliverSassBox .deliverSassContent{
        width: 100%;
        margin-bottom: 16px;
    }
    .deliverSassBox .deliverSassContent:last-child{
        margin-bottom: 0;
    }
    .deliverSassBox .deliverSassImg{
        width:160px;
        height: 160px;
        margin-bottom: 0;
    }
    .deliverSassBox .deliverSassTitle{
      
    font-size: 24px;
    margin-bottom: 7px;

    }
    .deliverSassBox .deliverSassDes{
     margin:0 24px 13px;
    }
    .deliverSassBox .deliverSassButton{
        margin-bottom: 18px;
    }
}