/*--------------------- Copyright (c) 2022 ----------------------- 
[Master Stylesheet] 
Project: YouTube auto post WordPress Plugin
Version: 1.0.0
Author: 
 ------------------------------------------------------------------- 
[Table of contents] 
	1. Global CSS Start
	2. Comman CSS Start
        -- Header CSS Start
        -- Footer CSS Start
	3. Main CSS Start
	4. Responsive CSS Start
-------------------------------------------------------------------*/


/* 1. Global CSS Start */

:root {
    --yp-global-family: 'Outfit', sans-serif;
    --yp-global-color: #777777;
    --yp-global-size: 16px;
    --yp-title-family: 'Outfit', sans-serif;
    --yp-title-color: #202124;
    --yp-title-size: 32px;
    --yp-body-bg: #ffffff;
    /* --yp-primary-color: #F73859; */
    --yp-primary-color: #e41a21;
    --yp-white: #ffffff;
    --yp-transition: all 0.3s;
}

* {
    outline: 0 !important;
}

body {
    font-family: var(--yp-global-family);
    font-weight: 400;
    font-size: var(--yp-global-size);
    line-height: 1.8;
    background: var(--yp-body-bg);
    color: var(--yp-global-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 6px;
    box-shadow: none;
}

body::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    box-shadow: none;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--yp-primary-color);
    box-shadow: none;
}

a {
    color: var(--yp-global-color);
}

a:visited:hover,
a:hover,
a:focus,
button,
button:hover {
    color: var(--yp-primary-color);
}

a,
a:hover,
a:focus,
button,
button:hover {
    text-decoration: none;
    -webkit-transition: var(--yp-transition);
    -moz-transition: var(--yp-transition);
    -ms-transition: var(--yp-transition);
    -o-transition: var(--yp-transition);
    transition: var(--yp-transition);
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

input,
textarea,
select,
button,
button:focus,
button:hover,
label,
.form-control:focus {
    box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    color: var(--yp-title-color);
    text-transform: capitalize;
    font-family: var( --yp-title-family);
    line-height: 1.2;
}

strong {
    font-weight: 700;
    color: var(--yp-white);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* btn*/

.yp-btn {
    background: var(--yp-primary-color);
    padding: 16px 20px;
    border-radius: 8px;
    color: var(--yp-white);
    min-width: 180px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.yp-btn:before {
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--yp-title-color);
    height: 100%;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.yp-btn:hover:before {
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -ms-transform: scale(3);
    -o-transform: scale(3);
    transform: scale(3);
}

.yp-btn:hover {
    background: var(--yp-title-color);
    color: var(--yp-white);
}

.yp-btn,
.yp-btn:hover,
.yp-btn:focus {
    -webkit-transition: var(--yp-transition);
    -moz-transition: var(--yp-transition);
    -ms-transition: var(--yp-transition);
    -o-transition: var(--yp-transition);
    transition: var(--yp-transition);
}

.yp-dark-btn {
    background: var(--yp-title-color);
    color: var(--yp-white);
}

.yp-dark-btn:hover {
    background: var(--yp-primary-color);
    color: var(--yp-white);
}

.yp-btn span {
    position: relative;
}

.yp-btn:hover span,
.yp-btn:focus span {
    color: #fff;
}


/* Main CSS*/


/* Banner CSS */

.yp-banner-wrapper {
    background: #e5f1fd;
    background: url(../images/banner-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 180px 0;
}

.yp-banner-img-wrap {
    width: 100%;
    height: 300px;
}

.yp-banner-img {}


/* Mockup*/

.yp-banner-img ul li {
    position: absolute;
    z-index: 2;
}

.yp-banner-img ul li:first-child {
    right: 5%;
    animation: updown 2s ease-out infinite;
    bottom: -54px;
}

.yp-banner-img ul li:nth-child(2) {
    bottom: 6.5%;
    right: 14.5%;
}

.yp-banner-img ul li:nth-child(3) {
    bottom: 24%;
    right: 32%;
    animation: 2s rotationReverse linear infinite;
}

.yp-banner-img ul li:nth-child(4) {
    bottom: -90px;
    right: 27%;
    animation: 3s rotation linear infinite;
}

.yp-banner-img ul li:nth-child(5) {
    top: 11%;
    right: 7%;
    animation: 5s rotationReverse linear infinite;
}

.yp-banner-img ul li:nth-child(6) {
    right: 13%;
    bottom: 28%;
    z-index: 2;
}

.yp-banner-img ul li:nth-child(7) {
    right: 0;
    bottom: 13.5%;
}

.yp-banner-img ul li:nth-child(8) {
    right: 15%;
    top: 37%;
    z-index: 3;
    animation: downup 3s ease-out infinite;
}

.yp-banner-img ul li:nth-child(9) {
    right: 28%;
    top: 33%;
    animation: 2.5s rotation linear infinite;
}

.yp-banner-img ul li:nth-child(10) {
    right: 0;
    top: 26.5%;
    animation: updown 3s ease-out infinite;
}


/* Shaps */

.yp-banner-shaps-wrap ul li {
    position: absolute;
}

.yp-banner-shaps-wrap ul li:first-child {
    right: 0;
    bottom: 0;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}

.yp-banner-shaps-wrap ul li:nth-child(2) {
    bottom: 60px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 300px;
    animation: zoom-in-zoom-out 4s ease-out infinite;
}

.yp-banner-shaps-wrap ul li:nth-child(3) {
    top: 70px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 80px;
    text-align: right;
    animation: zoom-in-zoom-out 3s ease-out infinite;
}

.yp-banner-shaps-wrap ul li:nth-child(4) {
    top: 0;
    right: 0;
}

.yp-banner-shaps-wrap ul li:nth-child(5) {
    bottom: 35px;
    left: 8%;
    animation: zoom-in-zoom-out .9s ease-out infinite;
}

.yp-banner-shaps-wrap ul li:nth-child(6) {
    top: 80px;
    bottom: 0;
    margin: auto;
    max-height: 220px;
    left: 4%;
    animation: zoom-in-zoom-out 6s ease-out infinite;
}

.yp-banner-shaps-wrap ul li:nth-child(7) {
    top: 60px;
    left: 40px;
    animation: zoom-in-zoom-out 1.5s ease-out infinite;
}


/* Banner Contern*/

.logo {
    margin: 0 0 53px;
}

.yp-banner-content {
    position: relative;
    z-index: 2;
}

.yp-banner-sub-title span {
    background: rgb(247 56 89 / 10%);
    color: var(--yp-primary-color);
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    padding: 10px 20px;
    max-width: 290px;
    width: 100%;
    text-align: center;
    border-radius: 40px;
}

.yp-banner-title {
    font-size: 36px;
    font-weight: 600;
    margin: 14px 0 34px;
    line-height: 1.6;
}

.yp-banner-content .yp-dual-btn .yp-btn:first-of-type {
    margin-right: 20px;
}

.yp-banner-content .yp-dual-btn {
    display: flex;
    flex-wrap: wrap;
}


/* Tilte*/

.yp-title {
    margin: 0 0 40px;
}

.yp-title h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}


/* Setps */

.spacer {
    padding: 92px 0 70px;
}

.yp-steps-section {
    text-align: center;
    margin: 0 0 22px;
}

.yp-step-img {
    margin: 0 0 20px;
}

.yp-steps-section h4 {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin: 0 0 10px;
}

.yp-steps-section p {
    margin: auto;
    max-width: 230px;
}

p {
    margin: 0;
}

.yp-lead-content {
    margin: 0 0 91px;
    max-width: 480px;
}

.yp-steps-section:hover .yp-step-img img {
    animation: zoom-in-zoom-out 1.5s ease-out infinite;
}

.yp-steps-section:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.yp-steps-section:hover,
.yp-steps-section,
.yp-steps-section:hover h4,
.yp-steps-section h4 {
    -webkit-transition: var(--yp-transition);
    -moz-transition: var(--yp-transition);
    -ms-transition: var(--yp-transition);
    -o-transition: var(--yp-transition);
    transition: var(--yp-transition);
}

.yp-steps-section:hover h4 {
    color: var(--yp-title-color);
}

@-webkit-keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/* Call To Action */

.yp-lead-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 15px;
    max-width: 480px;
}

.has-bg-color {
    background: #fff8f9;
}

.yp-lead-wrapper {
    padding: 40px 0 0;
}

.yp-lead-wrapper .row {
    align-items: flex-end;
}

.yp-video-wrapper .yp-lead-content h3,
.yp-video-wrapper .yp-lead-content {
    max-width: 520px;
}

.yp-video-wrapper {
    padding: 79px 0 36px;
}

.yp-customize-wrapper {
    padding: 100px 0 0;
}

.yp-lead-content .yp-btn {
    margin: 31px 0 0;
}


/* Feature*/

.yp-features-wrapper {
    padding: 92px 0 70px;
    background: url(../images/feature-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.yp-feature-section {
    text-align: center;
    border-radius: 10px;
    background-color: #fee9ec;
    padding: 45px 15px 46px 15px;
    margin-bottom: 30px;
    transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transform: translateY(0px);
    box-shadow: 0 13px 50px 0px rgb(11 44 60 / 5%);
}

.yp-feature-img-icon {
    margin: 0 0 -6px;
    display: inline-block;
}

.yp-feature-section:hover {
    background: #ffffff;
    box-shadow: 0 51px 63px 0px rgb(11 44 60 / 9%);
    transform: translateY(-5px);
}

.yp-feature-section:hover,
.yp-feature-section,
.yp-feature-section:hover .yp-feature-title h4,
.yp-feature-section .yp-feature-title h4,
.yp-feature-section:hover .yp-feature-img-icon img,
.yp-feature-section .yp-feature-img-icon img {
    -webkit-transition: var(--yp-transition);
    -moz-transition: var(--yp-transition);
    -ms-transition: var(--yp-transition);
    -o-transition: var(--yp-transition);
    transition: var(--yp-transition);
}

.yp-feature-title h4 {
    font-size: 18px;
    color: #202124;
    font-weight: 400;
    margin: 0;
}

.yp-feature-section:hover .yp-feature-title h4 {
    color: var(--yp-title-color);
}

.yp-feature-section:hover .yp-feature-img-icon img {
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.arrow-img {
    position: relative;
}

.arrow-img:before {
    content: "";
    background: url(../images/arrow-up.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    height: 50px;
    width: 140px;
    right: -70px;
    bottom: 80px;
    background-size: auto;
}

.arrow-img:after {
    content: "";
    background: url(../images/arrow-down.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    height: 50px;
    width: 140px;
    left: -70px;
    top: 30px;
    background-size: auto;
}

.yp-footer-widget .yp-dual-btn .yp-btn:first-of-type {
    margin-right: 20px;
}

.yp-prebuild-temp-wrapper {
    padding: 96px 0 48px;
}

.yp-prebuild-temp-wrapper .row {
    align-items: center;
}

.yp-prebuild-temp-wrapper .yp-lead-content {
    margin-bottom: 30px;
}

.yp-prebuild-temp-wrapper .yp-lead-img {
    margin-bottom: 20px;
}

.yp-customize-wrapper.section-one {
    padding: 30px 0 0;
}

.yp-customize-wrapper.section-one .yp-lead-img {
    margin: 0px -20px -42px 0;
}

.yp-customize-wrapper.section-one .yp-lead-img {
    position: relative;
}

.yp-customize-wrapper.section-one .yp-lead-img img {
    position: relative;
    z-index: 2;
}

.yp-shapes ul li {
    position: absolute;
    z-index: 1;
}

.yp-shapes ul li:first-child {
    right: 40px;
    top: 0;
    bottom: 120px;
    margin: auto;
    height: 40px;
    animation: zoom-in-zoom-out 4s ease-out infinite;
}

.yp-shapes ul li:nth-child(2) {
    bottom: 180px;
    animation: zoom-in-zoom-out 2s ease-out infinite;
    left: 0;
}

.yp-shapes ul li:nth-child(3) {
    top: 40px;
    left: 60px;
    animation: zoom-in-zoom-out 3s ease-out infinite;
}

section .yp-btn {
    padding: 11px 0;
}

.yp-customize-wrapper.section-one .row {
    align-items: center;
}

.yp-customize-wrapper.section-one .yp-lead-content {
    margin-bottom: 20px;
}

.yp-lead-img {
    position: relative;
}

.yp-video-shapes ul li {
    position: absolute;
}

.yp-video-shapes ul li:first-child {
    right: -30px;
    top: -25px;
    animation: 3s rotation linear infinite;
}

.yp-video-shapes ul li:nth-child(2) {
    bottom: -100px;
    right: -10px;
    animation: 2s rotation linear infinite;
}

.yp-video-shapes ul li:nth-child(3) {
    top: -50px;
    left: 0;
    animation: 4s rotation linear infinite;
}


/* Lead Icons */

.yp-lead-wrapper.main-lead .yp-lead-img {
    padding: 80px 0 0;
    text-align: center;
}

.yp-lead-icons ul li {
    position: absolute;
}

.yp-lead-icons ul li:first-child {
    left: 0;
    top: 60px;
    z-index: 1;
}

.yp-lead-icons ul li:nth-child(2) {
    top: 23%;
    z-index: 1;
    right: 13%;
    transform: rotate(281deg);
}

.yp-lead-icons ul li:nth-child(3) {
    top: -20px;
    left: -40px;
    animation: 4s zoom-in-zoom-out linear infinite;
}

.yp-lead-icons ul li:nth-child(4) {
    top: 0;
    right: 0;
    animation: 8s zoom-in-zoom-out linear infinite;
}


/* Animation*/

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-5px) rotate(0deg);
        transform: rotate(0deg) translate(-5px) rotate(0deg);
        transition: 1s ease-in-out;
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        transform: rotate(360deg) translate(-5px) rotate(-360deg);
        transition: 1s ease-in-out;
    }
}

@keyframes rotationReverse {
    0% {
        -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-5px) rotate(0deg);
        transform: rotate(0deg) translate(-5px) rotate(0deg);
        transition: 1s ease-in-out;
    }
    100% {
        -webkit-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -moz-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -ms-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -o-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        transform: rotate(-360deg) translate(-5px) rotate(360deg);
        transition: 1s ease-in-out;
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(.8, .8);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(.8, .8);
    }
}

@keyframes updown {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes downup {
    0% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(10px);
    }
}

@-webkit-keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/* Footer */

.yp-footer-wrapper {
    text-align: center;
}

.yp-main-footer {
    background: #e5f1fd;
    background: url(../images/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0 92px;
}

.yp-footer-logo {
    margin: 0 0 37px;
}

.yp-footer-widget {
    max-width: 990px;
    margin: auto;
}

.yp-footer-widget h4 {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 35px;
    line-height: 1.6;
}

.yp-footer-copyright {
    background: #202124;
    padding: 10px 0;
}

.yp-footer-copyright p {
    color: #ededed;
    margin: 0;
}


/** Top Button CSS **/

#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 40px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background: var(--yp-primary-color);
    color: #ffffff;
    font-size: 40px;
    border-radius: 50%;
}

#scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounce 2s;
    -webkit-animation: bounce 2s;
    -moz-animation: bounce 2s;
}

#scroll img {
    height: 30px;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}


/* Preloader */

.preloader {
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
}

.status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.yp-video-wrapper .row {
    align-items: center;
}

.yp-video-wrapper .row .yp-lead-content,
.yp-video-wrapper .row .yp-lead-img {
    margin: 0 0 20px;
}

.yp-video-wrapper {
    padding: 127px 0 131px;
}

.main-wrapper {
    overflow: hidden;
}


/** Responsive CSS Start **/

@media(min-width:1400px) {
    .container {
        max-width: 1200px;
    }
    .yp-banner-wrapper .container {
        max-width: 1320px;
    }
    .yp-lead-wrapper.main-lead .yp-lead-content {
        margin-left: 15%;
    }
    .yp-customize-wrapper.section-one .yp-lead-content {
        padding-left: 15%;
        max-width: 100%;
    }
    .yp-customize-wrapper.section-one .yp-lead-img {
        width: 116%;
    }
}

@media(max-width:1599.98px) {
    .yp-banner-shaps-wrap ul li:nth-child(6) {
        left: 0;
    }
    .logo {
        margin: 0 0 43px;
    }
    .yp-banner-shaps-wrap {
        opacity: .6;
    }
    .yp-banner-title {
        margin: 14px 0 24px;
        line-height: 1.5;
        max-width: 85%;
    }
}

@media(max-width:1399.98px) {
    .yp-banner-shaps-wrap {
        opacity: .5;
    }
    .yp-banner-img ul li:nth-child(9) {
        right: 24%;
    }
    .yp-btn {
        padding: 10px 20px;
        min-width: 150px;
    }
}

@media(max-width:1199.98px) {
    .yp-banner-img ul li:nth-child(9) {
        right: 15%;
    }
    .yp-banner-wrapper {
        padding: 80px 0 180px;
    }
    .arrow-img:after,
    .arrow-img:before {
        display: none;
    }
}

@media(max-width:991.98px) {
    .yp-banner-img-wrap {
        display: none;
    }
    .yp-banner-content {
        text-align: center;
    }
    .yp-banner-content .yp-dual-btn {
        justify-content: center;
    }
    .yp-banner-title {
        max-width: 100%;
    }
    .yp-banner-wrapper {
        padding: 50px 10px;
    }
    .yp-footer-widget h4 {
        font-size: 26px;
        line-height: 1.4;
    }
    .yp-main-footer {
        padding: 70px 0 52px;
    }
    .yp-prebuild-temp-wrapper .yp-lead-img {
        text-align: center;
    }
    .yp-lead-img {
        text-align: center;
    }
    .yp-video-wrapper {
        padding: 77px 0 81px;
    }
    .yp-video-wrapper .yp-lead-content {
        padding-bottom: 40px;
    }
    .yp-lead-wrapper.main-lead .row {
        flex-direction: column-reverse;
    }
    .yp-lead-content h3,
    .yp-title h2 {
        font-size: 22px;
    }
}

@media(max-width:767.98px) {
    .yp-btn {
        padding: 6px 15px;
        min-width: 130px;
        font-size: 14px;
    }
    .yp-banner-title {
        font-size: 26px;
        line-height: 1.2;
    }
    .yp-banner-content .yp-dual-btn .yp-btn:first-of-type,
    .yp-banner-content .yp-dual-btn .yp-btn {
        margin-bottom: 10px;
    }
    .yp-banner-shaps-wrap {
        opacity: .3;
    }
}

@media(max-width:575.98px) {
    .yp-video-shapes ul li {
        width: 45%;
    }
    .yp-video-shapes ul li:nth-child(2) {
        bottom: -50px;
        right: 0;
    }
    .yp-lead-icons ul li img {
        width: 60%;
    }
    .yp-btn,
    section .yp-btn {
        padding: 4px 15px;
        min-width: 120px;
    }
    .yp-banner-sub-title span {
        font-size: 16px;
        padding: 6px 15px;
    }
}