html {
    height: 100%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body{
    margin: 0;
    counter-reset: section;
    position: relative;
    padding: 0 0 6rem;
    min-height: 100%;
    font-family: Helvetica, serif ;
    font-weight: 200;
    text-align: -webkit-center;
    text-align: -moz-center;
}


header{
    height: 152px;
    background: #324D59;
    text-align: -webkit-center;
    text-align: -moz-center;
}

header > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1366px;
    width: 100%;
}

header .logo1{
    margin: 42px;
    width:213px;
    height:68px;
}
header .logo2{
    margin: 34px;
    height: 90px;
    width: 90px;
}

.content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 50px 140px;
    flex: 1;
    max-width: 1366px;
}
.number::before {
    counter-increment: section;
    content: counter(section);
    text-align: center;
    border-radius: 50%;
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(50, 77, 89, 0.55);
}

.step{
    margin: 10px;
    display: flex;


}

.step > div {
    display: inline;
}

.step span{
    font-size: 19px;
    color: #324D59;
    display: block;
    margin: 0 0 10px;
}


.btn{
    text-decoration: none;
    margin: 6px;
}

.btn img{
    width: 127px;
    height: 45px;
}


footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #324D59;
    color: white;
    height: 90px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
}


.owl-carousel {
    position: relative;
}

.carousel {
    margin-bottom: 24px;
}

.owl-item{
    height: 100%;
}
.owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.owl-theme .owl-nav [class*=owl-]{
    position: absolute;
    top: 50%;
    height: 134px;
    width: 50px;
    transform: translateY(-50%);
    background-image: url("../img/sliderBtn.svg");
}

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-prev:hover{
    left: 0;
    background-image: url("../img/sliderBtn.svg");
    transform: translateY(-50%) rotateY(180deg);
}
.owl-theme .owl-nav .owl-next,
.owl-theme .owl-nav .owl-next:hover{
    background-image: url("../img/sliderBtn.svg");
    right: 0;
}

.owl-theme .owl-nav .disabled{
    display: none;
}

.owl-theme .owl-dots .owl-dot span {
    background: #D8D8D8;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span{
    background: #04B6CD;
}


@media only screen and (max-width: 1000px){
    .step{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    .content{
        margin: 24px;
    }


    header{
        height: 100px;
        display: flex;
        background: #324D59;
        justify-content: space-between;
        align-items: center;
    }

    header .logo1{
        margin: 32px;
        width:152px;
        height:48px;
    }
    header .logo2{
        margin: 20px;
        height: 60px;
        width: 60px;
    }

    footer{
        height: 65px;
    }

    .carousel{
        margin: 24px;
    }
}


@media only screen and (min-width: 1000px){
    .step-one, .step-two{
        flex:1;
        min-width: 40%;
    }

    .step-three{
        flex: 2;
        min-width: 90%;
        align-items: center;
    }
}