/*
*{
    margin: 0;
    padding: 0;
}
*/
.about-us-main{
    /* background-color: red; */
    width: 100%;
    padding-top: 114px;
}
.aboutUs-row1{
    background-image: url("/static/airproxy/img/about-bg.png");
    width: 100%;
    height: 550px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.aboutUs-row1>div{
    width: 55%;
    margin: auto;
    text-align: center;
    padding-top: 130px;
}

.aboutUs-row1>div>p{
    font-size: 22px;
    margin-top: 10px;
    font-weight: 200;
}

.aboutUs-row2{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


.aboutUs-row2>div{
    width: 50%;
    text-align: center;
    /* background-color: #f6f9fc; */
    padding: 15px;
}

.aboutUs-row2>div>p{
    font-weight: 200;
    margin: 8px 0;
}

.aboutUs-row3{
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.aboutUs-row3-sub{
    width: 50%;
}
.aboutUs-row3-sub>div{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.aboutUs-row3-sub>div>div>h6{
    margin: 0;
    color: #0073af;
}
.aboutUs-row3-sub>div>div>p{
    margin: 0;
    font-weight: 600;
    color: gray;
}

.aboutUs-row4{
    margin: 80px 0;
    display: flex;
    justify-content: center;
}

.aboutUs-row4>div{
    width: 200px;
    text-align: center;
}

.aboutUs-row4>div>img{
    width: 100%;
}

.aboutUs-row4>div>div{
    background-color: #f6f9fc;
    margin-top: 15px;
    padding: 8px;
}
.aboutUs-row4>div>div>i{
    background-color: #0073af;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}


/* Animation css start*/
.animation-div {
    margin-top: 50px;
    height: 500px;
    position: relative;
    /* background-color: antiquewhite; */
}

.left-main {
    display: inline-block;
    width: 50%;
    height: 500px;
    /* background-color: azure; */
    position: relative;
}

.logo-circle {
    background-color: #6875e2;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}

.logo-circle h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
}

.business-circle {
    position: absolute;
    top: 190px;
    left: 50%;
    text-align: center;
}

.business-circle div {
    background-color: #c4f0ff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    margin-bottom: 10px;
}

.business-circle div i {
    font-size: 40px;
    color: #4faae7;
    margin-top: 30px;
}
.business-circle>div>img{
    margin-top: 30px;
}

.business-circle span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: #4faae7;
}


.arrows-slider {
    position: relative;
    width: 50px;
    height: 40px;
    /* left: 470px; */
    left: 74%;
    top: 220px;
}


.arr-wrapper-1 {
    position: absolute;
    overflow-x: hidden;
    top: 0;
    left: 0;
    animation: moveArrow 3s ease-in infinite;
}

.arrows-slider i {
    font-size: 24px;
    color: #c4f0ff;
    font-weight: 600;
}

.arr-wrapper-2 {
    position: absolute;
    overflow-x: hidden;
    top: 24px;
    right: 0px;
    animation: moveArrow2 3s ease-in infinite;

}

@keyframes moveArrow {
  100% {
    transform: translateX(40px);
  }
}


@keyframes moveArrow2 {
  100% {
    transform: translateX(-40px);
  }
}

.right-main {
    background: rgb(214,245,255);
    background: linear-gradient(90deg, rgba(214,245,255,1) 0%, rgba(255,255,255,1) 20%);
    height: 500px;
    /* height: 540px; */
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    float: right;
    margin: 0 auto;
    width: 50%;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.wrapper {
    position: absolute;
    overflow-x: hidden;
    top: 0;
    right: 0;
    animation: moveSlideshow 15s linear infinite;
    width: 100%;
}

.wrapper2 {
    position: absolute;
    overflow-x: hidden;
    top: 0;
    /* right: -630px; */
    right: -600px;
    animation: moveSlideshow 15s linear infinite;
    width: 100%;
}


.boxes {
    border-radius: 20px;
    display: inline-block;
    vertical-align: middle;
    background-color: aquamarine;
    padding: 10px 24px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: .7;
}

@keyframes moveSlideshow {
  100% {
    transform: translateX(-600px);
  }
}

.green {
    background-color: #d6facf;
    color: #159570;
}

.blue {
    background-color: #c4f0ff;
    color: #217ab7;

}

.yellow {
    background-color: #fdeebe;
    color: #c85d42;

}

.pink {
    background-color: #ffe0f5;
    color: #9251ac;
}


@media only screen and (max-width:1024px){
    .aboutUs-row1{
        height: 450px;
    }
    .aboutUs-row1>div{
        width: 85%;
        padding-top: 90px;
    }
    .left-main{
        width: 10%;
    }
    .business-circle{
        width: 10%;
    }
    .right-main{
        width: 60%;
    }

    .logo-circle{
        width: 90px;
        height: 90px;
        top: 198px;
        left: 41%;
    }
    .logo-circle h3{
        font-size: 20px;
        margin-top: 27px;
    }
    .business-circle div{
        width: 90px;
        height: 90px;
    }
    .business-circle>div>img{
        width: 60px;
        margin-top: 25px;
    }
    .arrows-slider{
        /* left: 142px; */
        position: absolute;
        left: 220%;
    }
    .business-circle span{
        margin-left: 50%;
    }

    @keyframes moveArrow {
        100% {
        transform: translateX(15px);
        }
    }


    @keyframes moveArrow2 {
        100% {
        transform: translateX(-15px);
        }
    }

    /* .wrapper2{
        right: -590px !important;

    }

    @keyframes moveSlideshow {
        0%    { transform: translateX(0); }
        100%  { transform: translateX(-590px); }
    } */

}

@media only screen and (max-width:765px){
    .aboutUs-row1>div{
        width: 90%;
        padding-top: 34px;
    }
    .aboutUs-row1>div>h1{
        font-size: 20px;
    }
    .aboutUs-row1>div>p{
        font-size: 13px;
    }
    .aboutUs-row2>div{
        width: 90%;
    }
    .left-main{
        width: 10%;
    }
    .aboutUs-row3-sub{
        width: 90%;
    }
    .business-circle div{
        width: 75px;
        height: 75px;
    }
    .business-circle>div>img{
        width: 43px;
        margin-top: 25px;
    }
    .business-circle{
        top: 198px;
    }
    .logo-circle{
        width: 85px;
        height: 85px;
    }

}

@media only screen and (max-width:580px){
    .aboutUs-row3-sub>div{
        flex-wrap: wrap;
    }
    .aboutUs-row3-sub>div>div{
        width: 50%;
    }
    .right-main{
        width: 50%;
    }
    .logo-circle{
        left: 51%;
    }
    .arrows-slider{
        left: 250%;
    }
}

.container{
    width: 100% !important;
    max-width: 100% !important;
}

.wrapper,.wrapper2{
    width: 650px;
    /* background-color: sandybrown; */
}
