/*======================
   01. fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;900&display=swap');
@font-face {
    font-family: sf-regular;
    src: url(../webfonts/SFProDisplay-Regular.ttf);
}
@font-face {
    font-family: sf-Bold;
    src: url(../webfonts/SFProDisplay-Bold.ttf);
}
/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Raleway', sans-serif;
    color: #444444;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #fafafa;
}
ol,
ul {
    list-style: none;
}
a:hover {
    text-decoration: none;
    color: inherit;
}
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
}
.bounce {
    -webkit-animation: float 1500ms infinite ease-in-out;
    animation: float 1500ms infinite ease-in-out;
}
@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
}
@keyframes float {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
}

/*======================
   03. Preloader css
========================*/
.proloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #fff;
}
.loader_34 {
    /* Preloader */
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.loader_34 .ytp-spinner {
    /* Spinner Container */
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}
.loader_34 .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}
.loader_34 .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}
.loader_34 .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
.loader_34 .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.loader_34 .ytp-spinner-left {
    /* Position inside Container*/
    right: 50%;
}
.loader_34 .ytp-spinner-right {
    /* Position inside Container*/
    left: 50%;
}
.loader_34 .ytp-spinner-circle {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    /* Spinner Color */
    border-color: #ff3e3e #ff3e3e transparent;
    border-radius: 50%;
    border-width: 6px;
}
.loader_34 .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: transparent;
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}
.loader_34 .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: transparent;
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}
/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
        transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
    }
}

@keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}
.hamburger-menu {
    cursor: pointer;
    position: absolute;
    right: 15px;
    display: none;
    z-index: 999;
    top: -15px;
}
.hamburger-menu span {
    background: #ff3e3e;
    width: 30px;
    height: 3px;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hamburger-menu:hover .line-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.hamburger-menu:hover .line-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
    opacity: 0;
}
.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1024;
    width: 100%;
}
header.sticky{
    background-color: #ddedfa;
}
#menu {
    margin-top: -1px;
    text-align: right;
}
#menu li {
    display: inline-block;
}
#menu li a {
    font-size: 17px;
    color: #444444;
    padding: 0 30px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 500;
}
#menu li:last-child a{
    padding-right: 0;
}
#menu>li>a.active,
#menu>li>a:hover {
    color: #ff3e3e;
}
.logo{
    max-width: 165px;
    width: 100%;
    display: inline-block;
}
header #menu li a.button{
  border-radius: 5px;
  font-size: 17px;
  color: #ffffff;
  padding: 10px 18px;
  margin-left: 15px;
  font-weight: 600;
  min-width: auto;
}
.title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
}
.sub_title {
    font-weight: 500;
    color: #878787;
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
}
.landing_wrapper {
    height: 100vh;
    background-color: #ddedfa;
    padding-top: 70px;
}
.landing_wrapper h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
}
.landing_wrapper span {
    font-weight: 700;
}
.landing_wrapper p {
    font-weight: 500;
    color: #878787;
    font-size: 23px;
    line-height: 35px;
    max-width: 550px;
}
.landing_wrapper .button {
    width: 150px;
    height: 46px;
    line-height: 1.55;
    font-size: 15px;
}
.home_img_wrapper {
    position: absolute;
    right: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: right;
}
.vegi_1 {
    top: 9%;
    right: 43%;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.vegi_2 {
    top: 30%;
    right: 57%;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.vegi_3 {
    top: 70%;
    right: 53%;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
.delivery_wrapper {
    padding: 80px 0;
}
.delivery_box_wrapper {
    color: #444444;
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
}
.custom_grid .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 204px;
    flex: 0 0 204px;
    max-width: 204px;
}
.custom_grid .line_shape {
    position: absolute;
    max-width: calc(100% - 145px);
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.delivery_box {
    border: 2px solid rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    background-color: #f9fcfe;
    -webkit-box-shadow: 0px 14px 13px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 14px 13px 0px rgba(0, 0, 0, 0.07);
    height: 165px;
    margin-bottom: 20px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.delivery_box_wrapper:hover .delivery_box {
    background-color: #ff3e3e;
    border-color: #ff3e3e;
}
.delivery_box_wrapper .delivery_box img {
    max-height: 60px;
}
.delivery_box_wrapper p {
    color: #878787;
}
.delivery_box_wrapper:hover .delivery_box img {
    -webkit-filter: brightness(427%) contrast(286%);
    filter: brightness(427%) contrast(286%);
}
/* launch box */
.launch_wrapper {
    position: relative;
    padding: 60px 0;
}
.lau_text h3 {
    font-size: 35px;
    line-height: 46px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}
.lau_text p {
    font-size: 25px;
    margin-bottom: 40px;
}
.lau_btn {
    font-size: 18px;
    color: #000;
    border-radius: 5px;
    padding: 15px 28px;
    font-weight: 600;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: #fff;
    display: inline-block;
}
.lau_btn:hover {
    background: #444444;
    color: #fff;
}
.launch_wrapper img {
    max-width: 345px;
    margin-bottom: -15px;
    width: 100%;
}
.custom_app_wrapper {
    padding-bottom: 90px;
    padding-top: 30px;
    height: 760px;
}
.custom_app_wrapper .title {
    margin-bottom: 70px;
}
.nav.nav-tabs {
    border: none;
}
.nav.nav-tabs.app-tab .nav-item {
    cursor: pointer
}
.app_content {
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 520px;
    text-align: center;
    left: 50%;
    position: relative;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.app_screen {
    text-align: center;
}
.app_screen img {
    max-width: 227px;
    margin: 0 auto;
    position: absolute;
    top: 12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.feature_box {
    margin-left: -1px;
    padding: 25px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 5px;
}
.feature_box:hover {
    background-color: #ff3e3e;
}
.feature_box:hover h3,
.feature_box:hover p {
    color: #fff;
}
.feature_box .serial_number {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    position: absolute;
    left: 0;
    top: -7px;
}
.feature_box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444444;
}
.feature_box p {
    color: #717171;
    font-size: 17px;
    line-height: 27px;
}
.mobile_app {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    top: 130px;
    max-width: 290px;
}
/* manager area */
.manager_text .title {
    margin-bottom: 40px;
}
.manager_text .accordion .acc_btn {
    cursor: pointer;
    display: block;
    font-size: 21px;
    font-weight: 600;
    color: #494949;
    padding: 15px 35px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background-color: #fff;
    width: 100%;
    text-align: left;
}
.manager_text .accordion .acc_btn[aria-expanded="true"] {
    background-color: #ff3e3e;
    color: #fff;
    border: 1px solid #ff3e3e;
}
.manager_text .accordion {
    background-color: rgba(255, 255, 255, 0.03);
}
.manager_body {
    padding: 0 35px 25px 35px;
    background-color: #ff3e3e;
}
.manager_body p {
    font-size: 17px;
    line-height: 26px;
    color: #fff;
}
.manager_img {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dash-tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.dash_content {
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
    height: 426px;
    text-align: center;
    left: 0;
    position: relative;
    margin: 80px 0 0
}
.dash_screen img {
    max-width: 582px;
    position: relative;
    top: 18px;
    left: 36%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.delivar_box {
    border: 1px solid #e5e5e5;
    padding: 40px;
    position: relative;
    -webkit-box-shadow: 10.5px 18.187px 29px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 10.5px 18.187px 29px 0px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 100%;
    background: #fff;
    max-width: 560px;
}
.delivar_box::before,
.delivar_box::after {
    position: absolute;
    content: "";
    right: -1px;
    top: -8px;
    width: 20px;
    border: 1px solid #e5e5e5;
    height: 20px;
    z-index: -99999;
    -webkit-transform: skewY(-43deg);
    -ms-transform: skewY(-43deg);
    transform: skewY(-43deg);
    border-top-right-radius: 5px;
}
.delivar_box::after {
    border: none;
    background: #fff;
    width: 19px;
    height: 19px;
    right: 0px;
    top: -5px;
    z-index: 9;
}
.delivar_box h3 {
    font-size: 26px;
    color: #444444;
    font-weight: 600;
    margin-bottom: 15px;
}
.delivar_box img {
    position: absolute;
    top: 25px;
    right: 55px;
    width: 50px;
}
.delivar_box p {
    font-size: 19px;
    line-height: 30px;
    padding-right: 30px;
    padding: 10px 30px 0 0;
}
/*work Flow*/
.work_flow_area {
    padding-bottom: 110px;
    padding-top: 30px;
}
.work_flow_area .container .row::before {
    position: absolute;
    content: '';
    right: 15px;
    width: 80%;
    border: 7px solid #b6db9d;
    border-radius: 4px;
    border-left: none;
    top: 210px;
    height: 239px;
}
.flow_box {
    border-radius: 8px;
    -webkit-box-shadow: 0 0 15px rgb(208, 208, 208, 0.44);
    box-shadow: 0 0 15px rgb(208, 208, 208, 0.44);
    font-weight: 500;
    font-family: sf-Bold;
    padding: 15px;
    max-width: 220px;
    color: #909090;
    background-color: #fafafa;
}
.flow_box .step_number {
    height: 46px;
    width: 46px;
    border-radius: 50%;
    border: 1px solid #fa8000;
    padding: 2px;
    position: absolute;
    right: -17.5px;
    top: calc(50% - 23px);
}
.flow_box .step_number span {
    background-color: #fa8000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.flow_box .icon_box {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
}
.flow_box .number_2 {
    border-color: #c43c3c;
}
.flow_box .number_2 span {
    background-color: #c43c3c;
}
.flow_box .number_3 {
    border-color: #00b2b2;
}
.flow_box .number_3 span {
    background-color: #00b2b2;
}
.flow_box .number_4 {
    border-color: #29ace3;
}
.flow_box .number_4 span {
    background-color: #29ace3;
}
.flow_box .number_5 {
    border-color: #002db2;
}
.flow_box .number_5 span {
    background-color: #002db2;
}
.flow_box .number_6 {
    border-color: #77bc4a;
}
.flow_box .number_6 span {
    background-color: #77bc4a;
}
/*app screenshot area*/
.slider_wrapper{
    padding-bottom: 110px;
}
.slider_wrapper .owl-dots{
    text-align: center;
    margin-top: 30px;
}
.slider_wrapper .owl-dots button{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    padding: 1px;
    margin: 0 5px;
    background-color: #dadada;
}
.slider_wrapper .owl-dots button.active{
    background-color: #ff3e3e;
}
/* get free */
.getfre_wrapper {
    padding-bottom: 75px;
}
.get_text p {
    font-size: 22px;
    line-height: 38px;
    font-weight: 500;
    color: #7a7a7a;
    max-width: 480px;
}
.getp_text {
    max-width: 514px !important;
}
.get_text img {
    max-height: 535px;
}
.gshape1 {
    top: 14px;
    /*left: -83px;*/
}
.gshape2 {
    top: 49px;
    right: 40px;
    width: 85px;
}
.gshape3 {
    bottom: 0;
    /*left: -68px;*/
}

/* get free */
.get_text p {
    font-size: 22px;
    line-height: 38px;
    font-weight: 500;
    color: #7a7a7a;
    max-width: 480px;
}
.get_text {
    padding-top: 35px;
}
.getp_text {
    max-width: 514px !important;
}
.contact_box {
    -webkit-box-shadow: 10.5px 18.187px 29px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 10.5px 18.187px 29px 0px rgba(0, 0, 0, 0.1);
    padding: 35px 35px 45px 35px;
    border: 1px solid #ececec;
    background-color: #fff;
}
.contact_box p {
    font-size: 26px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 30px;
    color: #7a7a7a;
}
.con_input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 500
}
.con_input::-webkit-input-placeholder {
    color: #a0a0a0;
}
.con_input::-moz-placeholder {
    color: #a0a0a0;
}
.con_input:-ms-input-placeholder {
    color: #a0a0a0;
}
.con_input::-ms-input-placeholder {
    color: #a0a0a0;
}
.con_input::placeholder {
    color: #a0a0a0;
}
.button {
    min-width: 190px;
    padding: 12px 20px;
    background: #ff3e3e;
    color: #fff;
    display: inline-block;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 5px;
}
.button:hover {
    background: #53902f;
    color: #fff;
}
footer{
    background-color: #19191b;
    padding-top: 25px;
}
footer ul li a,
footer p{
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
footer ul li{
    margin-top: 15px;
}
footer a:hover,
footer a.media:hover p{
    color: #ff3e3e;
}
footer h4{
    font-size: 22px;
    font-weight: bold;
}
footer .sub_title{
    font-size: 16px;
    line-height: 35px;
    margin-top: 20px;
}
footer .media img{
    width: 22px;
}
.footer_bottom{
    padding-bottom: 25px;
    border-top: 1px solid #202022;
    margin-top: 60px;
}
.footer_bottom a img{
    height: 35px;
}
.social_icons a{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #ff3e3e;
    color: #ff3e3e;
}
.social_icons a:hover{
    background-color: #ff3e3e;
    color: #ffffff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
/*return-to-top START CSS*/
.back-to-top {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 1000;
    border-radius: 50%;
}
.back-to-top i {
    color: #fff;
}