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

:root {
    --bg_color1: #111962;
    --title-1: #f26e21;
    --maroon : #c21f32;
    --white: #fff;
    --dark-blue: #0a0a35;
    --light-blue: #01aeee;
   
    --liner1:  linear-gradient(90deg,  #013660, #2175b1);
    --liner2: linear-gradient(90deg, #f26e21, #eb905c);
    --font-family-title: Verdana, sans-serif;
}


html {
    overflow-x: hidden;
}

body {
    line-height: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    overflow-x: hidden;
}

p a {
    color: #363636;
    width: auto;
    display: inline-block
}

p a:hover {
    text-decoration: underline;
    outline: 0
}

p {
    font-style: normal;
    line-height: 30px;
    font-size: 15px;
    color: #222;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 10px;
}

a {
    color: #7f7f7f;
    text-decoration: none;
    outline: 0;
    display: block
}

a:hover,
a:focus,
a:active {
    outline: 0;
    text-decoration: none
}

img {
    max-width: 100%
}

iframe {
    border: 0;
    width: 100%
}

blockquote {
    padding: 0;
    border: 0
}

h1 {
    font-size: 30px;
    margin: 0;
}

h2 {
    font-size: 25px;
    margin: 0
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
    margin: 0
}

h5 {
    font-size: 17px;
    margin: 0
}

h6 {
    font-size: 16px;
    margin: 0
}
.form-select, .input-group-text{
    border-radius:0px;
    border: 1px solid #e9ecef;
    
}
.form-control:focus,
.form-select:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--blue);
}

.header .container-fluid {
    padding: 0 20px;

}

.header .container-fluid .row {
    position: relative;
}

.header {
    float: left;
    background: var(--bg_color1);
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 99;
}


.topbar {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.topbar .logo {
    padding: 3px 0;
}

.topbar .logo img{
    max-width: 40%;
}



/* Media query for smaller screens */
@media screen and (max-width: 1020px) {
    .topbar .logo img {
        max-width: 20%; /* Adjust the value as needed */
    }
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .topbar .logo img {
        max-width: 20%; /* Adjust the value as needed */
    }
}

/* Media query for even smaller screens */
@media screen and (max-width: 480px) {
    .topbar .logo img {
        max-width: 24%; /* Adjust the value as needed */
    }
}
.header.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
                      ;
    padding: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}


.navigation {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .navbar button {
    float: right;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 25px;
    border-radius: 0;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.header .navbar button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: #00afef;
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.header .navbar button span:nth-child(1) {
    top: 8px;
}

.header .navbar button span:nth-child(2),
.header .navbar button span:nth-child(3) {
    top: 18px;
}

.header .navbar button span:nth-child(4) {
    top: 28px;
}

.header .navbar button.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.header .navbar button.open span:nth-child(2) {
    transform: rotate(45deg);
}

.header .navbar button.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.header .navbar button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block;
    width: 100%;
}

.navigation .menu ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative
}

.navigation .menu ul li a {
    padding: 16px 12px;
    display: block;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: normal;
    background: transparent;
    font-weight: bold;
    font-family:  Helvetica, Arial,sans-serif;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--title-1);
    background: transparent;
    text-decoration: none;
    scale: 1.03;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left;
    border: 0;
    position: absolute;
    width: max-content;
    max-width: 500px;
    display: none;
    z-index: 99999;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
    transition: all .3s ease;
    border-radius: 0 0 4px 4px;
    border-top: 1px solid #d4e2ef;
    overflow: hidden;
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block;
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    border-bottom: 1px solid #e1f5ff;
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    line-height: normal;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
    background: transparent;
    transition: all 0.3s ease;
}

.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: #fff;
}

.navigation ul li.cs-submenu a button svg {
    width: 15px;
    height: 15px;
    color: #fff;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: #03b0f0;
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    background-color: var(--bg_color1);
    color: white;

}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li a svg {
    background-color: var(--bg_color1);
    color: white;

}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    background-color: var(--bg_color1);
    color: white;

}

.navigation .menu ul li ul.cs-dropdown li a:hover svg {
    background-color: var(--bg_color1);
    color: white;

}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #333;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: #fff;
}

.header .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

.rightHeader {
    float: right;
    padding: 9px 0 0;
    display: flex;
    align-items: center;
    line-height: normal;
    margin-right: 10px;


}

.whatsappBtn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.whatsappBtn svg {
    width: 25px;
    height: 25px;
    color: #25D366;
}

.rightHeader .call_btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #3e3f95;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;

}

.call_btn svg {
    width: 26px;
    height: 26px;
    -webkit-animation: tada 1.5s ease infinite;
    animation: tada 1.5s ease infinite;
}

.call_btn:hover,
.call_btn:focus {
    color: #03b0f0;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(.95, .95, .95)rotate3d(0, 0, 1, -10deg);
        transform: scale3d(.95, .95, .95)rotate3d(0, 0, 1, -10deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1, 1, 1)rotate3d(0, 0, 1, 10deg);
        transform: scale3d(1, 1, 1)rotate3d(0, 0, 1, 10deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1, 1, 1)rotate3d(0, 0, 1, -10deg);
        transform: scale3d(1, 1, 1)rotate3d(0, 0, 1, -10deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(.95, .95, .95)rotate3d(0, 0, 1, -10deg);
        transform: scale3d(.95, .95, .95)rotate3d(0, 0, 1, -10deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1, 1, 1)rotate3d(0, 0, 1, 10deg);
        transform: scale3d(1, 1, 1)rotate3d(0, 0, 1, 10deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}


.loginBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--liner2);
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    padding: 10px 15px;
    border-radius: 10px;
    margin-left: 10px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
    white-space: nowrap;
}

.loginBtn:hover {
    background: var(--liner1);
    color: #fff;
}


.signinBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--liner2);
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 15px;
    border-radius: 4px;
    margin-left: 10px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
    white-space: nowrap;
}

.signinBtn:hover {
    background: var(--liner1);
    color: #fff;
}


.submitBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #3e3f95, #20216a);
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 20px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border: none;
    outline: none;
    transition: 0.3s;
}

.submitBtn:hover {
    background: linear-gradient(90deg, #01aeee, #0678a2);
    color: #fff;
}

.payBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #3e3f95, #20216a);
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 20px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border: none;
    outline: none;
    transition: 0.3s;
}

.payBtn:hover {
    background: linear-gradient(90deg, #01aeee, #0678a2);
    color: #fff;
}


.loginBtn:hover {
    background: var(--liner1);
    color: #fff;
}

.signupBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--liner1);
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 15px;
    border-radius: 4px;
    margin-left: 10px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
    white-space: nowrap;
}

.signupBtn:hover {
    background: var(--liner2);
    color: #fff;
}


.bannerSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    font-style: normal;
    position: relative;
    background-image: radial-gradient(circle farthest-side at 50% 50%, #fbfeff, #eee);
    background-image: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(233, 233, 242) 100%);
}
.bannerSection:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: -28rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    transform-origin: top left;
    transform: skewX(-35deg);
    z-index: 6;
}
.bannerSection:after {
    position: absolute;
    
    left: 50%;
    bottom: -13px;
    margin-left: -16px;
    z-index: 9;
    background-color: #dadae2;
    background-repeat: no-repeat;
    border: solid #f2f2f7;
    border-width: 0px 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 25px;
    height: 25px;
}

.bannerLeft {
    padding: 30px 0;
}

.bannerSection .bannerTitle {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.bannerSection .bannerTitle span {
    color: var(--maroon);
}

.bannerSection p {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px;
    line-height: 22px;
}

.testGroup {
    display: flex;
    position: relative;
    margin-bottom: 5px;
}

.testGroup strong {
    color: #3e3f95;
}

.testGroup label {
    cursor: pointer;
}

.testGroup .proControl {
    margin-left: 15px;
    border-radius: 20px;
    border: 1px solid #01aeee;
}

.testGroup .proControl label {
    transition: background-color 0.5s ease;
    cursor: pointer;
    font-size: 15px;
    margin: 0px;
    border-radius: 20px;
    padding: 4px 15px;
    font-weight: normal;
}

.testGroup .proControl label.active {
    background: linear-gradient(90deg, #01aeee, #0678a2);
    padding: 5px 15px;
    font-weight: bold;
    color: #fff;
}

.certificateValidity {
    display: flex;
}

.certificateValidity #certificate,
.certificateValidity #validity {
    margin-left: 5px;
    color: #3e3f95;
}

.certificateValidity .moreBtn {
    margin-left: 10px;
    position: relative;
}

.certificateValidity .moreBtn span {
    color: #01aeee;
    cursor: pointer;
}

.moreBtn ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 150px;
    padding: 5px 10px;
    z-index: 2;
    background: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0.25rem;
    margin: 0;
}

.moreBtn ul li {
    display: block;
    list-style: none;
    cursor: pointer;
}

.moreBtn ul li:hover {
    color: #3e3f95;
}

.dgft {
    display: none;
    position: relative;
}

.buyCertificate {
    border-radius: 30px;
    padding: 8px 20px;
    border: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
  
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(90deg, #3c6fa8, #244972);
    margin-top: 10px;
    color: #fff;
}

.buyCertificate:hover,
.buyCertificate:focus {
    background: linear-gradient(90deg, #2a5383, #113257);
    color: #fff;
}

.reqCertificate {
    border-radius: 30px;
    padding: 8px 20px;
    border: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(90deg, #3e3f95, #20216a);
    margin-top: 10px;
    color: #fff;
}

.reqCertificate:hover,
.reqCertificate:focus {
    background: linear-gradient(90deg, #01aeee, #0678a2);
    color: #fff;
}



.digitalSignature {
    float: left;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 30px 0;
}

.title_1 {
    color: var(--maroon);
    font-style: normal;
    font-family: var(--font-family-title);
    font-size: 33px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.digitalSignature ul {
    width: 100%;
    margin: 15px auto 0;
    display: flex;
    padding: 0;
    flex-flow: row wrap;
    max-width: 1024px;

}

.digitalSignature ul li {
    list-style: none;
    text-align: center;
    width: calc(100% / 6);
    position: relative;
    z-index: 5;
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
}



.certificate1 {
    position: relative;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ced2fd;
    border-top: 5px solid #113257;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin: 0 0 15px;
    height: 13rem;
    width: 100%;
    padding: 20px 15px;
    /*👉box-shadow: 0 0 7px rgb(33 141 210 / 10%);👈*/
    text-align: center;
    color: #0e81b9;
}

.certificate1:hover {
    border-bottom: 5px solid #113257;
    transform: translateY(-10px);
    background-color: #eaf9ff;
    box-shadow: 0 0 30px rgb(0 0 0 / 15%);
}

.certificate1:hover::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #113257;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate1 img {
    margin-bottom: 10px;
    width: 60px;
    color: red;
}

.certificate1 .certificateTitle {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    height: auto;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
}

.certificate1 .for {
    font-weight: 800;
    font-style: normal;
    font-size: 14px;
    color: #113257;
}

.aboutTeam {
    float: left;
    width: 100%;
    margin: 0;
    
    position: relative;
}

.aboutTeam2 {
    float: left;
    width: 100%;
    margin: 0;
    background: #fff;
    position: relative;
}

.aboutTeam2 li{
    font-style: normal;
}

.title_2 {
    color: var(--bg_color1);
    font-family:  var(--font-family-title);
    font-size: 33px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    position: relative;
    font-style: normal;
}



.aboutTeam h2.title_2 {
    position: relative;
    font-size: 33px;
}

/*-----About us ------*/

.responsive-container-block {
    min-height: 60px;
    height: fit-content;
    width: 100%;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
  }
  
  .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    line-height: 25px;
  }
  
  .responsive-container-block.bigContainer {
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .mainImg {
    color: black;
    width: 50%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .mainImg {
    color: black;
    width: 50%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  
  .text-blk.headingText {
    font-size: 25px;
    font-weight: 700;
    line-height: 34px;
    color: rgb(51, 51, 51);
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
  
  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
    width: 40%;
    margin: 0 0 0 0;
  }
  
  .text-blk.subHeadingText {
    color: rgb(102, 102, 102);
    font-size: 25px;
    line-height: 34px;
    font-weight: 700;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
  }
  
  .text-blk.description {
    font-size: 25px;
    line-height: 34px;
    color: rgb(102, 102, 102);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
  }
  
  .explore {
    font-size: 20px;
    line-height: 28px;
    color: rgb(255, 255, 255);
    background-color: rgb(244, 152, 146);
    padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 50px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: outset;
    border-right-style: outset;
    border-bottom-style: outset;
    border-left-style: outset;
    border-top-color: rgb(244, 152, 146);
    border-right-color: rgb(244, 152, 146);
    border-bottom-color: rgb(244, 152, 146);
    border-left-color: rgb(244, 152, 146);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    cursor: pointer;
  }
  
  .explore:hover {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 235, 234);
    color: rgb(244, 152, 146);
  }
  
  .responsive-container-block.Container {
    margin-right: auto; 
    margin-left: auto;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  
  .responsive-container-block.Container.bottomContainer {
    margin-right: 0px;
    margin-left: 0px;
    flex-direction: row-reverse;
  }
  
  .allText.aboveText {
    margin: 0 0 0 40px;
  }
  
  .allText.bottomText {
    margin: 0 40px 0 0;
  }
  
  @media (max-width: 1024px) {
    .responsive-container-block.Container {
      max-width: 850px;
    }
  
    .mainImg {
      width: 55%;
      height: auto;
    }
  
    .text-blk.description {
      font-size: 20px;
    }
  
    .allText {
      width: 40%;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 20px;
    }
  
    .responsive-container-block.bigContainer {
      padding-top: 10px;
      padding-right: 10px;
      padding-bottom: 10px;
      padding-left: 10px;
    }
  
    .text-blk.subHeadingText {
      font-size: 22px;
    }
  
   
  
    .responsive-container-block.Container {
      max-width: 830px;
    }
  
    .allText.aboveText {
      margin: 30px 0 0 40px;
    }
  
    .allText.bottomText {
      margin: 30px 40px 0 0;
    }
  }
  
  @media (max-width: 768px) {
    .mainImg {
      width: 90%;
    }
  
    .allText {
      width: 100%;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .responsive-container-block.Container {
      flex-direction: column;
      height: auto;
    }
  
    .text-blk.headingText {
      text-align: center;
    }
  
    .text-blk.subHeadingText {
      text-align: center;
      font-size: 25px;
    }
  
    .text-blk.description {
      text-align: center;
      font-size: 25px;
    }
  
    .allText {
      margin-top: 40px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .allText.aboveText {
      margin: 40px 0 0 0;
    }
  
    .responsive-container-block.Container {
      margin: 80px auto 50px auto;
    }
  
    .responsive-container-block.Container.bottomContainer {
      margin: 10px auto 10px auto;
    }
  
    .allText.bottomText {
      margin: 40px 0 0 0;
    }
  }
  
  @media (max-width: 500px) {
    .responsive-container-block.Container {
      padding-top: 10px;
      padding-right: 0px;
      padding-bottom: 10px;
      padding-left: 0px;
      width: 100%;
      max-width: 100%;
    }
  
    .mainImg {
      width: 100%;
    }
  
    .responsive-container-block.bigContainer {
      padding-top: 10px;
      padding-right: 25px;
      padding-bottom: 10px;
      padding-left: 25px;
    }
  
    .text-blk.subHeadingText {
      font-size: 25px;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .text-blk.description {
      font-size: 25px;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .allText {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
      width: 100%;
    }
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');
  
  *,
  *:before,
  *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  
  
  .wk-desk-1 {
    width: 8.333333%;
  }
  
  .wk-desk-2 {
    width: 16.666667%;
  }
  
  .wk-desk-3 {
    width: 25%;
  }
  
  .wk-desk-4 {
    width: 33.333333%;
  }
  
  .wk-desk-5 {
    width: 41.666667%;
  }
  
  .wk-desk-6 {
    width: 50%;
  }
  
  .wk-desk-7 {
    width: 58.333333%;
  }
  
  .wk-desk-8 {
    width: 66.666667%;
  }
  
  .wk-desk-9 {
    width: 75%;
  }
  
  .wk-desk-10 {
    width: 83.333333%;
  }
  
  .wk-desk-11 {
    width: 91.666667%;
  }
  
  .wk-desk-12 {
    width: 100%;
  }
  
  @media (max-width: 1024px) {
    .wk-ipadp-1 {
      width: 8.333333%;
    }
  
    .wk-ipadp-2 {
      width: 16.666667%;
    }
  
    .wk-ipadp-3 {
      width: 25%;
    }
  
    .wk-ipadp-4 {
      width: 33.333333%;
    }
  
    .wk-ipadp-5 {
      width: 41.666667%;
    }
  
    .wk-ipadp-6 {
      width: 50%;
    }
  
    .wk-ipadp-7 {
      width: 58.333333%;
    }
  
    .wk-ipadp-8 {
      width: 66.666667%;
    }
  
    .wk-ipadp-9 {
      width: 75%;
    }
  
    .wk-ipadp-10 {
      width: 83.333333%;
    }
  
    .wk-ipadp-11 {
      width: 91.666667%;
    }
  
    .wk-ipadp-12 {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .wk-tab-1 {
      width: 8.333333%;
    }
  
    .wk-tab-2 {
      width: 16.666667%;
    }
  
    .wk-tab-3 {
      width: 25%;
    }
  
    .wk-tab-4 {
      width: 33.333333%;
    }
  
    .wk-tab-5 {
      width: 41.666667%;
    }
  
    .wk-tab-6 {
      width: 50%;
    }
  
    .wk-tab-7 {
      width: 58.333333%;
    }
  
    .wk-tab-8 {
      width: 66.666667%;
    }
  
    .wk-tab-9 {
      width: 75%;
    }
  
    .wk-tab-10 {
      width: 83.333333%;
    }
  
    .wk-tab-11 {
      width: 91.666667%;
    }
  
    .wk-tab-12 {
      width: 100%;
    }
  }
  
  @media (max-width: 500px) {
    .wk-mobile-1 {
      width: 8.333333%;
    }
  
    .wk-mobile-2 {
      width: 16.666667%;
    }
  
    .wk-mobile-3 {
      width: 25%;
    }
  
    .wk-mobile-4 {
      width: 33.333333%;
    }
  
    .wk-mobile-5 {
      width: 41.666667%;
    }
  
    .wk-mobile-6 {
      width: 50%;
    }
  
    .wk-mobile-7 {
      width: 58.333333%;
    }
  
    .wk-mobile-8 {
      width: 66.666667%;
    }
  
    .wk-mobile-9 {
      width: 75%;
    }
  
    .wk-mobile-10 {
      width: 83.333333%;
    }
  
    .wk-mobile-11 {
      width: 91.666667%;
    }
  
    .wk-mobile-12 {
      width: 100%;
    }
  }


.title_2:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(0, 175, 239, 1) 0%, rgba(62, 64, 149, 1) 100%);
    border-radius: 2px;
}

.title_2:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: 0 auto;
    background: #FFFFFF;
    -webkit-animation: animateRun 2s infinite linear;
    animation: animateRun 2s infinite linear;
}

@keyframes animateRun {
    0% {
        left: 50%;
        margin-left: -50px
    }

    50% {
        left: 50%;
        margin-left: 50px
    }

    100% {
        left: 50%;
        margin-left: -50px
    }
}


.aboutTeam .leftImage_1 {
    float: left;
    max-width: 450px;
    width: 100%;
    margin: 0 20px 15px 0px;
    border-radius: 0 50px 0 50px;
    position: relative;
    /*👉box-shadow: 1px 2px 10px #c8c3c3;
    border-radius: 6px;👈*/
    overflow: hidden;
}

.aboutTeam .right_1 {
    float: right;
    max-width: 590px;
    width: 100%;
    margin: 0 20px 15px 0px;
    position: relative;
    font-style: normal;
    /*👉box-shadow: 1px 2px 10px #c8c3c3;
    border-radius: 6px;👈*/
    overflow: hidden;
}
.aboutTeam .rightImage_1 {
    float: right;
    max-width: 500px;
    width: 100%;
    margin: 0 20px 15px 0px;
    border-radius: 0 20px 0 20px;
    position: relative;
    /*👉box-shadow: 1px 2px 10px #c8c3c3;
    border-radius: 6px;👈*/
    overflow: hidden;
    flex: 1; /* Take up remaining space */
    display: flex;
    justify-content: flex-end; /* Push image to the right */
    align-items: center; 
}
.aboutTeam .rightImage_1 img{
    border-radius: 0 12px 12px 0;
    height: 60rem !important;
    width: 30rem;
}

.col-xxl-12 {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Align items vertically in the middle */
}

.col-8 {
    flex: 1; /* Take up remaining space */
    padding-right: 20px; /* Add some spacing between text and image */
}


/* :root {
    --primary_text-very-dark-desaturated-blue: hsl(238, 29%, 16%);
    --primary_text-soft-red: hsl(14, 88%, 65%);
    --primary_bg-soft-violet: hsl(273, 75%, 66%);
    --primary_bg-soft-blue: hsl(240, 73%, 65%);
    --neutral_text-very-dark-grayish-blue: hsl(237, 12%, 33%);
    --neutral_text-dark-grayish-blue: hsl(240, 6%, 50%);
    --dividers_light-grayish-blue: hsl(240, 5%, 91%);
}

.faq-section {
    width: 100%;
    height: 100%;
    position: relative;
}
.faq {
    width: 80%;
    min-height: 440px;
    height: auto;
    background: white;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;}

.faq .faq-left-desktop {width: 50%;height: 440px;display: none;}
.faq .faq-left-desktop > img {
    position: absolute;
    top: 34%;
    left: 1%;
    width: 20%;
}
.faq .faq-left-desktop .faq-left-image-desktop {width: 100%;height: 100%;position: relative;overflow: hidden;}
.faq .faq-left-desktop .faq-left-image-desktop img:nth-of-type(1) {
    position: absolute;
    top: 50%;
    left: -14%;
    width: 100%;
    transform: translateY(-50%);
}
.faq .faq-left-desktop .faq-left-image-desktop::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(https://rvs-faq-accordion-card.netlify.app/images/bg-pattern-desktop.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: scale(2);
    position: absolute;
    top: -53px;
    left: -280px;
    z-index: -1;
}

.faq .faq-left-mobile {width: 85%;height: 140px;}
.faq .faq-left-mobile > img {
    position: absolute;
    top: 32%;
    left: -18%;
    width: 20%;
}
.faq .faq-left-mobile .faq-left-image-mobile {width: 100%;height: 100%;position: relative;}
.faq .faq-left-mobile .faq-left-image-mobile img:nth-of-type(1) {
    position: absolute;
    top: -6%;
    left: 44%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.faq .faq-left-mobile .faq-left-image-mobile::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(https://rvs-faq-accordion-card.netlify.app/images/bg-pattern-mobile.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: scale(.9);
    top: -15px;
    left: 0px;
}

.faq .faq-right {width: 50%;
    height: 100%;
    padding: 50px 60px 50px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.faq .faq-right .faq-title {font-size: 18px;font-weight: 700;margin-bottom: 25px;}

.faq .faq-right .faq-body ::marker {content: "";}
.faq .faq-right .faq-body details {border-bottom: 1px;border-bottom-style: solid;border-bottom-color: var(--dividers_light-grayish-blue);margin-bottom: 20px;cursor: pointer;}
.faq .faq-right .faq-body details:not([open]) {padding-bottom: 15px;}
.faq .faq-right .faq-body details:not([open]) summary:hover {color: var(--primary_text-soft-red);}
.faq .faq-right .faq-body details summary {
    color: var(--neutral_text-very-dark-grayish-blue);
    font-size: 18px;
    font-weight: 700;
    display: block;
    position: relative;
}
.faq .faq-right .faq-body details summary::after {
    content: "";
    position: absolute;
    right: 0;
    background: url(https://rvs-faq-accordion-card.netlify.app/images/icon-arrow-down.svg);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: rotate(0deg);
}
.faq .faq-right .faq-body details[open] summary::after {
    transition: transform 0.3s ease;
  }

.faq .faq-right .faq-body details[open] summary::after {transform: rotate(180deg);
    transition: 0.5s ease;}
.faq .faq-right .faq-body details p {
    color: var(--neutral_text-dark-grayish-blue);
    line-height: 18px;
    padding-right: 25px;
    font-weight: 400;
    font-size: 16px;}


@media (min-width: 375px) {
    .faq .faq-left-desktop {
        display: block;
    }
    .faq .faq-left-mobile {
        display: none;
    }
}
@media (max-width: 375px) {
    body {
        height: auto;
    }
    section {
        padding: 160px 0px 80px;
    }
    .faq {
        width: 90%;
        height: auto;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
    }
    .faq .faq-right {
        width: 100%;
        padding: 25px;
        align-items: center;
    }
    .faq .faq-right .faq-title {
        margin-bottom: 35px;
    }
    .faq .faq-right .faq-body {
        width: 100%;
    }
}
 */

.aboutTeam h2 {
    font-size: 33px;
    color: var(--bg_color1);
    font-weight: bold;
    margin: 0 0 5px;
    padding: 0;
    font-weight: 600;
}

.servicePackage {
    float: left;
    width: 100%;
    margin: 0;
    padding: 60px 0 30px;
    background: #fff;
}

.maxWidth {
    max-width: 750px;
    font-family: var(--font-family-title);
    width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 22px;
    font-size: 16px;
    margin-bottom: 40px;
    font-style: normal;
}

.pricing-item .pricing-body ul, li {
    list-style-type: none;
    padding: 0 10px;
    margin: 0;
}

.center-heading {
  text-align: center;
}

.center-heading .section-title {
  font-weight: 400;
  font-size: 28px;
  color: #3B566E;
  letter-spacing: 1.75px;
  line-height: 38px;
  margin-bottom: 20px;
}

.center-heading.colored .section-title {
  color: #ffffff;
}

.center-text {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.center-text.colored {
  color: #FFC0EB;
}

.center-text p {
  margin-bottom: 30px;
}

.pricing-item {
  background: #FFFFFF;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  border-radius: 5px;
  margin-bottom: 30px;
  margin-top: 20px;
  border: 1px solid #c0c0c0;
}

.pricing-item.active .pricing-header {
  position: relative;
}

.pricing-item.active .pricing-header .pricing-title {
  color: #fff;
}

.pricing-item.active .pricing-body .price-wrapper {
  background-image: linear-gradient(135deg, #e73d3d 0%, #decb3d 100%);
}

.pricing-item.active .pricing-body .price-wrapper .currency {
  color: #fff;
}

.pricing-item.active .pricing-body .price-wrapper .price {
  color: #fff;
}

.pricing-item.active .pricing-body .price-wrapper .period {
  color: #fff;
}

.pricing-item .pricing-header {
  text-align: center;
  display: block;
  position: relative;
  padding-bottom: 10px;
}

.pricing-item .pricing-header .pricing-title {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  position: absolute;
  width: 180px;
  height: 40px;
  line-height: 40px;
  left: 0px;
  right: 0px;
  margin: auto;
  top: -20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-image: linear-gradient(90deg,  #013660, #2175b1);
}

.pricing-item .pricing-body {
  margin-bottom: 40px;
}

.pricing-item .pricing-body .price-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  padding-top: 15px;
  background: #f6f6f6;
  height: 100px;
}

.pricing-item .pricing-body .price-wrapper .currency {
  height: 47px;
  font-weight: 600;
  font-size: 20px;
  color: #e64b3d;
  position: relative;
  top: -15px;
}

.pricing-item .pricing-body .price-wrapper .price {
  font-weight: 700;
  font-size: 25px;
  color: #e64b3d;
  letter-spacing: 2.12px;
}

.pricing-item .pricing-body .price-wrapper .period {
  font-weight: 700;
  font-size: 14px;
  color: #e64b3d;
  letter-spacing: 0.88px;
}

.pricing-item .pricing-body .list li {
  text-align: center;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 14px;
  color: #CCDCEA;
  letter-spacing: 0.88px;
  text-decoration: line-through;
}

.pricing-item .pricing-body .list li.active {
  color: #3B566E;
  text-decoration: none;
}

.pricing-item .pricing-footer {
  text-align: center;
  display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-line,
.btn-primary-line1 {
    width: 110px;
    margin: 10px;
    display: inline-block;
    height: 44px;
    line-height: 45px;
    text-align: center;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #fff;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    outline: none !important;
    cursor: pointer;
    text-decoration: none !important;
    position: relative;
}
.pricing-item .pricing-footer .btn-primary-line {
  background: linear-gradient(90deg, #2175b1, #013660);
  color: #fff;
  height: 36px;
  line-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-item .pricing-footer .btn-primary-line1 {
    background: linear-gradient(90deg, #01aeee, #0678a2);
    color: #fff;
    height: 36px;
    line-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.pricing-item .pricing-footer .btn-primary-line:hover,
.pricing-item .pricing-footer .btn-primary-line1:hover{
  background: linear-gradient(90deg, #f26e21, #eb905c);
  color: #fff;
}


.paymentModule {
    float: left;
    width: 100%;
    padding: 30px 0;
    margin: 0;
    background: #3e3f95;
    background: linear-gradient(90deg, #3e3f95, #20216a);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.paymentModule .title_2 {
    color: #fff;
    margin-bottom: 30px;
}

.secondModule {
    margin-bottom: 20px;
}

.paymentModule .container {
    position: relative;
}

.moduleBox {
    float: left;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    position: relative;
    background: #4849a8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.moduleBox:before {
    content: '';
    position: absolute;
    left: -1000%;
    top: 0;
    width: 1000%;
    height: 100%;
    display: block;
    background: #4849a8;
    z-index: -1;
}

.moduleBox .part-icon {
    width: 90px;
    height: 90px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #3e3f95;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-bottom: 15px;
    position: relative;
}

.moduleBox .part-icon span.step-num {
    position: absolute;
    top: 35%;
    right: auto;
    left: -63px;
    width: 60px;
    height: 25px;
    padding: 0 10px;
    background: linear-gradient(90deg, #01aeee, #0678a2);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    line-height: 25px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    font-weight: 700;
}

.moduleBox .part-icon span.step-num:after {
    content: "";
    position: absolute;
    right: -8px;
    top: 5px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #0678a3;
}

.moduleBox .part-icon img {
    width: 50px;
}

.moduleTitle {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px;
    font-weight: 600;
}

.moduleBox p {
    font-size: 15px;
    color: #ccc;
    margin: 0 0 10px;
    padding: 0;
}

.moduleBox:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 125px solid transparent;
    border-left: 32px solid #4849a8;
    border-bottom: 125px solid transparent;
    top: 0;
    right: -32px;
    z-index: 99;
}

.moduleBox2 {
    background: #5354bb;
    padding-left: 20px;
}

.moduleBox2:before {
    background: #5354bb;
    z-index: -2;
}

.moduleBox2:after {
    border-left-color: #5354bb;
}

.moduleBox3 {
    background: #4849a8;
}

.moduleBox3:before {
    background: #4849a8;
    z-index: -3;
    right: -1000%;
}

.moduleBox3:after {
    content: "";
    position: absolute;
    width: 1000%;
    height: 100%;
    top: 0;
    right: -1000%;
    background: #4849a8;
    border: 0;
}

.moduleBtn {
    border-radius: 30px;
    padding: 5px 18px;
    border: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(90deg, #01aeee, #0678a2);
    margin-top: 10px;
    color: #fff;
    margin-left: 5px;
}

.paymentModule .moduleBtn {
    padding: 10px 25px;
    font-size: 16px;
}

.moduleBtn:hover,
.moduleBtn:focus {
    background: linear-gradient(90deg, #3e3f95, #20216a);
    color: #fff;
}



.buyBtn:hover,
.buyBtn:focus {
    background: linear-gradient(90deg, #01aeee, #0678a2);
    color: #fff;
}

.renewBtn:hover,
.renewBtn:focus {
    background: linear-gradient(90deg, #2a5383, #113257);
    color: #fff;
}



.whyChoose {
    float: left;
    width: 100%;
    padding: 40px 0 30px;
    margin: 0;
    background: #fff;
    position: relative;
}
.whyChoose .rightImage_2 {
    float: right;
    max-width: 450px;
    width: 100%;
    margin: 0 20px 15px 0px;
    border-radius: 0 20px 0 20px;
    position: relative;
    /*👉box-shadow: 1px 2px 10px #c8c3c3;
    border-radius: 6px;👈*/
    overflow: hidden;
    flex: 1; /* Take up remaining space */
    display: flex;
    justify-content: flex-end; /* Push image to the right */
    align-items: center; 
}
.whyChoose .rightImage_2 img{
    border-radius: 0 12px 12px 0;
    height: 20rem;
}



.whyChoose ul {
    list-style: none;
    padding: 0;
    margin: 0 0 55px 0;
}

.whyChoose ul li {
    padding: 11px 0 5px 0;
    position: relative;
    font-size: 16px;
    color: #000;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
}





.whyChoose ul li span {
    display: block;
    font-weight: 600;
    font-size: 18px;
}

.whyChoose ul li a {
    color: #3e3f95;
    text-decoration: none;
}


@media (max-width: 767px) {
    .whyChoose .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .whyChoose .rightImage_1,
    .whyChoose .rightImage_2 {
        float: none;
        max-width: 100%;
        width: auto;
        margin-right: 0;
    }

    .whyChoose .rightImage_1 img,
    .whyChoose .rightImage_2 img {
        border-radius: 12px;
        height: auto;
        width: 100%;
        max-width: none;
    }

    .whyChoose .col-7 {
        width: 100%;
    }

    .whyChoose ul li {
        font-size: 14px;
    }
}


.dscProcess {
    float: left;
    width: 100%;
    margin: 0;
    padding: 30px 0;
    background: #f1f2ff;
}

.dscProcess .container {
    position: relative;
}


.dscProcess .list {
    margin: 0;
    padding: 0;
}

.dscProcess .list .listItem {
    float: left;
    width: 20%;
    list-style: none;
}

.dscProcess .container .step {
    position: absolute;
    top: 40px;
    left: 100px;
    z-index: 55;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: 100px;
    z-index: 0;
}

.dscProcess .container .step img {
    width: 100%;
}

.dscProcess .single-process {
    text-align: center;
    position: relative;
}

.dscProcess .single-process:after {
    position: absolute;
    content: url("../images/right.svg");
    top: 0;
    right: 5%;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.dscProcess .list .listItem:last-child .single-process:after {
    content: none;
    right: 0;
}

.dscProcess .single-process:hover:after {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
    /*color: #0e81b8;*/
}

.dscProcess .list .listItem:nth-child(1) .single-process:after {
    top: 84px;
}

.dscProcess .list .listItem:nth-child(1) .single-process:hover:after {
    top: 94px;
}

.dscProcess .list .listItem:nth-child(2) .single-process:after {
    top: 36px;
}

.dscProcess .list .listItem:nth-child(2) .single-process:hover:after {
    top: 28px;
}

.dscProcess .list .listItem:nth-child(3) .single-process:after {
    top: 2px;
}

.dscProcess .list .listItem:nth-child(3) .single-process:hover:after {
    top: -10px;
}

.dscProcess .list .listItem:nth-child(4) .single-process:after {
    top: 45px;
}

.dscProcess .list .listItem:nth-child(4) .single-process:hover:after {
    top: 59px;
}

.dscProcess .single-process.down1 {
    margin-top: 30px;
}

.dscProcess .single-process.down {
    margin-top: 70px;
}

.dscProcess .single-process.up1 {
    margin-top: -20px;
}

.dscProcess .single-process .part-icon {
    width: 130px;
    height: 130px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--bg_color1);
    border-radius: 30px 30px 30px 30px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-bottom: 26px;
    position: relative;
}

.dscProcess .single-process .part-icon h4{
    color: #fff;
}
.dscProcess .single-process .part-icon img {
    width: 75px;
}

.dscProcess .single-process .part-icon span.step-num {
    position: absolute;
    top: 4px;
    left: 5px;
    width: 25px;
    height: 25px;
    background: linear-gradient(90deg, #522c69, #764098);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    line-height: 25px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    font-weight: 700;
}

.dscProcess .single-process:hover .part-icon {
    background: var(--liner1);
}

.dscProcess .single-process:hover .part-icon span.step-num {
    background: linear-gradient(90deg, #3e3f95, #20216a);
}

.dscProcess .single-process h4 {
    font-weight: 600;
    color: #333;
    font-size: 18px;
    font-style: normal;
    margin: 0;
    padding: 0 40px;
}

.dscProcess .single-process p {
    font-size: 16px;
    line-height: 28px;
}

.dscProcess .single-process a {
    color: #0e81b8;
    font-size: 15px;
    font-weight: 700;
}


.home_partner {
    float: left;
    width: 100%;
    padding: 70px 0 130px;
    position: relative;
    background: var(--liner1);
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
}

.home_partner .title_1 {
    color: var(--white);
}

.home_partner .maxWidth {
    color: #fff;
}

.pertner_flexio {
    background: #ffffff;
    border-radius: 0.2rem;
    margin: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    position: relative;
    width: 120px;
    flex: 0 0 auto;
    animation: scroll 10s linear infinite;
}

.pertner_flexio img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    width: auto;
    transform: translate(-50%, -50%);
    max-height: 100%;
    padding: 10px 15px;
    
}

.col-xxl-10 {
    display: flex;  
    animation: infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Negative value to move content left */
    }
}


/*accordian */
.faq-section {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  
  .accordian {
    max-width: 850px;
    border-radius: 12px;
    background: #f1f2ff;
    border-left: 4px solid var(--bg_color1);
    border-right: 4px solid var(--bg_color1);
    border-top: 2px solid var(--bg_color1);
    border-bottom: 2px solid var(--bg_color1);
  }
  
 
  
  .accordian_head {
    background-color: transparent;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
  }
  
  .accordian_toggler {
    align-self: flex-start;
    background-color: transparent;
    font-size: 1.8rem;
    transition: all 0.5s ease;
  }
  
  .accordian_toggler.active {
    rotate: 133deg;
  }
  
  .accordian_title {
    background-color: transparent;
    font-style: normal;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .accordian_body {
    background: transparent;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
  }
  
  .active_body {
    grid-template-rows: 1fr;
  }
  
  .accordian_description {
    background-color: transparent;
    padding-left: 2.3rem;
    font-size: 0.9rem;
    overflow: hidden;
    line-height: 1.2rem;
    margin-bottom: 5px;
    text-align: justify;
  }
  

.companyFeatures {
    float: left;
    width: 100%;
    padding: 30px 0 30px;
    margin: 0;
    background: #f1f2ff;
    position: relative;
    overflow: hidden;
}

.companyFeatures:after {
    position: absolute;
    content: '';
    left: 50%;
    top: -13px;
    margin-left: -16px;
    z-index: 9;
    background-color: #f1f2ff;
    background-repeat: no-repeat;
    border: solid #e1f5ff;
    border-width: 0px 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 25px;
    height: 25px;
}


.companyFeatures .container {
    position: relative;
}


.singleFeatures {
    float: left;
    width: 100%;
    margin: 0;
    padding: 30px 15px;
    position: relative;
    text-align: center;
}

.singleFeatures .number_2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.singleFeatures .title_4 {
    font-size: 18px;
    color: #fff;
    margin: 0;
}


.counter{
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    height: 170px;
    width: 170px;
    padding: 50px 15px 10px 35px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.counter:before,
.counter:after{
    content: '';
    background-color: var(--bg_color1);
    height: 93%;
    width: 93%;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.3s;
}
.counter:hover:before{ box-shadow: 3px 3px 5px #999; }
.counter:after{
    height: 86%;
    width: 86%;
    background-color: var(--white);
    box-shadow: 0 0 5px rgba(0,0,0,0.3) inset;
    right: 4px;
    bottom: 4px;
}

.counter .counter-icon{
    color: var(--bg_color1);
    font-size: 50px;
    text-shadow: 3px 3px 0px  var(--white), -3px -3px 0px  var(--white),
                3px -3px 0px  var(--white), -3px 3px 0px  var(--white);
    line-height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
}


.counter:hover .counter-icon{ transform:rotateY(360deg); }
.counter .counter-value{
    color: var(--bg_color1);
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 10px;
    font-style: normal;
    display: block;
}
.counter h3{
    color: var(--maroon);
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
}


@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
} 


.certificateSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background-color: #fff;
    position: relative;
    border-bottom: 1px solid #f1f2ff;
}

.certificateSection:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -13px;
    margin-left: -16px;
    z-index: 9;
    background-color: #fff;
    background-repeat: no-repeat;
    border: solid #f1f2ff;
    border-width: 0px 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 25px;
    height: 25px;
}


.certificateSection .title_1 {
    max-width: 600px;
    margin: 0 auto 20px;
}


footer {
    float: left;
    width: 100%;
    margin: 0;
    padding: 30px 0 10px;
    background: var(--bg_color1);
}

.footer_info {
    position: relative;
    display: block;
    float: left;
    width: 100%;
}

.footer_info p {
    color: #fff;
}

.footer_info h6 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 15px;
    padding: 0;
}

.footer_info h6 span {
    color: var(--white);
}

.footer_info ul {
    float: left;
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
}

.footer_info ul li {
    list-style: none;
    color: #fff;
    margin-bottom: 5px;
}

.footer_info ul li a {
    font-size: 14px;
    color: #fff;
    position: relative;
    display: flex;
    font-style: normal;
    padding: 0 0px 0 18px;
    line-height: 24px;
    align-items: center;
}

.footer_info ul li a:before {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 18px;
    transition: all 0.3s ease-in-out 0.1s;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'></path></svg>");
}

.footer_info ul li a:hover {
    color: #01aeee;
}

footer .footer_contact {
    float: left;
    width: 100%;
    list-style: none;
    padding: 0;
    margin-bottom: 0
}

footer .footer_contact li {
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

footer .footer_contact li a {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 0;
}

footer .footer_contact li a:before {
    content: none;
}

footer .footer_contact li a:hover {
    color: #01aeee
}

footer .footer_contact li a:focus {
    color: #01aeee
}

footer .footer_contact li svg {
    position: relative;
    text-align: center;
    margin-right: 15px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    color: var(--white)
}

footer .footer_contact li strong {
    display: block;
    text-transform: uppercase
}

ul.social {
    float: left;
    margin: 0;
    list-style: none;
    padding: 0px;
    width: auto;
}

ul.social li {
    margin: 3px 0 0 3px;
    display: inline-block;
}

ul.social li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #231573;
    padding: 0;
}

ul.social li a::before {
    content: none;
}

ul.social li a svg {
    color: #fff;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
}

ul.social li.facebook a {
    background: #3C5B9B;
}

ul.social li.twitter a {
    background: #359BED;
}

ul.social li.linkedin a {
    background: #027ba5;
}

ul.social li.youtube a {
    background: #f70000;
}

ul.social li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}



ul.footer-menu {
    text-align: center;
    border-top: 1px solid;
    padding-top: 10px;
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

ul.footer-menu li {
    display: inline-block;
    padding: 0 5px;
    margin-bottom: 10px;
}

ul.footer-menu li a {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
    font-weight: 500;
}

ul.footer-menu li a:hover,
ul.footer-menu li a:focus {
    color: #01aeee
}


.payment {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid;
    border-color: rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.payment .pay1 {
    margin: 0 5px;
    border: 1px solid #40429b;
    padding: 5px 10px;
}

.text_desc {
    float: left;
    width: 100%;
    margin: 15px 0 0;
}

.text_desc h4 {
    font-size: 16px;
    margin: 0;
    padding: 0 0 8px;
    font-weight: 600;
    color: #fff;
}

.text_desc p {
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
    color: #fff;
}

.copy {
    float: left;
    width: 100%;
    background: #020202;
    color: #fff;
    padding: 7px 0;
    font-size: 13px;
    text-align: left;
}

.copy a {
    color: #01aeee;
    display: inline-block;
}

.copy a:hover {
    color: #01aeee;
}

.text-right {
    text-align: right;
}

.copy svg {
    color: #fff;
}


#scrollUp {
    position: fixed;
    z-index: 8030;
    bottom: 65px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    line-height: 46px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    display: none;
    background: var(--liner2);
}

#scrollUp svg {
    width: 24px;
    height: 24px;
}

#scrollUp:hover {
    background: var(--liner2);
    color: #fff;
}


.review-area {
    float: left;
    width: 100%;
    background: #f1f2ff;
    padding: 40px 0 30px;
    margin: 0
}

.review-area h2 {
    padding: 0 0 9px 0
}

.review-area h2 strong {
    color: #333;
    font-size: 35px;
    font-weight: 600
}

.review-area h2 span {
    color: #1178ba;
    font-size: 35px;
    font-weight: 600
}

.reviews {
    float: left;
    width: 100%;
    text-align: center
}

.reviews img {
    width: 190px;
    height: auto;
    display: inline-block
}

.reviews p {
    font-size: 18px;
    text-align: center
}

.frame {
    max-width: 100%;
    margin: 30px auto 30px;
    border-radius: 5px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 0;
    position: relative;
    z-index: 2
}

.location_title {
    display: block;
    position: relative;
    text-align: center;
    margin-top: -50px;
    color: var(--white);
    font-size: 24px;
    font-weight: 600
}

.location_title img {
    width: 50px;
    height: 60px
}

.location_title span {
    display: inline-block;
    margin-bottom: 30px;
}

.location_title span:after,
.location_title span:before {
    content: "";
    height: 26px;
    width: 41%;
    position: absolute;
    top: 76%;
    border: solid rgba(255, 255, 255, 0.1);
    border-width: 1px 0 0;
}

.location_title span:after {
    left: -25px;
    border-radius: 5px 0 0
}

.location_title span:before {
    right: -25px;
    border-radius: 0 5px 0 0
}

.t-holder {
    margin-top: 20px;
    display: table;
    display: flex;
    align-items: center;
    width: 100%
}

.location {
    vertical-align: top;
    width: 25%;
    position: relative;
    transition: width .5s linear;
    overflow: hidden;
    display: table-cell;
    vertical-align: middle
}

.location:not(:first-child):not(.active):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%
}

.location.active {
    width: 50%
}

.location.active:before {
    background: 0
}

.location .location_image {
    transition: all .5s linear;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 330px;
    width: 0;
    overflow: hidden;
    text-align: right
}

.location .location_image:first-child {
    right: 360px
}

.location .location_image img {
    max-width: 999px
}

.location.active .location_image {
    width: 50%;
}

.location:first-child.active .location_image {
    width: 50%;
}

.location .content {
    padding: 0 20px 0 0;
    float: right;
    width: 50%;
}

.location:last-child .content {
    padding: 0;
}

.location.active .content {
    width: 50%;
}


.location .content .locationTitle {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: normal;
    margin: 0 0 7px;
    padding: 0
}

.location .content p {
    font-style: normal;
    display: block;
    font-size: 14px;
    padding: 4px 0 0;
    margin-bottom: 20px;
    line-height: normal;
    color: #fff;
    font-weight: 400;
    text-align: left;
}

.location .content a {
    color: #fff;
    font-size: 14px;
    text-decoration: none
}

.map {
    float: left;
    width: 100%;
    /* margin: 15px 0 0; */
}

.content {
    margin: 15px 0 0;
    /* padding: 20px 0; */
    float: left;
    width: 100%;
}

.content .locationTitle {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: normal;
    margin: 0 0 7px;
    padding: 0
}

.content p {
    font-style: normal;
    display: block;
    font-size: 14px;
    padding: 4px 0 0;
    margin-bottom: 10px;
    line-height: normal;
    color: #fff;
    font-weight: 400;
    text-align: left;
}

.content a {
    color: #fff;
    font-size: 14px;
    text-decoration: none
}

.content a svg {
    margin-right: 5px
}


/* About page */

.breadcum {
    float: left;
    width: 100%;
    position: relative;
    background-position: center;
    padding: 70px 0;
    margin: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.breadcum:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 14, 62, 0.6);
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
}

.breadcum .cat_title {
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 600;
    font-style: normal !important;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    border-radius: 3px;
    background: var(--liner1);
}

.inner_breadcrumb {
    float: left;
    width: 100%;
    background: #fff;
    position: relative;
    margin: 0;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.inner_breadcrumb .breadcrumb {
    background: none;
    border-radius: 0;
    border: none;
    list-style: none;
    padding: 0;
    float: left;
    text-transform: capitalize;
    margin: 0;
}

.inner_breadcrumb .breadcrumb li {
    font-weight: 600;
    color: #666;
    float: left;
    line-height: 32px;
    font-size: 14px;
}

.inner_breadcrumb .breadcrumb li a {
    float: left;
    padding: 0;
    color: #666;
    letter-spacing: 0.3px;
}

.inner_breadcrumb .breadcrumb li:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    padding: 0 14px;
    color: #fff;
    display: inline-block;
}


.inner_breadcrumb .breadcrumb li+li:before {
    content: "/";
    color: #fff;
    padding: 0 14px;
    font-weight: bold;
}


.inner_breadcrumb .breadcrumb li+li:before {
    float: left;
    padding: 10px 10px;
    color: #bfbfbf;
}

.inner_breadcrumb .breadcrumb li.active {
    color: var(--maroon);
}

.about-page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0 10px;
    background: #fff;
}

.about-page .about-img {
    float: right;
}

.about-page .about-img img {
    width: 450px;
    margin-left: 30px;
    margin-bottom: 20px;
}

.about-page .about-inner .about-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--maroon);
    margin-bottom: 10px;
    line-height: normal;
}

.about-page .about-inner p {
    line-height: 27px;
    font-size: 16px;
    color: #333;
    text-align: justify;
}

.about-page .about-inner h2,
.about-page .about-inner h3 {
    font-size: 25px;
    color: var(--maroon);
    margin-bottom: 10px;
    line-height: normal;
    font-weight: 600;
}

.reachus {
    float: left;
    width: 100%;
    margin: 0;
    padding: 30px 0 10px;
    background-color: #f1f2ff;
}

.reachus .reach-img img {
    width: 460px;
    margin-bottom: 30px;
}

.reachus .title {
    font-weight: 800;
    font-size: 30px;
    line-height: normal;
    text-transform: capitalize;
    color: var(--maroon);
    margin-bottom: 10px;
}

.reachus .sub-title {
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #333;
    margin-bottom: 10px;
}

.reachus .reach-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.reachus .reach-ul.reach-sub-ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
}

.reachus .reach-ul.reach-sub-ul li {
    margin-right: 25px;
}


.reachus .reach-ul li a {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.reachus .reach-ul li a:hover{
    background: transparent;
}

.reachus .reach-ul li {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.reachus .reach-ul li a .icon-bx {
    max-width: 40px;
    min-width: 40px;
    margin-right: 8px;
    transition: 0.4s;
}

.reachus .reach-ul li a:hover .icon-bx {
    scale: 1.2;
}

.reachus .reach-ul li a .con-bx {
    margin-bottom: 5px;
    line-height: normal;
}

/* contact page */

.contact_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
}

.contact_form_grid1 {
    float: left;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 4px;
    overflow: hidden;
}

.contact_details .title_h2_2 {
    color: var(--bg_color1);
    font-size: 20px;
    text-align: left;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
}



.contact_details p {
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact_details .address_list {
    clear: both;
    margin: 0 0 20px;
    padding: 0;
}

.contact_details .address_list li:first-child {
    display: flex;
    align-items: center;
}

.contact_details .address_list li {
    clear: both;
    list-style: none;
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
}

.contact_details .address_list li svg {
    min-width: 25px;
    height: 25px;
    margin-right: 5px;
}

.contact_details .address_list li a {
    color: #333;
    display: flex;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
}


.form_grid .title_h2_2 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px;
    font-weight: 800;
    padding: 0;
    color: var(--bg_color1);
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group p{
    color: #000;
    font-weight: 500;
}

.form-group .form-control {
    height: 40px;
    font-size: 14px; border-radius: 0px;
    background: #fbfbfd;
}



.form-group textarea.form-control {
    height: 100px;
}

.form-group1 {
    position: relative;
    margin-bottom: 15px;
    display: flex;
}

.form-group1 p{
    color: #000;
    font-weight: 500;
}

.form-group1 .form-control {
    height: 40px;
    font-size: 14px; border-radius: 0px;
    background: #fbfbfd;
}

.form-group1 label{
    float: left;
    font-weight: 600;
}

.form-group1 p{
    float: left;
}


.form-group1 label span{
    color: #f70000;
}



.form-group1 textarea.form-control {
    height: 100px;
}

.contact_details .address_list li a:hover,
.contact_details .address_list li a:focus {
    color: var(--blue);
}

.contact_map {
    float: left;
    width: 100%;
    height: 500px;
}

/* products page */

.certificate-page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: whitesmoke;
}

.certificate-page .img-bx {
    float: right;
    width: 100%;
    max-width: 500px;
    border: 1px dashed var(--blue);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 0 20px 20px;
}

.certificate-page .des-bx .certificate-title {
    color: #444;
    font-weight: 700;
    position: relative;
    padding-top: 20px;
    line-height: normal;
    margin-bottom: 10px;
    font-size: 26px;
}

.certificate-page .des-bx .certificate-title::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    height: 5px;
    border-radius: 2px;
    width: 60px;
    background: var(--liner1);
}

.certificate-page .des-bx ul {
    margin: 0 0 25px;
    padding: 0;
}

.certificate-page .des-bx ul li {
    line-height: 28px;
    font-size: 15px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.certificate-page .des-bx ul li::before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}



/* products page */

.product-page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #f4f7fe;
}

.productbg{
    padding: 40px 0!important;
    background: #f4f7fe!important;
}

.product-page .related-category {
    /* padding: 0 15px; */
    /* background-color: #fff; */
    /* box-shadow: 0 0 35px rgba(0, 0, 0, 0.1); */
    /* border-radius: 3px; */
    padding-bottom: 0;
    margin-top: 30px;
}

.product-page .related-category li a {
    padding: 15px;
    margin-bottom: 10px;
    /* border: 2px solid red; */
    background-color: white;
    border-left: 6px solid #dbdbdb;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #666;
    font-weight: 600;
    transition: 0.6s;
}

.product-page .related-category li a.active,
.product-page .related-category li a:hover {
    padding: 15px;
    margin-bottom: 10px;
    /* border: 2px solid red; */
    background-color: white;
    border: 1px solid #E3E3E3;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #222;
    /* scale: 1.03; */
    /* transform: translateX(-5px); */
}

.product-page .login-form {
    background-color: #fff;
    width: 100%;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    margin: 0px auto;
}
.product-page .product-content{
    margin: 40px 0px;
/*    background-color: #f1f4fd;
    border: 1px solid rgba(224, 224, 232, 0.6);*/
    border-radius: 15px;
}
.product-page .product-content1{
    margin: 40px 0px;
    background-color: #fff;
    border: 1px solid rgba(224, 224, 232, 0.6);
    padding: 40px;
    border-radius: 15px;
}
/*
.product-page .product-content{
    background-color: #fff;
    width: 100%;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
    padding: 40px;
    text-align: center;
}
*/


.product-page ._mob_num_set{
    color: #222;
    font-weight: 600;
}

.product-page ._ref{
    color: var(--blue);
    font-size: 13px;
}

.product-page ._ref:hover{
    text-decoration: underline;
    color: var(--blue);
}

.product-page .login-form .login-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--title-1);
}

.product-page .login-form .form-bx {
    margin-top: 20px;
    text-align: left;
}

.product-page .login-form .form-group {
    margin-top: 10px;
    margin-bottom: 20px;
}

.product-page .login-form .form-group label {
    font-size: 14px;
    color: #444;
    line-height: normal;
}

.form-bx .form-group label.error{
    position: absolute;
    bottom: -18px;
    font-size: 13px;
    color: red;
}

.product-page .login-form .input-group {
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    flex-wrap: nowrap;
    border-radius: 3px;
}

.product-page .login-form .input-group .input-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-page .login-form .input-group input {
    border: 0;
    margin: 0 !important;
    font-size: 14px;
    padding-left: 2px;
    height: 38px;
}

.product-page .login-form .submitBtn {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.product-page .product-content ul {
    float: left;
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.product-page .product-content .product-title {
/*    font-size: 25px;
    font-weight: 700;
    color: var(--blue);
    line-height: normal;
    margin-bottom: 10px;*/
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue)
}

.product-page .product-content .product-title:before {
    content: "";
    position: absolute;
    border: 0;
    width: 50px;
    height: 2px;
    background: #00afef;
    z-index: 1;
    margin-left: 0;
    bottom: 0;
    left: 0;
}

.product-page .product-content h2,
.product-page .product-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    line-height: normal;
    margin-bottom: 10px;
}

.product-page .product-content p {
    text-align: justify;
}

.accordion-button:focus {
    box-shadow: none;
}

.product-page .product-content .accordion-button {
    font-size: 16px;
}

.product-page .product-content ul li {
    line-height: 28px;
    font-size: 15px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.product-page .product-content ul li::before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}

.steps-sec {
    float: left;
    width: 100%;
    margin: 0;
    padding: 00px 0 0;
}



.steps-sec-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue);
    line-height: 30px;
}
.white{
    color:#fff!important;
}

.steps-sec .steps {
    max-width: 1000px;
    margin: 15px auto 0;
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.steps-sec .step-bx {
    /* border: 2px solid #000; */
    text-align: center;
    position: relative;
}

.steps-sec .step-bx.done .step-count::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="hsl(120, 42%, 54%)" class="bi bi-check2-square" viewBox="0 0 16 16"> <path d="M3 14.5A1.5 1.5 0 0 1 1.5 13V3A1.5 1.5 0 0 1 3 1.5h8a.5.5 0 0 1 0 1H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V8a.5.5 0 0 1 1 0v5a1.5 1.5 0 0 1-1.5 1.5H3z"/> <path d="m8.354 10.354 7-7a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0z"/></svg>'); 
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 100%;
    color: hsl(120, 42%, 54%);;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.steps-sec .step-bx.done::before {
    background-color: hsl(120, 42%, 54%);
}

.steps-sec .step-bx.done .step-des {
    color: hsl(120, 42%, 54%);
}

.steps-sec .step-bx.active .step-count {
    color: #00afef;
    /*border: 5px solid var(--blue);*/
}

.steps-sec .step-bx.active .step-des {
    color: #00afef;
}

.steps-sec .step-bx::before {
    width: 75px;
    position: absolute;
    height: 1px;
    display: block;
    background-color: #e0e0e0;
    /* transform: translate(-95px, 21px); */
    content: "";
    top: 40%;
    left: 106%;
    border-radius: 3px;
}

.steps-sec .step-bx:last-child::before {
    content: none;
}

.steps-sec .step-bx .step-count {
    height: 65px;
    width: 65px;
    border-radius: 100%;
    margin: 0 auto 5px;
    /*background-color: #fff;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    position: relative;
    padding: 10px
}

.steps-sec .step-bx .step-des {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    line-height: normal;
}

/* login page */

.login-page {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* background-image: url(../images/login-bg.jpg); */
    background-position: center;
    background-size: cover;
    padding: 60px 0;
    float: left;
    width: 100%;
}

#bulkBuy .modal-content {
    border-radius: 2px;
}

.login-form .logo {
    margin-bottom: 20px;
}

.login-form .login-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
}

/* .login-form::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 14, 62, 0.8);
    top: 0;
    left: 0;
    content: '';
    z-index: -1;
} */

.login-form {
    background-color: #fff;
    overflow: hidden;
    border-radius: 5px;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.login-form .form-bx {
    margin-top: 30px;
    text-align: left;
}

.login-form .form-group {
    margin-top: 8px;
    margin-bottom: 0;
}

.login-form .form-group label {
    font-size: 13px;
    color: #444;
    line-height: normal;
}

.login-form .input-group {
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    flex-wrap: nowrap;
    border-radius: 3px;
}

.login-form .input-group input,
.login-form .input-group select {
    border: 0;
    margin: 0 !important;
    font-size: 14px;
    padding-left: 2px;
    height: 35px;
}

.login-form .input-group .input-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form .submitBtn {
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 2px;
}

.login-form .shift {
    margin: 0;
    line-height: normal;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 500;
}

.login-form .shift a {
    color: var(--blue);
}



._login {
    background: #fff;
    padding: 0px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: #555;
    transition: 0.3s;
    box-shadow: rgb(0 0 0 / 5%) 0px 1px 1px;
    display: flex;
    align-items: center;
    gap: 7px;
    height: 45px;
}

._login:hover {
    box-shadow: rgb(0 0 0 / 15%) 0px 1px 3px;
    color: #555;
}

._login ._tx {
    text-align: right;
}

._login strong {
    display: block;
    font-size: 13px;
}


.blog_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: whitesmoke;
}

.blog_page .title_2 {
    font-size: 28px;
    margin-bottom: 30px !important;
}

.blog_page .blog-2 {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    border: none;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.blog-2 .blog-photo {
    position: relative;
    border-bottom: 6px solid var(--blue);
    overflow: hidden;
}

.blog-2 .blog-photo img {
    max-height: 380px;
    width: 100%;
    object-position: center;
}

.blog-2 .date-box {
    position: absolute;
    bottom: -1px;
    left: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 7px 20px;
    background: var(--blue);
}

.blog-2 .detail {
    padding: 30px 30px 25px;
}

.blog-2 h4 {
    text-align: left;
    margin: 0;
    padding: 0;
}

.blog-2 h4 a {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.blog-2:hover h4 a {
    color: var(--blue);
}

.blog-2 p {
    font-size: 15px;
    margin-bottom: 10px;
}

.blog-2 .moreBtn {
    color: #666;
    transition: all 0.3s ease-in-out;
}

.blog-2 .moreBtn:hover{
    background: transparent;
}

.blog-2:hover .moreBtn {
    color: var(--light-blue);
}

.blog-2 .moreBtn svg {
    transition: all 0.3s ease-in-out;
}

.blog-2 .moreBtn:hover svg {
    transform: translateX(3px);
}

.mini-blogs ul {
    padding: 0 15px;
    background-color: #fff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding-bottom: 0;
}

.mini-blogs ul li {
    padding-top: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.mini-blogs .pri-text {
    color: var(--blue) !important;
}

.mini-blogs .tx-bx .title {
    color: rgb(0, 0, 0) !important;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
    font-size: 14px;
}

.mini-blogs .tx-bx p {
    color: #666;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: normal;
}

.mini-blogs a img{
    height: 90px;
    width: 120px;
}
.mini-blogs a:hover{
    background: transparent !important;
    color: black;
}

.blog_details {
    float: left;
    width: 100%;
}

.blogTitle {
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.blog_details ul {
    display: inline-block;
    margin: 0px 0 15px;
    padding: 0;
}

.blog_details ul li {
    display: inline-block;
    margin-right: 15px;
    list-style: none;
}

.blog_details .stButton {
    margin-bottom: 15px;
}

.blog_details1 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.blog_details_img {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.blog_details_img img {
    display: flex;
    margin: 0 0;
    width: 650px;
    height: 400px;
}

@media screen and (max-width: 768px){
    .blog_details_img img{
        height: 200px;
    }
}

.blog_details1 p {
    text-align: justify;
    line-height: 24px;
}

.blog_details1 .block-quote {
    padding: 30px 35px;
    margin-bottom: 20px;
    background: #eee;
    border-left: 5px solid var(--blue);
}

.blog_details1 .block-quote svg {
    color: var(--blue);
}

.blog_details1 .block-quote p {
    margin-bottom: 0;
    font-size: 14px;
}

.blog_details1 h3 {
    margin: 0 0 5px;
    padding: 0;
    line-height: 30px;
    color: #333;
    font-weight: 800;
}

.blog_details1 ul {
    float: left;
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.blog_details1 ul li {
    line-height: 28px;
    font-size: 16px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.blog_details1 ul li:before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}

/* tutorials page */

.tutorials_page,
.price_list {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0 40px;
}

.tutorials_page  .tut-bx-section {
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    padding: 25px;
}

.tutorials_page .tut-bx-section .tutorials-title {
    color: var(--blue);
    font-size: 20px;
    text-align: left;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
}
.tutorials_page .tut-bx-section .tutorials-title:before {
    content: "";
    position: absolute;
    border: 0;
    width: 50px;
    height: 2px;
    background: #00afef;
    z-index: 1;
    margin-left: 0;
    bottom: 0;
    left: 0;
}


.tutorials_page .tut-bx {
    margin-bottom: 10px;
}

.tutorials_page .tut-bx .ds-bx {
    /* min-height: 120px; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    padding: 20px 0px;
}

.tutorials_page .tut-bx .ds-bx .title {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 28px;
}

.tutorials_page .tut-bx .ds-bx .sub-title {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    color: #00afef;
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 15px;
}

.tutorials_page .tut-bx .img-bx {
    border: 1px solid #ccc;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.tutorials_page .tut-bx .img-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 0.4s;
}

.tutorials_page .tut-bx:hover .img-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 14, 62, 0.4);
    z-index: 1;
}


.tutorials_page .tut-bx .img-bx img {
    max-height: 270px;
    width: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.4s;
}

.tutorials_page .tut-bx:hover .img-bx img {
    scale: 1.1;
}

.tutorials_page .tut-bx .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    height: 70px;
    width: 70px;
    border-radius: 100%;
/*    border: 4px solid white;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.2s;
}

.tutorials_page .tut-bx .cate {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background-color: var(--blue);
    color: white;
    font-size: 13px;
    z-index: 2;
    line-height: normal;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 4px;
}

.tutorials_page .tut-bx .video-btn:hover {
    scale: 1.03;
}

.tutorials_page .tut-bx .video-btn svg {
    height:70px;
    width: 70px;
}


/* download */

.download_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0 20px;
}

.download_page .download-title {
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.download_page table {
    max-width: 850px;
    margin: 0 auto 30px;
    min-width: 550px;
}

.download_page table a {
    color: var(--blue);
    text-decoration: underline;
}

.download_page table thead {
    background: var(--blue);
    color: white;
}

.download_page .option-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.download_page .option-ul li a {
    border: 1px solid #666;
    margin-right: 15px;
    color: #666;
    padding: 5px 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.4s;
    margin-bottom: 15px;
}

.download_page .option-ul li a:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: white;
}

.make-payment {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: white;
}

.make-payment .form-group {
    margin-bottom: 10px;
}

.make-payment .user-des {
    /*background: linear-gradient(90deg, #01aeee, #0678a2);*/
    /*padding: 10px 20px;*/
    width: 100%;
    font-weight: 600;
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 10px;
}

.make-payment .user-des .title {
    font-size: 22px;
    color: #00afef;
    line-height: normal;
    margin-bottom: 0px;
}

.make-payment .user-des .title .edit-save-btn {
    font-size: 17px;
    cursor: pointer;
}

.make-payment .user-des p {
    color: 000;
    margin-bottom: 0;
}

.make-payment .number-bx {
    display: block;
    margin-bottom: 15px;
    align-items: center;
}

.make-payment .number-bx span {
    margin-right: 15px;
    display: inline-block;
}

.make-payment .number-bx span.number {
    font-size: 18px;
    margin-right: 5px;
    font-weight: 600;
    display: flex;
    float: left;
}

.make-payment .number-bx .change-btn {
    color: #01aeee;
    font-size: 12px;
    font-weight: 600;
}


.form-check-input:focus {
    border-color: #00afef;
    outline: 0;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: #00afef;
    border-color: #00afef;
}

.input-group-text {
    font-size: 14px;
}

.form-check {
    min-height: auto;
}

.form-switch .form-check-input {
    width: 50px;
    height: 25px;
}

.modal-header {
    padding: 10px 18px;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--blue);
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}

.coupon_form {
    position: relative;
    margin-bottom: 5px;
}

.coupon_form input {
    border: 1px #dedede solid;
    border-radius: 0px;
    width: 100%;
    font-size: 15px;
    margin: 0;
    height: 40px;
}

.coupon_form .apply_btn {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--blue);
    color: white;
    border: 0;
    height: 40px;
    padding: 6px 15px;
    font-size: 15px;
    font-weight: 500;
}

.coupons_text {
    display: block;
    font-size: 13px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}

.coupons_text a {
    display: inline-block;
    color: var(--blue);
}

.make-payment .table.table-totals tr {
    border: 0;
}

.make-payment .table tr th,
.make-payment .table tr td {
    border: 0 !important;
    padding: 5px 0;
    font-size: 14px;
    line-height: normal;
}

.make-payment table tr td:nth-child(1) {
    width: auto !important;
}

.make-payment .table tbody tr:last-child td {
    padding-bottom: 1rem;
}

.make-payment .table tr td.free {
    color: hsl(120, 42%, 54%);
    text-transform: uppercase;font-weight: bold;
}

.make-payment .table tfoot {
    border-top: 1px solid #ccc;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.make-payment .table tfoot tr td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 16px;
    color: #333;
    width: auto !important;
}

.toggle-select {
    display: none;
}

.payable {
    color: #fe616f;
}

.info {
    color: var(--blue);
    position: relative;
    cursor: pointer;
}

.info .info-cmt {
    font-size: 12px;
    visibility: hidden;
    min-width: 320px;
    background-color: #fff9f3;
    border: 1px solid #eec592;
    color: #000;
    top: 20px;
    text-align: left;
    border-radius: 3px;
    padding: 10px;
    position: absolute;
    z-index: 9;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    line-height: 18px;
}

.info:hover .info-cmt {
    visibility: visible;
    opacity: 1;
}

.order_btn {
    width: 100%;
    padding: 10px 25px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-right: 0px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #01aeee, #0678a2);
}

.order_btn:hover {
    background: linear-gradient(90deg, #3e3f95, #20216a);
    color: #fff;
}


.document_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.document-bx {
    border: 1px solid #eee;
    background-color: #fff;
    padding: 0px;
    border-radius: 15px;
    box-shadow: 0 2px 5px 0 #ccc; 
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 700px;
    overflow: hidden;    
}

.pd20{
    padding: 15px 20px;
}
.document-bx ul {
    padding: 0;
    list-style: none;
    margin-top: 10px;
    padding: 0px;
    margin-bottom: 0px;
}

.document-bx ul li {
    font-size: 12px;
    
    line-height: normal;
    color: grey;
}

.document-bx .document-title {
    font-weight: 600;
    color: var(--blue);
    font-size: 19px;
    margin-bottom: 5px;
}

.document-bx .input-group-text {
    color: white;
    background: var(--blue);
    cursor: pointer;
}

.upload-btn {
    padding: 10px 35px;
    border-radius: 5px;
    outline: 0;
    border: 1px dashed var(--blue);
    color: var(--blue);
    background: white;
    font-weight: 500;
    display: initial;
    font-size: 18px;
}

.document_page .upload-btn:hover,
.document_page .upload-btn:focus,
.document_page .upload-btn:active {
    border-style: solid;
    background: var(--liner1);
    color: white;
}

.kyc-verfiy-bx {
    padding: 20px;
}

.kyc-verfiy-bx p {
    font-size: 14px;
    text-align: center;
    line-height: normal;
    margin-bottom: 0px;
}

.kyc-verfiy-bx .kyc-verify-title {
    font-size: 25px;
    font-weight: 800;
    text-align: center;
    color: var(--blue);
    margin-bottom: 12px;
}

.btn-1,
.btn-2 {
    display: inline-block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 25px;
    border-radius: 4px;
    transition: all .3s ease;
    border: none;
    outline: none;
}

.btn-1 {
    background: var(--liner1);
}

.btn-2 {
    background: var(--liner2);
}

.btn-1:hover {
    color: white;
    background: var(--liner2);
}

.btn-2:hover {
    color: white;
    background: var(--liner1);
}

.thankYou-bx {
    padding: 20px;
}

.thankYou-bx img {
    max-width: 300px;
    margin: 0 auto 35px;
    display: block;
}

.thankYou-bx .thankYou-title {
    font-weight: 800;
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
    color: var(--blue);
}

.thankYou-bx p {
    font-size: 14px;
    text-align: center;
    line-height: normal;
    margin-bottom: 20px;
    line-height: 20px;
}

.dashboard_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #f4f7fe;
}

.dashboard_page .dashboard-links {
margin-bottom: 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px 0 #ccc;
    background: #fff;
}

.dashboard_page .dashboard-links li a {
border-top: 1px solid #e9e9e9;
    padding: 13px 15px;
    border-radius: 3px;
    margin-bottom: 0px;
    color: #666666;
    font-weight: 500;
    transition: all 0.3s ease;
    /* background: #a8b4eb; */
    font-size: 16px
}
.dashboard_page .dashboard-links li:first-child a {
    border-top: 0px;
}
.dashboard_page .dashboard-links li a svg{
    margin-right: 5px;
}

.dashboard_page .dashboard-links li a:hover,
.dashboard_page .dashboard-links li a.active {
    color: #01aeee;
    background: #e5f4fd;
}

.dashboard_page .dashboard-links li:last-child a {
    margin-bottom: 0px;
}



.dashboard_page .dashboard-bx .profile-bar {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
   /* box-shadow: 0 2px 5px 0 #ccc;*/
    background-color: #01aeee;
}

.profile-bx {
    display: flex;
    align-items: center;
}

.profile-bx .profile-icon {
    color: #3e3f95;
    border: 7px solid;
    border-radius: 100%;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    background: white;
    margin-right: 15px;
}

.profile-bx .profile-icon {
color: #01aeee;
    border: 7px solid;
    border-radius: 20px;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    background: white;
    margin-right: 15px
}

.profile-bx .profile-des .title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.profile-bx .profile-des a {
    color: #fff;
    font-size: 13px;
}

.recent-order-bar {
    padding: 20px;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
}

.recent-order-bar .recent-order-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    background: #e5f4fd;
    padding: 5px 15px;
    border-radius: 7px;
}

.recent-order-bar .order-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-order-bar .order-details li {
    font-weight: 500;
    color: #333;
}

.recent-order-bar .order-details li span {
    color: #01aeee;
    font-weight: 600;
}

.recent-order-bar .upload-btn {
    width: 100%;
    padding: 8px 20px!important; 
}

.dashboard-bx .dashboard-title {
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 7px;
    background-color: #01aeee;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.profile-edit-bar .form-control {
    height: 45px;
    border-radius: 0px;
}

.order-details-bar .details-bx,
.order-details-bar .address-bx {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 3px;
    /*box-shadow: 0 2px 5px 0 #ccc;*/
    background-color: #f7e5e9;
    border-radius: 7px;
}

.order-details-bar .table.table-totals tr {
    border: 0;
}

.order-details-bar table tr td:nth-child(1) {
    width: auto !important;
}

.order-details-bar .table tbody tr:last-child td {
    padding-bottom: 1rem;
}

.order-details-bar .table tr th,
.order-details-bar .table tr td {
    border: 0 !important;
    padding: 5px 0;
    font-size: 14px;
    line-height: normal;
}

.details-bx .table tr td.free {
    color: forestgreen;
    text-transform: uppercase;
    font-weight: bold;
}

.order-details-bar .table tfoot {
    border-top: 1px solid #ccc;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.order-details-bar .table tfoot tr td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 16px;
    color: #333;
    width: auto !important;
}

.order-details-bar .details-bx .Order-id {
    font-size: 18px;
    font-weight: 700;
    color: #fe616f
}

.order-details-bar .details-bx .Order-date {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.order-details-bar .address-bx {
    background: #cae3ef;
}

.order-details-bar .address-bx .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #3e3f95;
}

.order-details-bar .address-bx .name {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.order-details-bar .address-bx .address-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-details-bar .address-bx .address-details li {
    font-size: 14px;
    color: #646464;
    padding-top: 5px;
}

.order-details-bar .address-bx .address-details li span {
    color: #333;
    font-weight: 500;
}

.order-history-bar {
    overflow: auto;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9e9e9;
}

.order-table {
    min-width: 700px;
}

.order-table thead {
    color: white;
    background: var(--liner1);
}

.order-table .download-btn {
    display: block;
    border: 1px dashed var(--blue);
    color: var(--blue);
    border-radius: 5px;
    max-width: 50px;
    margin: 0 auto;
    text-align: center;
    padding: 3px 0px;
}

.order-table tbody tr td {
    vertical-align: middle;
    white-space: nowrap;
}

.doc-bar .doc-bx {
    border: 1px solid #eee;
    box-shadow: 0 2px 5px 0 #ccc;
    background-color: #f3f3f3;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.doc-bar .doc-bx img {
    display: block;
    height: 150px;
    object-fit: cover;
    object-position: top center;
}


.doc-bar .doc-bx .doc-title {
    text-align: center;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    padding: 5px 0;
}

.custom-ul {
    float: left;
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.custom-ul li {
    line-height: 28px;
    font-size: 15px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.custom-ul li span {
    font-weight: 600;
    margin-left: 5px;
}

.custom-ul li::before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}


/*--------------------------------------------------------------
  # Price List Details
  --------------------------------------------------------------*/
  .table-style {
    border: 1px solid #0b2925;
    margin: 30px;
    width: 100%;
    overflow-x: auto;
  }

  #customers {
    width: 100%;
    border-collapse: collapse;
  }

  #customers th{
    background: #523563;
    color: #fff;
  }

  #customers th,
  #customers td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
  }

  #customers td:nth-child(1) {
    text-align: left;
  }

  #customers td:not(:last-child) {
    border-right: 2px solid #b3b3b3;
    text-align: start;
  }

 

  .hilit .box .core-btn{
    background: #523563;
    color: #fff;
    padding: 5px 5px;
    border-radius: 5px;
    width: 40px !important;

  }



  @media (max-width: 768px) {
    #customers th,
    #customers td {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }


.price-table {
    max-width: 1000px;
    min-width: 700px;
    margin: 0 auto;
}

.price-table thead {
    color: white;
    background: var(--liner1);
}

.price-table td {
    vertical-align: middle;
}

.price-table img {
    display: block;
    max-height: 30px;
    margin: 0 auto 10px;
}

.price-table td img:last-child {
    margin-bottom: 0px;
}

.price-table td .price,
.price-table td .btn-1 {
    line-height: 30px;
    display: block;
    margin-bottom: 8px;
    padding: 0;
    width: 90px;
}


.price-table td .price:last-child,
.price-table td .btn-1:last-child {
    margin-bottom: 0px;
}

.sitemap {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li ul {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li {
    list-style: none !important;
    background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
    padding: 0px 0px 0px 15px;
    margin-bottom: 5px;
}

.sitemap li a {
    color: #333;
    font-size: 14px;
    padding-bottom: 10px;
    display: block;
    line-height: normal;
}

.market-list {
    float: left;
    width: 100%;
    margin: 0 !important;
    padding: 0;
}

.market-list li {
    list-style: none;
    padding-right: 10px;
    line-height: 20px;
    width: 25%;
    float: left;
}

.market-list li a {
    width: auto;
    height: auto;
    padding: 10px 0 10px 12px;
    margin: 0 0 9px;
    display: block !important;
    color: #333 !important;
    font-size: 14px;
    background-color: #ddd;
}

.market_area h3 {
    float: left;
    display: block;
    font-size: 18px;
    padding: 10px 0 5px;
    font-weight: 600;
}

.market_area h2 {
    margin-bottom: 10px;
    font-weight: 600;
}
.er{color:red}
.downloadfileBox{text-align: center; justify-content: center; align-items: center; flex-direction: column;}

.gallery_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #f4f7fe;
}

.gallery_page .gallery_item {
    border-radius: 2px;
    background-color: rgb(255, 255, 255);
    box-shadow: 8px 8px 0px 0px rgba(1, 174, 238, 0.5);
    margin-bottom: 25px;
}

.gallery_page .gallery_item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.gallery_item_info {
    text-align: center;
    padding: 15px;
}

.gallery_item_info h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
    padding: 0;
}

.gallery_item_info p {
    font-size: 13px;
    margin: 0;
    margin-top: 4px;
    color: #333;
    max-width: 100%;
}

.hover_effect {
    display: block;
    position: relative;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    height: 200px;
}

.hover_effect:after {
    color: #fff;
    position: absolute;
    font-size: 1.6em;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.hover_effect img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    height: auto;
}

.hover_effect:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    filter: alpha(opacity=60);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: .6;
    -khtml-opacity: .6;
    opacity: .6;
}

.hover_effect:hover img {
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
}

.hover_effect:hover {
    background: #3e3f95;
}

.hover_effect:after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='white' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zM13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z'/><path d='M10.344 11.742c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1 6.538 6.538 0 0 1-1.398 1.4z'/><path fill-rule='evenodd' d='M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1H7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 .5-.5z'/></svg>");
}
.video_gallery{ float: left; width: 100%; margin: 0 0 20px; padding: 10px; background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, .3); border:1px solid #eee; transition: all .3s ease-in-out}
.video_gallery:hover {box-shadow: 1px 1px 10px rgba(0, 0, 0, .5); padding-top: -2px;}
.video_gallery i{line-height: inherit; color: #ff4f47; font-size: 20px;}
.video_gallery iframe{ width: 100%; height: 300px; margin-bottom: 5px;}
.video_gallery h3 {
    font-size: 16px;
    color: #333;
    padding: 0;
    line-height: normal;
    font-weight: normal;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.video_gallery h3 svg {
    width: 50px;
    height: 50px;
    padding: 10px;
    background: #e02f2f;
    border: 1px solid #ce2626;
    text-align: center;
    line-height: 45px;
    float: left;
    font-size: 30px;
    color: #fff;
    margin-right: 15px;
}
.buyToken {
    float: left;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
    position: relative;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.buyToken:hover{
    transform: translateY(-5px);
    scale: 1.02;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
}
.buyToken .image {
    width: 100%;
    height: 250px;
    position: relative;
    border-bottom: 1px solid #eee;
}
.buyToken .image img{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    height: auto;
}
.tokenInfo{
    float: left;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
}
.tokenTitle {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e3f95;
    font-weight: 600;
    margin-bottom: 5px;
    background: #f4f7fe!important;
    padding: 5px;
}
.fromPrice {
    font-weight: 400;
    font-size: 16px;
    color: #333;
    text-align: center;
    display: block;
    margin-bottom: 0px;
    line-height: normal;
}
.taxIncluded{
    display: block;
    font-weight: 600;
    font-size: 12px;
    color: #333;
    text-align: center;
    margin-bottom: 5px;
}
.packof{
    width: 100%;
    border: 1px solid #ced2fd;
    border-radius: 4px;
    padding: 10px 15px;
    background: #fff;
    margin-bottom: 10px;
}
.addTocart {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #01aeee, #0678a2);
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    padding: 10px 20px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border: none;
    outline: none;
    transition: 0.3s;
}




.addTocart:hover {
    background: linear-gradient(90deg, #3e3f95, #20216a);    
    color: #fff;
}
.summaryBox{
    font-size: 14px;
    margin: 0px;
    background: #fff;
    box-shadow: 1px 3px 2px #eee;
    padding: 15px 15px 5px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 10px;
}
.ttips {position: relative;display: inline-block;cursor: pointer;}
.ttips .ttipContent { font-size:13px; visibility: hidden;min-width: 320px;background-color: #fff9f3; border: 1px solid #eec592;color: #000;left:-15px;top:20px; text-align: left;border-radius:3px;padding: 10px;position: absolute;z-index:9999;opacity: 0;transition: opacity 0.3s;box-shadow: 0px 0px 5px rgba(0,0,0,0.3);}
.ttips .ttipContent p { margin-bottom:0px !important;}
.fields-font {color: #2271b2;font-weight: 400;}
.ttips:hover .ttipContent {visibility: visible;opacity: 1;}
.usbToken{
    border-radius: 4px;
    padding: 10px;
    position: relative;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tokenSection .usbToken{
    font-weight: normal;
    text-align: left;
    margin-bottom: 0px;
    margin-left: 10px;
    line-height: 19px;
}
.tokenBold {
    font-weight: bold;
}
.usbToken span{
    font-size: 12px;
}
.usbToken img {
    height: 40px;
    position: absolute;
    right: 10px;
}
.summaryBox .form-group{
    display: flex;
    align-items: center;
}
.summaryBox .form-group span{margin-right: 5px;}
.summaryBox .form-group .form-control{
    max-width: 200px;
}

.priceDetails .title h3 {
    font-size: 16px;
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: bold;
}
.priceTxt {
    font-size: 14px;
}
.priceDetails .totalcost {
    font-size: 16px;
    color: var(--blue);
    font-weight: bold;
    margin-bottom: 5px;
}
.order_btn{
    border: 0;
    outline: 0;
    border-radius: 4px;
}



.wrapper{
    width: 100%;
    float: left;
    display: flex;
    align-items: self-start;
    margin-bottom: 10px;
    margin-top: 15px;
  }
  .wrapper .tokenGroup label {
      display: flex;
      justify-content: center;
      align-items: center;
      color: #000;
      /*background: linear-gradient(90deg, #3e3f95, #20216a);*/
      text-decoration: none;
      font-size: 15px;
      line-height: 24px;
      padding: 10px 20px;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      white-space: nowrap;
      border: none;
      outline: none;
      transition: 0.3s;
      cursor: pointer;
      margin-right: 10px;
      border: 1px solid #01aeee;
      font-weight: 600
  }
  .tokenGroup input[type="radio"]{
    display: none;
  }

  .tokenGroup input[type="radio"]:checked ~ label{
    border-color: #0069d9;
     background: linear-gradient(90deg, #01aeee, #0678a2);
          color: #fff;
  }
.fromPrice1{
    font-size: 22px;
    color: var(--blue);
    display: block;
    margin-bottom: 10px;
    line-height: normal;
    font-weight: 600;
}

.continueBtn {
    width: auto;
    padding: 10px 25px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-right: 0px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #01aeee, #0678a2);
    border: 0;
}

.continueBtn:hover {
    background: linear-gradient(90deg, #3e3f95, #20216a);
    color: #fff;
}
.w100{width: 100%;}


.download-token {
    position: relative;
    background-image: url("../images/download-token-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    float:left;
    width: 100%;
    padding-top: 90px;
    padding-bottom: 140px;
}
.download-token:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.8;
    z-index: -1;
    background-color: #022d58;
}

.download-token-title {
    position: relative;
    padding-left: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 3px;
    color: #00afef;
}

.download-token-title:before, .download-token-title:after{ content: "";
    height: 12px;
    width: 2px;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    z-index: 1;
    transform: rotate(20deg);
    background-color: #00afef;
}
.download-token-title:before {
    left: 6px;
}
.download-token-title:after {
    left: 0;
}
.download-token p{
    color: #fff;
}

.download-token table thead tr th{
    color: #00afef
}
.download-token table tbody tr th{
    color: #fff; 
}
.download-token table tbody tr td{
    color: #fff;
}
.download-token table tbody tr td a{
    color: #fff;
    transition: 0.3s;
}
.download-token table tbody tr td a:hover{
    padding-left: 5px;
    color: #00afef;
}

.download-token thead, tbody, tfoot, tr, td, th{
    border-bottom:1px solid rgb(255 255 255 / 30%);
}

.about-digital-signature{
 padding-bottom: 70px;   
}

.about-digi-sign-imgbox{
    position: relative;
    z-index: 1;
    margin-top: -90px;
    margin-bottom: 35px;
}

.about-digi-sign-content{
    padding-top: 80px;
    padding-left: 25px;
}
.download-digi-title{
    margin-bottom: 0;
    font-weight: 400;
    font-size: 28px;
    line-height: 48px;
    color: #3e3f95;
    font-weight: 600
}
.download-digi-sign-listing{
    list-style-type: none;
    padding-left: 15px;
}
.download-digi-sign-listing li{
    line-height: 32px;
    padding-left: 25px;
    position: relative;
}
.download-digi-sign-listing li a{
    color: #222
}
.download-digi-sign-listing li:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    left: 0;
    background-color: #00afef;
}
.download-digi-sign-listing li a:visited,
.download-digi-sign-listing li a:focus,
.download-digi-sign-listing li a:active {
    color: #222;
    outline: none;
    text-decoration: none;
}


.alert-primary{
    color: #000;
    --bs-alert-bg: #e5f4fd;
    --bs-alert-border-color: #F7F7F7;
    font-size: .895rem;
    padding: 7px 15px;
    min-height: 45px;
}

.alert-primary svg {    
    color: #00afef;
    float: left;
    width: 30px;
    margin: 5px;
}

.alert-primary p{
    display: flex;
    margin: 0px;
}
.payment-right{
    background: #fbfbfd;
    padding: 20px 30px 40px;
    position: relative;
}

.payment-right:before {
    position: absolute;
    top: -10px;
    left: 0;
    content: "";
    display: block;
    height: 10px;
    width: 100%;
    background-color: transparent;
    background-size: 20px 20px;
    background-position: 0 10px, 40px 40px;
    background-image: radial-gradient(closest-side, transparent 9px, rgba(251,251,253,1) 100%);
}
.payment-right:after {
    position: absolute;
    bottom: -10px;
    left: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    content: "";
    display: block;
    height: 10px;
    width: 100%;
    background-color: transparent;
    background-size: 20px 20px;
    background-position: 0 10px, 40px 40px;
    background-image: radial-gradient(closest-side, transparent 9px, rgba(251,251,253,1) 100%);
}

.make-payment .user-des-2 {
  padding: 5px 0px;
    width: 100%;
    font-weight: 600;
    display: inline-block;
    border-radius: 3px;
    margin: 0px 0px 0px 0px;
}

.mt15{
    margin-top: 15px;
}
.make-payment .user-des-2 .title {
    font-size: 18px;
    color: #00afef;
    line-height: normal;
    margin-bottom: 5px;
}

.make-payment .user-des-2 .title .edit-save-btn {
    font-size: 17px;
    cursor: pointer;
}

.make-payment .user-des-2 p {
    color: white;
    margin-bottom: 0;
}
.payment-section{   
    background: #fff;
    box-shadow: 0 6px 25px rgba(0,0,0,.07);
    padding: 20px 25px;
}

.bg-blue{
    background: #0c3c6d;
    color: #fff;
    padding: 0px
}
.bg-blue p{
    color: #fff;
}

.bg-blue  .user-des-2 .title{
    color: #00afef;
    font-size: 20px;
}
.mt-20{
    margin-top: 20px
}

.process {
    background-color: #fff;
    border-radius: 10px;
    height: 94%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}


.feature-icon-holder{
    display: flex;
    justify-content: center;
    align-items: center;
}

#features-links-holder .icons-axis{
    padding: 5px;
    text-align: center;
    background-color: #e3e3e3;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



#features-links-holder .icons-axis img {
    width: 50px;
}
#features-links-holder .icons-axis p{
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    color: var(--title-1);
}
#features-links-holder .icons-axis p span{
    display: block;
    clear: both;
    font-size: 16px;
    line-height: 16px;
    color: var(--bg_color1);
    padding-top: 10px;
}
#features-links-holder .feature-icon-holder {
    width: 45px;
    height: 45px;
    margin-top: 20px;
    margin-left: 20px;
    border-radius: 100px;
    background: #f1752c;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
/*

#features-links-holder .feature-icon-holder.opened {
    background-color: #3e3f95;
}
*/

.features-links-holder{
    width: 100%;
}

#features-links-holder .feature-icon-holder.opened .animation-holder {
    opacity: 1;
}

#features-links-holder .feature-icon-holder.opened .animation-holder .special-gradiant {
    animation-name: little-move;
}

#features-links-holder .feature-icon-holder:hover, #features-links-holder .feature-icon-holder:focus {
    background-color: #3e3f95;
}

#features-links-holder .feature-icon-holder .feature-icon {
    color: #ffffff;
  
}

#features-links-holder .feature-icon-holder .feature-title {
    position: absolute;
    color: var(--bg_color1);
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    right: -100px;
    width: 50%;
    text-align: left;
}

#features-links-holder .feature-icon-holder .animation-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100px;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
    display: none;
}


.cat-area {
    position: relative;
    background-image: url("../images/digital-sign-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    float:left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.cat-area:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.5;
    z-index: -1;
    background-color: #022d58;
}

.cat-area1 {
    position: relative;
    background-image: url("../images/digital-sign-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    float:left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.cat-area1:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.5;
    z-index: -1;
    background-color: #022d58;
}

.extra_margin{
    float: right;
    margin-top: 50px;
}

.cat_title-2{
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
   font-style: normal;
    font-weight: 600;
    padding-bottom: 10px;
    font-size: 36px;
}


.related-cat ul {
    width: 100%;
    margin: 15px auto 0;
    display: flex;
    padding: 0;
    flex-flow: row wrap;
    max-width: 1024px;
    overflow: hidden;
}

.related-cat ul li {
    list-style: none;
    text-align: center;
    width: calc(100% / 5);
    position: relative;
    z-index: 5;
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
    height: 150px;   
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.8)!important;
}

.related-cat ul li a{
    position: relative;
    transition: all 0.3s ease-in-out;    
    border-radius: 10px;
    margin: 0 0 15px;
    width: 100%;
    padding: 20px 15px;
    text-align: center;
    color: #fff!important;
    background: #f1f2ff;
    box-shadow: none!important;
    background: transparent!important;
    border: none!important;
    font-size: 16px
}
.related-cat ul li:nth-child(1){
    background: #2c3f66;
}
.related-cat ul li:nth-child(2){
    background: #4b6285;
}
.related-cat ul li:nth-child(3){
    background: #6984a3;
}
.related-cat ul li:nth-child(4){
    background: #8aa4c5;
}
.related-cat ul li:nth-child(5){
    background: #abc4e7;
}
.related-cat ul li:hover{
    background: #3e3f95!important
}
.up-doc-1{
    background: #01aeee;
    width: 100%; height: 170px;
}
.up-doc-2{
    background: #3e3f95;
    width: 100%; height: 170px; overflow: hidden
}

.doc-upload{position: relative;
    z-index: 5;
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.doc-upload svg{ 
    width: 200px;
    color: #fff;
    height: 200px;
    transform: rotate(25deg);
    margin-left: -30px;
    opacity: 0.3;
}

.mt20{
    margin-top: 20px;
}

.radio-button-group input{ display: none}

.btn-11{
    background: #fff;
    color: #333;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 25px;
    border-radius: 4px;
    transition: all .3s ease;
    border: none;
    outline: none;
}
.text-success{
    color: #28a745!important;
}
.table-striped > tbody > tr:nth-of-type(odd) > *{
    background: #e5f4fd!important;
    --bs-table-accent-bg:none!important;
}

.form-control:disabled{
    background: #e5f4fd!important;
}
.mb0{
    margin-bottom: 0px;
}
.table-hover > tbody > tr:hover > *{
    background: #f7f7f7!important;
    --bs-table-hover-bg:none!important;
}
.notice-title{
    font-weight: 700;
}

.pt0{
    padding-top: 0px
}
.mt0{
    margin-top: 0px!important;
}
.product_right_image {
    float: right;
    max-width: 320px;
    width: 100%;
    margin: 0px 0 25px 15px;
    text-align: center;
}

.product_right_image .detail_image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 320px;
    border: 1px solid #eee;
    margin-bottom: 15px; box-shadow: 0 6px 25px rgba(0,0,0,.07);
    background: #fff;
}

.product_right_image .detail_image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.download-pdf-tutorials {
    margin: 0 0 25px;
    padding: 0;
}

.download-pdf-tutorials li {
    line-height: 28px;
    font-size: 15px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
/*    display: flex;*/
    align-items: center;
    list-style-type: none;
    border-bottom: 1px dashed #efefef;
    padding: 10px 0px;
}
.download-pdf-tutorials li:last-child{
    border: none
}
.download-pdf-tutorials li a{
    vertical-align: middle;
    align-items: center;
    height: 28px;
     color: #333;
    font-weight: 600;
    
}
.download-pdf-tutorials li a svg{
 float: left;
    color: #cb0606; margin-right: 10px;
    vertical-align: middle;
    align-items: center;
    height: 28px;
    width: 22px;
}
.download-pdf-tutorials li a .title{
    line-height: 15px;
}

.title_3{
    text-align: center;
    text-transform: uppercase;
    color: #333;
    font-size: 20px;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
}


 .required-documents{
    background: #e5f4fd; 
    /* box-shadow: 3px 3px 20px #efefef; */
    margin: 10px 0px 0px;
    border-radius: 10px;
    padding: 5px 25px;
    border: 1px solid #ade7fc;
}
.required-documents .user-des-2 .title{
    padding-top: 10px;
}
.required-documents .user-des-2{
    margin-bottom: 0px!important;
    margin: 0px 0px 5px 0px!important;
    padding: 0px 5px 5px!important;
}
.required-documents ol{
    list-style-type: none;
    margin-bottom: 10px;
    color: #fff;
    padding: 0px;
}
.required-documents ol li{
    color: #333;
    font-size: 15px;
    margin: 5px 0px;
    padding: 0px 15px 0px 35px;
    background: url(../images/check-sign.png)no-repeat 10px 10px;
}
.required-documents ol li::marker{
    color: #fff;
    font-weight: bold
}
.alert-blue{
    background: #00afef;
    color: #fff;
    border: none;
    padding: 8px 15px!important;
}


.payonline-breadcumb {
    float: left;
    width: 100%;
    position: relative;
    background-position: center;
    padding: 30px 0;
    margin: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.payonline-breadcumb:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    z-index: -1;
    background-color: #022d58;
    top: 0;
    left: 0;
    content: '';
}

.payonline-breadcumb .cat_title {
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    border-radius: 3px;
    background: var(--liner1);
}

.cb30{
    clear: both; height: 30px;
}

.paymentby{
    font-size: 16px;
    color: #333;
    width: auto !important;
    font-weight: bold;
}   
.pd0{padding: 0px;}
.pd25{
    padding: 25px;
}
.hdtext-product-summary { 
    background: #00afef;
    line-height: 40px;
    color: #fff!important;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: block;
    float: left;
    width: 100%;
}
.usb-token-btn {                                                                                                                
    padding: 8px 20px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-right: 0px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #3e3f95, #20216a);
    border: 0px;
    display: inline-block;
}
.usb-token-btn:hover {
    background: linear-gradient(90deg, #01aeee, #0678a2);
    color: #fff;
}
.payment-section label{
        letter-spacing: -0.2px;
}

.coupon-code1 h4 {
    font-size: 15px;
    margin: 0px;
    display: inline-flex;
    margin-bottom: 10px;
}
.coupon-code1 a#btnApplyCoupon {
    color: #00afef;
    padding-left: 5px;
}
.payment-right ol{
    margin-bottom: 10px;
}

.free-items{
    background: #e5f4fd;
    border:1px dashed #b5e3ff;
    padding: 15px;
    margin: 20px 0px;
}
.free-items .blue-text{
    color: #00afef;
    font-size: 16px;
    
}
.free-items .blue-text-b{
    color: #00afef;
    font-size: 16px;
    font-weight: bold
    
}
.free-items table{
    margin-bottom: 5px;
}
.free-items .table tbody tr:last-child td{
    padding-bottom: 0px!important;
}
.free-items .table.table-totals tr{
    border: 0px;
}
.free-items thead, tbody, tfoot, tr, td, th{
    border-bottom: none;
}


.watchdataToken, .usbToken {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 8px;
    background-color: #fff;
    position: relative;
    margin-left: 0px!important;
}
.tokenBorder {
    border: 1px solid #00afef !important;
    box-shadow: 0px 0px 10px 0px rgba(0,0,225,0.14);
}
.tokenSection input {
    margin-top:5px;
}
.tokenSection img {
    height:40px;
    position:absolute;
    right:10px;
}
.tokenSection label {
    font-weight: normal;
    text-align: left !important;
    margin-bottom:0px;
    margin-left: 10px;
    line-height:19px;
}
.filter-box label {
    vertical-align: top;
    margin-right: 10px;
}
.tokenBold {
    font-weight: bold;
}
.tokenSection input {
    margin-top: 5px;
}
.tokenSection .usbToken:active, .tokenSection .usbToken:hover, .tokenSection .usbToken:focus{
    border:1px solid #3e3f95
}
.tokenselect{
    width: 100%
}




 /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact .info-container {
    background-color: var(--color-primary);
    height: 100%;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  }

  .contact .info-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
  }

  .contact .info-item:last-child {
    margin-bottom: 0;
  }

  .contact .info-item i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
  }

  .contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
  }

  .contact .info-item:hover i {
    background: #fff;
    color: var(--color-primary);
  }

  .contact .php-email-form {
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 0 10px 10px 0;
  }

  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }

  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }

  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }

  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }

  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form input[type=number],
  .contact .php-email-form input[type=password],
  .contact .php-email-form textarea {
    padding: 12px 15px;
  }

  .contact .php-email-form input[type=text]:focus,
  .contact .php-email-form input[type=email]:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--color-primary);
  }

  .contact .php-email-form textarea {
    padding: 10px 12px;
  }

  .contact .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 14px 45px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }

  .contact .php-email-form button[type=submit]:hover {
    background: rgba(0, 131, 116, 0.8);
  }

  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }


  /*----------------------------------------------------------
  # Crypto Token Toggle button
  --------------------------------------------------------------*/

  .switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .toggle:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 9px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .toggle {
    background-color: #2196F3;
  }
  
  input:focus + .toggle {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .toggle:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
  }
  
  /* Rounded sliders */
  .toggle.round {
    width: 60px;
    height: 30px;
    border-radius: 34px;
  }
  
  .toggle.round:before {
    border-radius: 50%;
  }


  /*===================================
  Payment Details style
  ==================================*/
    .heading1 h4{
        color: #000;
        font-weight: bold;
        font-style: normal;
        font-family: var(--font-family-title);
    }

    .price-details{
        background-color: #fff;
        border-radius: 20px;
    }

    
   

    .heading1 {
        display: flex; /* Use flexbox to align children horizontally */
        justify-content: space-between;
        align-items: center; /* Vertically center children */
        border-radius: 20px 20px 0 0;
        background-color: #cdcdd1;
        padding: 15px;

    }

    .heading2 {
        display: flex; /* Use flexbox to align children horizontally */
        justify-content: space-between;
        align-items: center; /* Vertically center children */
        background-color: #cdcdd1;
        padding: 10px;

    }
    .heading1 .buttonContainer{
        float: right;
    }
    .form-wrap1 {
        padding: 1px;
    }

    .form-wrap1 .form-group{
        /* padding: 0 15px 0 15px; */
        display: flex; /* Use flexbox to align children horizontally */
        justify-content: space-between;
        align-items: center; /* Vertically center children */
    }

   
    .form-wrap .form-group{
         padding: 0 15px 0 15px; 
        display: flex; /* Use flexbox to align children horizontally */
        justify-content: space-between;
        align-items: center; /* Vertically center children */
    }

    /*====== Pop up === */
    .popup {
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
            display: none;
        }
        .popup-content {
            background-color: white;
            margin: 10% auto;
            padding: 20px;
            border: 1px solid #888888;
            width: 30%;
            font-weight: bolder;
        }
        .popup-content button {
            display: block;
            margin: 0 auto;
        }
        .show {
            display: block;
        }


  /*=======client carousel ========*/
  
 

  
  
  @keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translatex(-1000%)}
  }



  .note{
    background-color: #cdcdd1;
    font-size: 11px;
    padding: 5px;
    display: flex;
    text-align: start;
    border-radius: 5px;
  }






  .hero {
    background-color: #fff;
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
  }
  
  .hero__title {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    z-index: 1;
  }
  
  .cube {
    position: absolute;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    border: solid 1px #003298;
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    -webkit-animation: cube 12s ease-in forwards infinite;
            animation: cube 12s ease-in forwards infinite;
  }
  .cube:nth-child(2n) {
    border-color: #0051f4;
  }
  .cube:nth-child(2) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    left: 25vw;
    top: 40vh;
  }
  .cube:nth-child(3) {
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
    left: 75vw;
    top: 50vh;
  }
  .cube:nth-child(4) {
    -webkit-animation-delay: 6s;
            animation-delay: 6s;
    left: 90vw;
    top: 10vh;
  }
  .cube:nth-child(5) {
    -webkit-animation-delay: 8s;
            animation-delay: 8s;
    left: 10vw;
    top: 85vh;
  }
  .cube:nth-child(6) {
    -webkit-animation-delay: 10s;
            animation-delay: 10s;
    left: 50vw;
    top: 10vh;
  }
  
  @-webkit-keyframes cube {
    from {
      transform: scale(0) rotate(0deg) translate(-50%, -50%);
      opacity: 1;
    }
    to {
      transform: scale(20) rotate(960deg) translate(-50%, -50%);
      opacity: 0;
    }
  }
  
  @keyframes cube {
    from {
      transform: scale(0) rotate(0deg) translate(-50%, -50%);
      opacity: 1;
    }
    to {
      transform: scale(20) rotate(960deg) translate(-50%, -50%);
      opacity: 0;
    }
  }


  .progress-container {
    position: relative;
  }
  
  .progress-bar {
    height: 10px;
    background-color: #fff;
    margin-top: 10px;
  }
  
  .progress {
    width: 0;
    height: 100%;
    background-color: #007bff; /* Change this to your desired progress bar color */
    transition: width 0.3s ease-in-out;
  }
  


  /*upload document css */

  .order-history-bar1 table {
    border-collapse: collapse;
    width: 100%;
}

.order-history-bar1 th, td {
    text-align: left;
    padding: 8px;
    width: 50%; /* Set both columns to be of equal width */
    font-style: normal !important;
}
.order-history-bar1 h4,
.order-history-bar1 h3{
    font-style: normal !important;
    font-family: sans-serif, Helvetica;
}

/* CSS */
.important-note {
padding-left: 30px;
text-align: left;
vertical-align: top;
}

.note-header h4 {
font-size: 18px;
padding-left: 10px;
margin-bottom: 10px;
color: #fff;
}

.note-content p {
font-size: 16px;
margin-bottom: 8px;
color: #fff;
padding-left: 20px;
font-style: normal !important;
}

.note-content ul {
list-style-type: disc;
margin-left: 20px;
}

.note-content li {
font-size: 14px;
font-style: normal !important;
margin-bottom: 4px;
}


   /****** IGNORE ******/
   .copyright, .file-upload {
    display: block;
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
    width: 60%;
    min-width: 300px;
  
}

  
  .copyright a {
    text-decoration: none;
    color: #EE4E44;
  }
  
  .file-upload .file-select {
    display: block;
    border: 2px solid #dce4ec;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
  }
  
  .file-upload .file-select .file-select-button,
  .file-upload .file-select .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
  }
  
  .file-upload .file-select-button {
    background: var(--bg_color1 );
    color: var(--white);
  }
  
  .file-upload.active .file-select {
    border-color: #3fa46a;
  }
  
  .file-upload.active .file-select .file-select-button {
    background: #3fa46a;
    color: #FFFFFF;
  }
  
  .file-upload .file-select input[type="file"] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
  }
  
  .file-select-disabled {
    opacity: 0.65;
  }
  
  .file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #dce4ec;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
  }
  
  .file-select-disabled:hover .file-select-button {
    background: #dce4ec;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
  }
  
  .file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
  }

 

  

  /* Add styles for the popup container and content */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    overflow: auto;
}

.popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
}

/* Style the close button */
.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
}

/* Style the view button */
.button-container {
    display: inline-block; /* Display the buttons in one line */
    vertical-align: middle; /* Align buttons vertically in the middle */
    margin-left: 10px; /* Add some margin between the buttons and the file select */
    display: none;
    text-align: left; /* Align buttons in the left horizontally */
}


/* Add any other styling you need for your buttons here */
.delete-btn {
    background-color: #C70000;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 5px; /* Add some spacing between buttons */
    border: none;
    cursor: pointer;
}

.view-btn {
    background-color: #337AB7;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}



/*progress bar */
.step-wizard {
    
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step-wizard-list{
    background: #fff;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    color: #333;
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
}

.step-wizard-item{
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive:1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 170px;
    position: relative;
}
.step-wizard-item + .step-wizard-item:after{
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: #21d4fd;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}
.progress-count{
    height: 40px;
    width:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index:10;
    color: transparent;
}
.progress-count:after{
    content: "";
    height: 40px;
    width: 40px;
    background: #21d4fd;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
}
.progress-count:before{
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
}
.progress-label{
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    margin-top: 10px;
}
.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before{
    display: none;
}
.current-item ~ .step-wizard-item .progress-count:after{
    height:10px;
    width:10px;
}
.current-item ~ .step-wizard-item .progress-label{
    opacity: 0.5;
}
.current-item .progress-count:after{
    background: #fff;
    border: 2px solid #21d4fd;
}
.current-item .progress-count{
    color: #21d4fd;
}




.left-column {
    padding-top: 20px;
  }

  .right-column {
    flex: 8;
    padding-top: 20px;
  }

  .quick-links {
      background-color: #111962;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    
  }

  .quick-links .links{
      background-color: #FFFFFF;
      padding: 10px;
      border-radius: 5px;
      height: 300px;
      padding-bottom: 30px;
      overflow-x: hidden;
  }

  .quick-links .links .link-container{
    padding: 2px;
    border-bottom: 1px solid #d1d1d1;
    display: flex;
    align-items: center;
  }


  .link-container i {
    padding-left: 10px;
    margin-right: 15px; /* Adjust spacing between image and link */
   
  }


  .quick-links .links .link-container:hover{
    background-color: var(--bg_color1);
    color: #fff  !important;
    border-radius: 5px;
  }

  .quick-links .links .link-container:hover a:hover{
    color: #fff;
    text-decoration: none;
  }

  .quick-links a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  

  .title-links {
  color: var(--title-1);
  font-family:  var(--font-family-title);
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-align: start;
  display: block;
  margin-bottom: 20px !important;
  padding-bottom: 15px !important;
  position: relative;
  font-style: normal;
}


.title {
    color: var(--bg_color1);
    font-family:  var(--font-family-title);
    font-size: 25px;
    line-height: 1.2;
    font-weight: bold;
    text-align: start;
    display: block;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    position: relative;
    font-style: normal;
  }

.title-links:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 4px;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(0, 175, 239, 1) 0%, rgba(62, 64, 149, 1) 100%);
  border-radius: 2px;
}

.title:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 4px;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(0, 175, 239, 1) 0%, rgba(62, 64, 149, 1) 100%);
    border-radius: 2px;
  }

.title-links:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  left: 0;
  bottom: 0px;
  margin: 0 auto;
  background: #FFFFFF;
  -webkit-animation: animateRun1 2s infinite linear;
  animation: animateRun1 2s infinite linear;
}
.title:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    left: 0;
    bottom: 0px;
    margin: 0 auto;
    background: #FFFFFF;
    -webkit-animation: animateRun1 2s infinite linear;
    animation: animateRun1 2s infinite linear;
  }

@keyframes animateRun1 {
  0% {
      left: 15%;
      margin-left: -40px
  }

  50% {
      left:  15%;
      margin-left: 40px
  }

  100% {
      left:  15%;
      margin-left: -40px
  }
}


.link-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  
  .link-container span{
    font-size: 20px;
    padding-top: 0;
    padding-right: 10px;
    padding-left: 10px;
    background-color: var(--bg_color1);
    color: #fff;
    border-radius: 50%;
  }


  
.bannersec .owl-carousel .owl-text {
 font-family: 'Roboto', sans-serif !important;
 font-size: 18px !important;
 height: 380px !important;  
}    

.owl-carousel .owl-dots {
  margin-bottom: 10px;
  padding-top: 20px;

}   

#pricing .owl-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

#pricing .owl-prev,
#pricing .owl-prev .disabled{
    position: absolute;
    left: -60px;
}
 #pricing .owl-prev .fa-solid{
    background: #e0dbdb;
    border-radius: 50%;
    padding: 6px 10px;
    font-size: 20px;
 }

 #pricing .owl-next .fa-solid{
    background: #e0dbdb;
    border-radius: 50%;
    padding: 6px 10px;
    font-size: 20px;
 }


#pricing .owl-next,
#pricing  .owl-next .disabled{
    position: absolute;
    right: -40px;
}



@media only screen and (max-width: 768px)  {
    /* a lot of styles for small screens */
    #pricing .owl-next,
    #pricing  .owl-next .disabled{
        position: absolute;
        right: 0px;
    }

    #pricing .owl-prev,
    #pricing .owl-prev .disabled{
        position: absolute;
        left: -20px;
    }
  }

.banL, .banR{
    display: none;
}



.bannersec .owl-carousel .owl-dots .owl-dot.active span {
background-color: teal !important;
border-color: #ccc !important;
}

.bannersec .owl-carousel .owl-carousel-img {
height: 100px !important;
}

@media only screen and (max-width: 800px)  {
  /* a lot of styles for small screens */
.bannersec .owl-carousel .owl-nav {
display: visible !important;
}    
}

@media only screen and (min-width: 800px)  {
  /* a lot of styles for big screens */
.bannersec .owl-carousel .owl-nav {
display: visible !important;
}    
}

/* --Product Description-*/
#more0, #more1,#more1,#more2,#more3,#more4,#more5 {display: none;}
#more0 p,
#more1 p,
#more2 p,
#more3 p,
#more4 p,
#more5 p
{
    line-height: 1.3;
}
#more button{
    width: 100px;
}

.read-more{
    border-radius: 30px;
    padding: 8px 0;
    border: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 450;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(90deg, #2a5383, #113257);
    margin: 10px 0 10px 0;
    color: #fff;
}


.read-more:hover {
    background: #fff !important; /* Change the background on hover */
    cursor: pointer; /* Add a pointer cursor on hover */
    color: var(--bg_color1) !important;
    border: 1px solid var(--bg_color1) !important;
}



.more-plans{
    border-radius: 5px;
    padding: 8px 0;
    border: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    background: var(--title-1);
    margin: 10px 0 10px 0;
    color: #fff !important;
}


.more-plans:hover {
    background: #fff !important; /* Change the background on hover */
    cursor: pointer; /* Add a pointer cursor on hover */
    color: var(--bg_color1) !important;
    font-weight: bold !important;
    border: 1px solid var(--bg_color1) !important;
}


  

.links .row {
    display: flex;
    justify-content: space-between;
  }

  .links .card {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    padding: 15px 15px 0 15px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
  }

  .links .card1 {
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
  }

  .links .card1 p{
    font-size: 18px;
  }


  .links .card h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .links .price {
    font-size: 20px;
    color: var(--title-1);
    font-weight: bold;
    margin-bottom: 10px;
  }

  .result .price {
    font-size: 20px;
    color: var(--title-1);
    font-weight: bold;
    margin-bottom: 10px;
  }


  :root {
    --gray: #34495e;
    --darkgray: #2c3e50;
  }
  
 .dropdown-container select {
    /* Reset Select */
    appearance: none;
    outline: 10px red;
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: #000;
    background-color: #c5c5c5;
    background-image: none;
    cursor: pointer;
  }
  /* Remove IE arrow */
 .dropdown-container select::-ms-expand {
    display: none;
  }
  /* Custom Select wrapper */
  .dropdown-container .select {
    position: relative;
    display: flex;
    width: 12em;
    height: 2em;
    border-radius: .25em;
    overflow: hidden;
  }
  /* Arrow */
 .dropdown-container .select::after {
    content: '\25BC';
    position: absolute;
    top: -12px;
    right: 0;
    padding: 1em;
    background-color: #c5c5c5;
    transition: .25s all ease;
    pointer-events: none;
  }
  /* Transition */
.dropdown-container .select:hover::after {
    color: #f39c12;
  }

.dropdown-container{
    margin-top: 20px;
}


/*toggle button css for usb token */
.dropdown-container input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
    margin-top: 0 !important ;
  }
  
  .dropdown-container label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: grey;
    border-radius: 100px;
    position: relative;
  }

  .dropdown-container .select1 {
    position: relative;
    display: flex;
    width: 12em;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
  }
  
  .dropdown-container label:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
  }
  
.dropdown-container input:checked + label {
    background: #bada55;
  }
  
  .dropdown-container input:checked + label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
  }
  
  label:active:after {
    width: 30px;
  }

  

  .links .read-more {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
  }

  
  .links .read-more:hover {
    border: 1px ;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
  }


  .video-container {
    flex: 1;
    padding: 10px;
    
  }

  .vidoe-container img{
    height: 150px;
  }

  .video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .content {
    flex: 1;
    padding: 15px;
  }

  .content .read-more {
    background: transparent !important;
    color: var(--bg_color1);
    border: none;
    padding: 2px 6px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: none !important;
  }

  .content .read-more:hover{
    background: transparent; /* Change the background on hover */
    cursor: pointer; /* Add a pointer cursor on hover */
    color: var(--title-1) !important;
    padding: 2px 6px;
    border: none !important;
  }

    .tutorial-cards{
      display: flex;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin: 10px;
      overflow: hidden;
      height: 165px !important;
  }


  /* why choose us */

  .icon-container {
    flex: 1;
    padding: 10px;
    
  }

  .icon-container img {
    width: 40%;
    height: 40%;
    padding: 10px;
    border-radius: 10px;
  }

  .content {
    flex: 1;
    padding: 15px 0px 15px 0px;
  }
  .content a:hover{
    background: transparent !important;
  }
    .about-cards{
      display: flex;
      border-radius: 5px;
      margin: 10px;
      overflow: hidden;
      height: 140px !important;
  }

  .about img{
    border-radius: 20px;
  }
  /*Why choose us */
  section {
    padding: 60px 0;
}


ul {
    margin: 0;
    color: #000;
}
img {
max-width: 100%;
height: auto;
}
.section_title {
margin-bottom: 40px;
}



.brand_border .fa.fa-minus {
color: #fff;
font-size: 8px;
height: 2px;
background: #F8C01B none repeat scroll 0 0;
width: 100px;
}
.brand_border .fas.fa-handshake {
font-size: 14px;
color:#000000;
}


.section_title p {
color: #333333;
font-size: 14px;
line-height: 25px;
padding: 14px 0;
}


#service .single_service {
padding: 10px;
border-radius: 5px;
margin-bottom: 20   px;
}



#service .icon {
border: 1px solid #666;
border-radius: 5%;
color: var(--bg_color1);
font-size: 25px;
overflow: hidden;
text-align: center;
text-decoration: none;
width: 50px;
}


#service .icon:hover {
    color: var(--title-1);
    border: 1px solid var(--title-1);
}

#service .single_service .single_service-left {
padding-right: 10px;
}

.single_service-heading {
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
color: #000;
}

.single_service-body p {
font-size: 18px;
line-height: 25px;
}

.single_service-left {
display: table-cell;
vertical-align: top;
}
.single_service-body {
color: #333333;
display: table-cell;
vertical-align: top;
}
.hvr-curl-top-right {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
position: relative;
}


/*      */
.accordion {
    background-color: var(--bg_color1);
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }

  
.links .active, .accordion:hover {
    background-color: var(--bg_color1);
  }


 .links .accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
 .links .active:after {
    content: "\2212";
  }
  
.links  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
/* suggestion */
.select-type {
    background-color: var(--bg_color1);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 5px;
  
}

.select-type .links{
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    height: 300px;
    overflow-x: auto;
}

.select-type .links .link-container{
    padding: 5px;
    border-bottom: 1px solid #d1d1d1;
  }


.select-type .card1 {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Adjust the margin as needed to provide spacing between cards */
    
}

.select-type .card1 input[type="checkbox"] {
    margin-right: 5px;
    width: 14px;
    height: 14px;
    
}

.select-type .card1 input[type="radio"] {
    margin-right: 5px;
    width: 16px;
    height: 16px;
    
}

.select-type .card1 img {
    height: 40px; /* Set a fixed height */
    width: 40px; /* Set a fixed width */
    margin: 0 10px 0 10px;
    background-color: #dddddd;
    padding: 5px;
    border-radius: 50%;
}
.select-type .card1 label {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
} 

.result .type{
    background-color: #c5c5c5;
    color: var(--bg_color1);
    padding: 2px 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
  }
  
.result  a:hover, a:active {
    background-color: var(--bg_color1);
    color: #fff;
  }



  /* types of Signature accordian */
 
  .type {
    cursor: pointer;
    padding: 10px;
    padding-left: 15px;
    width: 100%;
    text-align: left;
    outline: none;
    border: none;
    border-bottom: 1px solid #b9b9b9;
    border-radius: 5px 0 5px 0;
    font-size: 18px;
    transition: 0.4s;
  }


  .custom-select {
    position: relative;
    font-family: Arial;
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }
  
  .select-selected {
    background-color: DodgerBlue;
  }
  
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }
  
  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
  }
  
  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
  }
  
  /*style items (options):*/
  .select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }
  
/*---Proxey/epass-2003 token Page style--- */

.token p{
    font-family: Inter, sans-serif;
    font-weight: 500;
}

.token h4{
    font-family: Inter, sans-serif;
    font-weight: 600;
    line-height: 28.4px;
    color: var(--bg_color1);
}

.token img{
    border: 1px solid #e7e7e7;
    box-shadow: -1px 1px 1px 1px #e7e7e7;

}

.token .price{
    font-size:25px;
    font-family: Inter, sans-serif;
    color: var(--title-1);
    text-align: center;
    margin: 20px;
    font-weight: bold;
}

.token .links {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*----Payment Page -----*/
.product_des{
    display: flex;
    background-color: #e5f4fd;
    padding: 10px;
    border-radius:5px ;
    border: 1px solid var(--bg_color1);
    margin-bottom: 20px;
}

.product_des svg{
    font-size: 25px;
    color: var(--bg_color1);
}
.user-text{
    font-size: 25px;
}

.make-payment .user-des-2  {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 5px;
}

.make-payment .heading-sum {
    color: var(--bg_color1);
    background: var(--bg_color1);
    border-radius: 5px;
}

.make-payment .float-end label{
    font-size: 15px;
    color: #fff;
}

.make-payment .form-group {
    margin-bottom: 10px;
    width: 100%;
}

.make-payment .user-des-2 .title .edit-save-btn {
    font-size: 15px;
    cursor: pointer;
    background: linear-gradient(90deg, #3e3f95, #20216a);
    padding: 5px 10px;
    border-radius: 3px;
}

.make-payment .user-des-2 .title .edit-save-btn svg {
    width: 15px;
    height: 15px;
}

.make-payment .user-des-2 p {
    color: white;
    margin-bottom: 0;
}

.payment-section {
    background: #f6f6f6;
    box-shadow: 0 6px 25px rgba(0, 0, 0, .07);
    padding: 20px 25px;
}

#desc {
    display: inline; /* Set display property to inline */
}

.flash-container {
    background-color: #f8d7da;
    color: #333;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ae313c;
    border-radius: 4px;
    animation: blink 2s infinite;
}
.flash-container p{
    padding: 0px;
    margin-bottom: 0px;
    color:#ae313c;
   
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}




select option{ 
     background:var(--bg_color1);
     margin: 1px 0px;
     color: #fff;
    }

.doc-details{
    padding: 10px;
    background-color: #d1e7dd;
    border: 1px dotted #0f5132;
}
.doc-details h4{
    font-size: 18px;
    color:#0f5132;
    font-weight: 700;
}


/*order List page design */
.order-list {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 1px 1px 10px 4px #e5e6f5;
    border: none;
  }
  
  .order-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .order-list ul li {
    font-size: 18px;
    padding: 10px 8px;
    border-bottom: 1px solid var(--bg_color1);
    display: flex;
    align-items: center;
    
  }
  .order-list ul li a{
    color: var(--bg_color1) !important;
    font-weight: 600;
  }

  .order-list ul li a:focus{
    outline: none !important; /* Remove the default focus outline */
    background-color: transparent !important; /* Remove the default background color */
  }

  .order-list ul li .icon{
    width: 10%;
    color: var(--bg_color1);
   
  }
  
 
  .order-list ul li:last-child {
    border-bottom: none; /* Remove border from last item */
  }
  
  .order-list ul li:hover {
    background-color: #c2e5f5;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .order-list ul li i{
   font-size: 18px;
   margin-right:10px
  }
  .dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 20px;
}



.user-profile {
    display: flex;
    align-items: center;
}

.initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg_color1);
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.greeting {
    font-size: 16px;
    font-weight: bold;
}
.greeting h3{
    font-size: 25px;
    font-weight: bold;
    color: var(--bg_color1);
}

.dashboard-header .right-column1 img {
    width: 50px; /* Adjust the size of the image as needed */
    height: 50px;
    border-radius: 50%;
}


.transaction-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 20px;
}

.transaction-box h2 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;

}
.table-container {
    overflow-x: auto; /* Enable horizontal scrolling */
    max-width: 100%; /* Adjust the maximum width as needed */
}
.transaction-table {
    width: 100%;
    border-collapse: collapse;
   overflow-x: auto; 
}

.transaction-table th, .transaction-table td {
    border: 1px solid #ccc;
    padding: 8px;
    width: fit-content; /* Set width based on content */
}

.transaction-table th {
    background-color: #f0f0f0;
    text-align: left;
}

/* order Description */

.order-description{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 0px;
}
.desc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.detail-heading{
    background-color: #ccc;
    padding: 5px;
    border-radius:10px 10px 0 0 ;
    display: flex;
    align-items: center;
}

.detailheading{
    background-color: #ccc;
    padding: 5px;
    display: flex;
    align-items: center;

}

.order-description .desc-title{
    font-size: 14px;
    color: #000;
    padding-top: 10px ;
    padding-bottom:  10px ;
}

.order-description .details{
    font-weight: bold;
    font-size: 13px;
    padding-top: 10px;
    padding-bottom:  10px ;
  
}

.order-description .status-btn-completed{
    background-color: #008000;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.order-description .status-btn-pending{
    background-color: #dc3545;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.equal-width-span {
    display: inline-block;
    width: 100%;
}
.click-here-btn{
    text-decoration: none;
    color:blue;
    display: flex;
    align-items: center
}
.click-here-btn:hover{
    text-decoration: none;
    color:red;
    display: flex;
    align-items: center;
    background: transparent;
}


.order-description .document-status-completed{
    color: #008000;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.order-description .document-status-pending{
    color: #dc3545;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.note-orders{
    font-size: 13px;
    color: #000;
    padding-top: 5px ;
    padding-bottom:  5px ;
}

.odr-inpt{
    border: 1px solid #afaeae;
    background: #e9ecef;
    padding: 3px;
    display: inline-block;
    width: 100%;
    height: 32px;
}

.delete-document-btn{
    color: red;
    font-size: 13px;
    background-color: #fff;
    border: none;
  }

  .delete-document-btn:hover{
    color: red;
    font-size: 13px;
  }


  .error {
    color: red;
  }

  .steps-sec {
    float: left;
    width: 100%;
    margin: 0;
    padding: 00px 0 0;
}


/* Mobile Styles */
@media (max-width: 767px) {
    .desc-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .order-description .box {
        margin-top: 10px;
    }

    .order-description .row {
        flex-direction: column;
    }

    .order-description .col-1,
    .order-description .col-2,
    .order-description .col-3,
    .order-description .col-4,
    .order-description .col-5,
    .order-description .col-6 {
        flex: 1;
        width: 100%;
        margin-bottom: 10px;
    }

    .order-description .col-1 {
        border-left: none;
    }

    .order-description .desc-title {
        text-align: left;
    }

    .order-description .details {
        text-align: left;
    }

    .order-description .status-btn-completed,
    .order-description .status-btn-pending {
        text-align: left;
    }

    .order-description .note-orders {
        text-align: left;
    }

    .order-description .odr-inpt {
        width: 100%;
    }
}









.steps1 {
    max-width: 1000px;
    margin: 15px auto 0;
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-bx1 {
    /* border: 2px solid #000; */
    text-align: center;
    position: relative;
}

.step-bx1.done .step-count::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="hsl(120, 42%, 54%)" class="bi bi-check2-square" viewBox="0 0 16 16"> <path d="M3 14.5A1.5 1.5 0 0 1 1.5 13V3A1.5 1.5 0 0 1 3 1.5h8a.5.5 0 0 1 0 1H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V8a.5.5 0 0 1 1 0v5a1.5 1.5 0 0 1-1.5 1.5H3z"/> <path d="m8.354 10.354 7-7a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0z"/></svg>');
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 100%;
    color: hsl(120, 42%, 54%);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.step-bx1.done::before {
    background-color: hsl(120, 42%, 54%);
}

.step-bx1.done .step-des {
    color: hsl(120, 42%, 54%);
}

.step-bx1.active .step-count {
    color: #00afef;
    /*border: 5px solid var(--blue);*/
}

.step-bx1.active .step-des {
    color: #00afef;
}

.step-bx1::before {
    width: 75px;
    position: absolute;
    height: 1px;
    display: block;
    background-color: #e0e0e0;
    /* transform: translate(-95px, 21px); */
    content: "";
    top: 40%;
    left: 75%;
    border-radius: 3px;
}

.step-bx1:last-child::before {
    content: none;
}

.step-bx1 .step-count {
    height: 65px;
    width: 65px;
    border-radius: 100%;
    margin: 0 auto 5px;
    /*background-color: #fff;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    position: relative;
    padding: 10px
}

.step-bx1 .step-des {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    line-height: normal;
}


