@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}

.step{

}

.step__wrapper{
    /* background-color: #fff6e9; */
    background-color: #f9f9f9;
    padding: 50px 0 50px;
    width: 100%;
    /* width: calc(100% - 10rem); */
    /* margin: 0 auto; */
    /* border-radius: 3rem; */
}

.step__wrapper .step_wrapper-head{
    display:flex;
    justify-content:space-between;
    margin-bottom: 20px;   
}

.step__wrapper .step_wrapper-head img {
    width: 105px;
}

.btn-ply-io-main{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.section-heading {
    font-weight: 600;
    font-size: 60px;
    width: 68%;
    line-height: 67px;
    color: #000;
    text-align: center;
    margin: 0 auto 2rem auto;
}

.step__box {
    text-align: center;
}

.step__box .image {
    width: 100%;
    /* filter: drop-shadow(0px 40px 20px rgba(255, 186, 114, 0.4)); */
    filter: drop-shadow(0px 10px 20px rgba(0, 114, 255, 0.4));
    -webkit-filter: drop-shadow(0px 10px 20px rgba(0, 114, 255, 0.4));
    -moz-filter: drop-shadow(0px 10px 20px rgba(0, 114, 255, 0.4));
    /* -webkit-filter: drop-shadow(0px 40px 20px rgba(255, 186, 114, 0.4));
    -moz-filter: drop-shadow(0px 40px 20px rgba(255, 186, 114, 0.4)); */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}
.step__box .image img {
    width: 100%;
    height: 580px;
    object-fit: contain;
}

.step__box .content {
    margin-top: 45px;
}

.step__box .content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #00bfd7;
    margin-bottom: 25px;
    line-height: 25px;
    letter-spacing: .1rem;
}

.step__box .content h3 span {
    display: block;
    font-size: 40px;
    color: #000;
    letter-spacing: initial;
    line-height: 47px;
}

.step__box .content .paragraph {
    width: 75%;
    color: #666b6d;
    font-size: 16px;
    line-height: 26px;
    margin: 0 auto;
}

.step .button__wrapper {
    /*margin: 30px auto 0 auto;*/
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.step .button__wrapper a {
    background: linear-gradient(0deg, rgba(19, 105, 236, 0) 0%, rgba(255, 177, 107, 0) 50%, #1d5b86 51%, #00bfd7 100%);
    background-size: 200% 200%;
    background-position: center bottom;
    transform: var(--transform-fix);
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    border: 2px solid #00bfd7;
    width: 271px;
    height: 65px;
    display: inline-flex;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10rem;
    font-size: 16px;
    font-weight: 600;
    color: #666b6d;
    transition: all .25s ease;
    letter-spacing: .1px;
    text-decoration: none;
}

.step .button__wrapper a:hover {
    background-position: center top;
    border: none;
    filter: drop-shadow(0px 10px 20px rgba(0, 114, 255, 0.4));
    -webkit-filter: drop-shadow(0px 10px 20px rgba(0, 114, 255, 0.4));
    -moz-filter: drop-shadow(0px 10px 20px rgba(0, 114, 255, 0.4));
    /* background: #ffd588; */
    color: #fff;
}

.button i {
    margin-left: 1rem;
    -webkit-transition: all .25sease;
    transition: all .25sease;
}

.step .terms-abv-txt {
    text-align: center;
    margin-top: 15px;
}

.step .terms-abv-txt p {
    width: 75%;
    color: #666b6d;
    font-size: 16px;
    line-height: 26px;
    margin: 0 auto;
}

.button:focus i, .button:hover i {
    color: white;
}

@media (max-width:1400px){
    .section-heading {
        width: 100%;
        margin: 0 auto 2rem auto;
    }
    .step__box .content .paragraph{
        width: 100%;
    }
}

@media (max-width:1024px){
    .section-heading {
        font-size: 50px;
        width: 100%;
        line-height: 57px;
        margin: 0 auto 2rem auto;
    }
    
    .step__box{
        margin-bottom: 30px;
    }
}

@media (max-width:767px){
    .section-heading {
        font-size: 40px;
        width: 100%;
        line-height: 47px;
        margin: 0 auto 2rem auto;
    }
    
    .step__box{
        margin-bottom: 30px;
    }
    
    .step__wrapper .step_wrapper-head {
        display: block;
        text-align: center;
    }

    .step__wrapper .step_wrapper-head .button__wrapper {
        margin-top: 20px;
    }
    
    .btn-ply-io-main {
        display: block;
        text-align:center;
    }

    .btn-ply-io-main img {
        margin-bottom: 20px;
    }
    
    .step .terms-abv-txt p {
        width: 100%;
        font-size: 15px;
        line-height: 25px;
    }

    .step .terms-con-dv {
        display: block !important;
        text-align: center;
    }

    .step .terms-con-dv a {
        width: 100%;
        display: block;
    }
}

.step  .terms-con-dv {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 30px;
}

.step .terms-con-dv a {
    font-size: 16px;
    line-height: 23px;
    text-decoration: none;
    color: #666b6d;
    transition: .2s all ease-in;
}

.step .terms-con-dv a:hover {
    color: #00bfd7;
}

/* Terms & Condition Page CSS Start Here */

/*Terms And Privacy Banner Css Start Here*/
section.terms-conditions-banner{
    background: #00bfd7;
    padding: 50px 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.terms-conditions-banner .terms-banner-content{
    text-align: center;
}
.terms-banner-content h1{
    font-size: 45px;
    line-height: 55px;
    color: #fff;
}

.terms-banner-content p{
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    margin: 20px 0 0;
}
/*Terms And Privacy Banner Css End Here*/

/*Terms And Privacy Content Section Css Start Here*/
section.terms-privacy-wrap{
    padding: 30px 0;
}
.terms-privacy-content .heading-two{
    color: #00bfd7;
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 35px;
}
.terms-privacy-content p{
    color: #000;
    padding: 0;
}
.terms-privacy-content p strong{
    color: #1d5b86;
}
.terms-privacy-content span{
    color: #000;
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0 10px 0;
    display: block;
}
.terms-privacy-content .heading-four{
    color: #000;
    margin: 0 0 15px;
}
.terms-privacy-content ul{
    margin: 0 0 20px;
    padding: 0 0 0 20px;
}
.terms-privacy-content li{
    color: #000;
    margin: 0 0 5px;
    list-style: disc;
}
.terms-privacy-content li::marker{
    color: #001d35;
}
.terms-privacy-content a{
    color: #001d35;
    transition: all .3s ease-in-out;
    text-decoration: none;
}
.terms-privacy-content a:hover{
    color: #1d5b86;
}
/*Terms And Privacy Content Section Css End Here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
/*Terms And Privacy Banner Responsive Css Start Here*/
section.terms-conditions-banner{
    padding: 50px 0 50px;
}
.terms-banner-content h1{
    font-size: 45px;
    line-height: 55px;
}
/*Terms And Privacy Banner Responsive Css End Here*/

/*Terms And Privacy Content Section Responsive Css Start Here*/
.terms-privacy-content span{
    font-size: 16px;
    line-height: 22px;
}
/*Terms And Privacy Content Section Responsive Css End Here*/
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
/*Terms And Privacy Banner Responsive Css Start Here*/
section.terms-conditions-banner{
    padding: 50px 0 30px;
}
.terms-banner-content h1{
    font-size: 35px;
    line-height: 42px;
}
/*Terms And Privacy Banner Responsive Css End Here*/

/*Terms And Privacy Content Section Responsive Css Start Here*/
.terms-privacy-content span{
    font-size: 16px;
    line-height: 22px;
}
/*Terms And Privacy Content Section Responsive Css End Here*/
}
@media only screen and (min-width: 300px) and (max-width: 575px) {
/*Terms And Privacy Banner Responsive Css Start Here*/
section.terms-conditions-banner{
    padding: 50px 0 30px;
}
.terms-banner-content h1{
    font-size: 30px;
    line-height: 38px;
}
/*Terms And Privacy Banner Responsive Css End Here*/

/*Terms And Privacy Content Section Responsive Css Start Here*/
.terms-privacy-content span{
    font-size: 16px;
    line-height: 22px;
}
/*Terms And Privacy Content Section Responsive Css End Here*/
}

/***************************** sec-contact start *****************************/
.sec-contact {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 80px 0 80px 0;
    background: #fff;
  }
  
  .sec-contact .form-main .head, .sec-contact .support-area .head {
    margin: 0 0 30px 0;
  }
  
  .sec-contact .form-main .head h4, .sec-contact .support-area .head h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
    background: linear-gradient(91deg, #01c5db .68%, #1b5682 109.25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    margin: 0 0 10px 0;
    padding: 0;
  }

  .sec-contact .form-main .head p, .sec-contact .support-area .head p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: unset;
    color: rgba(31, 31, 31, 0.5);
    margin: 0;
    padding: 0;
  }

  .sec-contact .support-area .desc h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
    background: linear-gradient(91deg, #01c5db .68%, #1b5682 109.25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    margin: 0 0 10px 0;
    padding: 0;
  }

  .sec-contact .support-area .desc h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    background: linear-gradient(91deg, #01c5db .68%, #1b5682 109.25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    margin: 10px 0 10px 0;
    padding: 0;
  }

  .sec-contact .support-area .desc p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    text-transform: unset;
    color: rgba(31, 31, 31, 0.5);
    margin: 0;
    padding: 0;
  }
  .sec-contact .support-area .desc .info-ul {
    list-style: circle;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    text-transform: unset;
    color: rgba(31, 31, 31, 0.5);
    margin: 0;
    padding: 0;
  }
  .sec-contact .support-area .desc .info-ul li {
    margin-bottom: 10px;
  }

  .sec-contact .support-area .desc .contact-ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .sec-contact .support-area .desc .contact-ul li {
    display: flex;
    gap: 10px;
    margin: 10px 0;
  }
  .sec-contact .support-area .desc .contact-ul li>i {
    background: linear-gradient(91deg, #01c5db .68%, #1b5682 109.25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .sec-contact .support-area .desc .contact-ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    text-transform: unset;
    color: rgba(31, 31, 31, 0.5);
  }
  
  .sec-contact .form-main .input-main label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    line-height: 18.75px;
    color: #000000;
    margin: 0 0 8px 0;
    padding: 0;
  }
  
  .sec-contact .form-main .input-main input,
  .sec-contact .form-main .input-main textarea {
    height: 52px;
    width: 100%;
    padding: 10px;
    margin: 0 0 24px 0;
    border: 1px solid #DEDEDE;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: unset;
    text-align: left;
    color: rgba(31, 31, 31, 0.5);
  }
  
  .sec-contact .form-main .input-main textarea {
    height: auto;
  }
  
  .sec-contact .form-main .input-main input::-webkit-input-placeholder,
  .sec-contact .form-main .input-main textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: left;
    color: rgba(31, 31, 31, 0.5);
  }
  
  .sec-contact .form-main .input-main input::-moz-placeholder,
  .sec-contact .form-main .input-main textarea::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: left;
    color: rgba(31, 31, 31, 0.5);
  }
  
  .sec-contact .form-main .input-main input:-ms-input-placeholder,
  .sec-contact .form-main .input-main textarea:-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: left;
    color: rgba(31, 31, 31, 0.5);
  }
  
  .sec-contact .form-main .input-main input:-moz-placeholder,
  .sec-contact .form-main .input-main textarea:-moz-placeholder {
    /* Firefox 18- */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: left;
    color: rgba(31, 31, 31, 0.5);
  }
  
  .sec-contact .form-main .input-main span {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: unset;
    color: rgba(31, 31, 31, 0.5);
    margin: 0 0 24px 0;
    padding: 0;
    display: block;
  }
  
  .sec-contact .form-main .submit-btn {
    font-family: Urbanist, sans-serif;
    font-weight: 700;
    font-size: 18px;
    height: 56px;
    width: 100%;
    border-radius: 8px;
    border: none;
    max-width: 100%;
    color: #fff;
    padding: 6px;
    background: linear-gradient(91deg, #01c5db .68%, #1b5682 109.25%);
    background-size: 100%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
    &:hover {
        background-size: 500%;
    background-position: center;
    color: #fff;
    }
  }
  
  /***************************** sec-contact close *****************************/