/*--------------------- Copyright (c) 2022 ----------------------- 
[Master Stylesheet] 
-------------------------------------------------------------------*/

/* 1. Global CSS Start */

:root {
    --ytc-global-family:  'Mulish', sans-serif;
    --ytc-global-color: #d1d1d1;
    --ytc-global-size: 18px;
    --ytc-title-family:  'Mulish', sans-serif;
    --ytc-title-color: #020013;
    --ytc-title-size: 32px;
    --ytc-body-bg: #02000d;
    --ytc-primary: #f2003a;
    --ytc-primary: #5600b3;
    --ytc-white: #ffffff;
    --ytc-transition: all 0.3s;
    --ytc-yellow: #f1cf12;
    --ytc-budget-color: #f93c28;
}
* {
    outline: 0 !important;
}
body {
    font-family: var(--ytc-global-family);
    font-weight: 500;
    font-size: var(--ytc-global-size);
    line-height: 1.8;
    background: var(--ytc-body-bg);
    color: var(--ytc-global-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--ytc-primary);
}
/* Preloader */
.ytc-preloader {
    background-color: #02000d;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.ytc-preloader-content {
    max-width: 380px;
    width: 100%;
    text-align: center;
}
.ytc-preloader-content img {
    -webkit-animation: threesixtyrotate 2s linear infinite;
    -moz-animation: threesixtyrotate 2s linear infinite;
    -o-animation: threesixtyrotate 2s linear infinite;
    -ms-animation: threesixtyrotate 2s linear infinite;
    animation: threesixtyrotate 2s linear infinite;
}
@-webkit-keyframes threesixtyrotate {
    100% {
      -webkit-transform: rotateY(360deg);
    }
  }
  @-moz-keyframes threesixtyrotate {
    100% {
      -moz-transform: rotateY(360deg);
    }
  }
  @keyframes threesixtyrotate {
    100% {
      transform: rotateY(360deg);    
    }
  }
  .ytc-preloader-content span {
    display: block;
    font-size: 22px;
    font-weight: 900;
    text-transform: capitalize;
    -webkit-animation: shrink 2s linear infinite;
    -moz-animation: shrink 2s linear infinite;
    -o-animation: shrink 2s linear infinite;
    -ms-animation: shrink 2s linear infinite;
    animation: shrink 2s linear infinite;
}
@keyframes shrink {
    0%,
    100% {
        letter-spacing: 3px;
    }
    50% {
        letter-spacing: 0px;
    }
}
/** Top Button CSS **/
#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 36px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background: var(--ytc-primary);
    color: var(--ytc-white);
    font-size: 40px;
    border-radius: 50%;
    border: 2px solid #4610bd;
}
#scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounce 2s linear infinite;
    -webkit-animation: bounce 2s linear infinite;
    -moz-animation: bounce 2s linear infinite;
}
#scroll img {
    height: 30px;
}
#scroll:hover {
    box-shadow: 0 0 0 25px var(--ytc-title-color) inset;
    border-color: transparent;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}
/* Link & Buttons */
a {
    color: var(--ytc-global-color);
}
a:hover,
a:focus,
button,
button:hover {
    color: var(--ytc-primary);
}
a,
a:hover,
a:focus,
button,
button:hover {
    text-decoration: none;
    -webkit-transition: var(--ytc-transition);
    -moz-transition: var(--ytc-transition);
    -ms-transition: var(--ytc-transition);
    -o-transition: var(--ytc-transition);
    transition: var(--ytc-transition);
}
/* General (img inputs heading )*/
img {
    max-width: 100%;
    height: auto;
}
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(--ytc-title-color);
    font-family: var( --ytc-title-family);
    line-height: 1.4;
}
strong {
    font-weight: 800;
}
ul,ol {
    margin: 0;
    padding: 0 0 0 10px;
    list-style: none;
}/* Button*/
.ytc-btn {
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 0px;
    color: var(--ytc-white);
    background-color: var(--ytc-primary);
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 170px;
    font-weight: 700;
}
.ytc-btn:after, .ytc-btn:before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    background-color: var(--ytc-title-color);
    z-index: 1;
    transition: all ease 0.4s;
}
.ytc-btn:before {
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.ytc-btn:after {
    width: 6px;
    height: 6px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.ytc-btn:hover:after {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    opacity: 1;
    visibility: visible;
}
.ytc-btn:hover {
    color: var(--ytc-white);
}
.ytc-dark-btn {
    background: #ff6000;
    color: var(--ytc-white);
    filter: none;
}
.ytc-dark-btn:hover {
    background: #ff6000;
    color: var(--ytc-white);
    filter: none;
}
.ytc-btn span {
    position: relative;
    z-index: 2;
}
.ytc-btn:hover span,
.ytc-btn:focus span {
    color: var(--ytc-white);
}
.ytc-btn:focus {
    color: var(--ytc-white) !important;
}
.has-bg {
    background: #e1f4fd !important;
}
/* Main CSS*/
.main-wrapper {
    overflow: hidden;
}
/* Banner CSS */
.ytc-banner-wrapper {
    background: #1c2326;
    background: url(../images/banner-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 50px 0 80px;
    margin: 0 0 120px;
}
.ytc-banner-wrapper .container {
    position: relative;
    z-index: 1;
}
.ytc-title-budget {
    display: inline-block;
    background: #ff6000;
    color: var(--ytc-white);
    font-size: 20px;
    padding: 12px 30px;
    border-radius: 80px;
    font-weight: 700;
    max-width: 820px;
    text-transform: capitalize;
    line-height: 1.4;
    box-shadow: 10px 0px 0 0 rgb(255 96 0 / 40%), -10px 0 0 0 rgb(255 96 0 / 40%);
}
.ytc-dual-btn {
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 30px;
}
.ytc-banner-title {
    font-size: 46px;
    font-weight: 900;
    margin: 21px auto 0;
    max-width: 1060px;
    color: var(--ytc-white);
}
.ytc-title-border {
    display: inline-block;
    height: 22px;
    width: 152px;
    background-color: var(--ytc-primary);
    clip-path: path("M 90.552 11.123 L 152 22 L 76.112 22 L 75.888 22 L 0 22 L 61.448 11.123 L 57.521 4.449 L 75.801 0.095 L 75.801 0 L 76 0.047 L 76.199 0 L 76.199 0.095 L 94.479 4.449 L 90.552 11.123 Z");
}
.ytc-banner-title span {
    display: block;
}
.ytc-banner-content .logo {
    margin: 0 0 40px;
}
.ytc-banner-content .logo img {
    max-height: 80px;
}
.ytc-banner-content .ytc-budget {
    max-width: 80%;
    font-size: 24px;
    margin: auto;
}
.ytc-intro-img-row {
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-width: 1380px;
    text-align: center;
}
.ytc-intro-img {
    margin: 50px 0 -180px;
}
/* Title */
.ytc-title {
    max-width: 620px;
    margin: 0 auto 30px;
    text-align: center;
}
.ytc-title h4 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    text-transform: capitalize;
    color: var(--ytc-white);
}
.ytc-title-white h5 {
    color: var(--ytc-white);
}
.ytc-title-white .ytc-title-border {
    background: var(--ytc-white);
}
.has-dark-bg {
    color: var(--ytc-white);
    background: #1e153e;
}
.has-dark-bg .ytc-title h4, .has-dark-bg h4 {
    color: var(--ytc-white);
}
.mb-50 {
    margin-bottom: 80px;
}
/* Features boxes */
.ytc-features-box-wrapper {
    padding: 68px 0 37px;
}
.ytc-features-box {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    border-radius: 0;
    padding: 50px 20px;
    width: 100%;
    margin: 0 0 30px;
    background-color: #1e153e;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 6px solid transparent;
}
section.ytc-features-box-wrapper .col-xl-3:last-child .ytc-features-box {
    width: 276px;
    height: 298px;
}
.ytc-feature-icon {
    margin: 0 0 20px;
}
.ytc-features-box:hover {
    border-color: var(--ytc-primary);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.ytc-features-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ytc-white);
    width: 100%;
}
.ytc-feature-icon img {
    height: 100px;
}
/* Footer */
.ytc-footer-wrapper {
    background: #0b061a;
    background-size: cover;
    padding: 60px 0 30px;
}
.foot-note p {
    color: var(--ytc-budget-color);
    font-weight: 700;
    margin: 0;
    text-align: center;
    font-size: 22px;
}
.ytc-footer-copyright {
    padding: 30px 20px 5px;
    color: var(--ytc-white);
    font-weight: 700;
    border-top: 1px solid rgb(255 255 255 / 10%);
}
.ytc-footer-copyright p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}
/* Step */
.ytc-steps-wrapper {
    background: #0c0526;
    padding: 68px 0 20px;
    position: relative;
}
.ytc-steps-wrapper .row {
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.ytc-steps-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../images/curves.png);
    background-repeat: repeat;
    background-position: center;
    opacity: .1;
}
.ytc-cricle-img {
    position: relative;
}
.ytc-cricle-img>span {
    position: absolute;
    display: inline-flex;
    left: 50%;
    top: 45%;
    transform: translate(-50% , -50%);
    color: var(--ytc-white);
    text-transform: uppercase;
    flex-direction: column;
    font-weight: 600    ;
    letter-spacing: 1px;
}
.ytc-cricle-img {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ytc-step-box p {
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    padding: 30px 20px;
    border-radius: 10px;
    background: #1f124c;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.colored-text {
    background: linear-gradient(91.45deg, #791df7 41.49%, #F525E7 111.82%);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.ytc-prof-support-wrapper .ytc-features-box {
    background-color: #0b061a;
    display: block;
}
.ytc-prof-support-wrapper .ytc-features-box p {
    color: #a7a7a7;
    max-width: 380px;
    width: 100%;
    margin: auto;
}
.ytc-prof-support-wrapper .ytc-features-box a{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--ytc-white);
}

/* Video Section Start */
.ytc-video-box {    
    width: 100%;
    border-radius: 10px;    
}
.ytc-video-inner {
    position: relative;
    text-align: center;
}
.ytc-video-img {
    padding: 0 0 60px 0;
}
.ytc-video-img img {
    border-radius: 10px;
}
.ytc-video-inner .ytc-video-btn span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #5600b3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shadow-pulse 2s infinite;
    cursor: pointer;
}
.ytc-video-inner .ytc-video-btn span {
    fill: var(--themestack-white-color);
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 70%)
    }
    100% {
        box-shadow: 0 0 0 30px rgb(255 255 0 / 0%);        
    }
}
/* Video Section End */

/* Support */
.ytc-support-wrapper {
    padding: 80px 0 0px;
}
.ytc-support-wrapper h4 {
    text-align: left;
}
.ytc-support-wrapper .ytc-title {
    margin: 0 0 20px;
}
.ytc-thank-wrap {
    padding: 50px 0 0;
    margin: 0 auto 20px;
}
/* about */
.ytc-about-wrapper {
    padding: 41px 0 50px;
}
.ytc-about-wrapper h4 {
    text-align: left;
}
.ytc-about-wrapper .ytc-title {
    margin: 0 0 20px;
}
/* Call To Action */
.ytc-call-to-action .ytc-title a.logo {
    margin: 0 0 20px;
    display: inline-block;
}
.ytc-call-to-action .ytc-title a.logo img {
    height: 80px;
}
.ytc-call-to-action .ytc-title {
    max-width: 820px;
}
.ytc-call-to-action .ytc-title h4 {
    color: var(--ytc-white);
}
.ytc-steps-wrapper .container {
    position: relative;
    z-index: 1;
}
.ytc-steps-wrapper .ytc-image img {
    max-height: 380px;
}
/** Responsive CSS Start **/
@media(min-width:1400px) {
    .container {
        max-width: 1200px;
    }
}
@media(min-width:1200px) {
    .connection-line {
        position: relative;
    }
    .connection-line:before {
        position: absolute;
        content: "";
        background: url(../images/connection.png);
        background-position: center center;
        background-repeat: no-repeat;
        width: 340px;
        height: 300px;
        top: 60%;
        background-size: contain;
        left: 0;
        right: 0;
        margin: auto;
    }
    .connection-line.line1:before {
        background: url(../images/connection2.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        top: 70%;
    }
}
@media(max-width:1399.98px) {
    .ytc-banner-title {
        font-size: 36px;
        margin: 21px auto 0;
    }
    .ytc-title h4 {
        font-size: 34px;
    }
}
@media(max-width:991.98px) {
    .ytc-banner-title {
        font-size: 26px;
    }
    .ytc-title h4 {
        font-size: 24px;
    }
    .ytc-support-wrapper .row {
        flex-direction: column-reverse;
    }
}
@media(max-width:767.98px) {
    .ytc-banner-title {
        font-size: 26px;
    }
    .ytc-steps-wrapper .center-row {
        flex-direction: column-reverse;
    }
    .ytc-steps-wrapper .row {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .ytc-step-box p {
        font-size: 18px;
        padding: 20px 20px;
    }
    .ytc-title-budget {
        font-size: 16px;
        padding: 10px 30px;
    }
    .ytc-banner-content .logo img {
        max-height: 60px;
    }
}