@font-face {
    font-family: 'LoveloLineLight';
    src: url(../webfonts/LoveloLineLight.otf);
}


* {
    padding    : 0;
    margin     : 0;
    outline    : none;
    font-family: Lato;
    box-sizing : border-box;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}

body {
    background-color: #101010;
}

/* Hide Arrows From Input Number in Chrome, Safari, Edge, Opera  */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin            : 0;
}

/* Hide Arrows From Input Number in Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#wrapper {
    position   : relative;
    padding-top: 110px;
}

/* Bound style */
.col-primary {
    color: #f0c231;
}

.col-dark {
    color: #101010;
}

.bg-yellow {
    background-color: #f0c231;
}

.bg-grey {
    background-color: #928d7e;
}

.bg-darkgrey {
    background-color: #575757;
}

.bg-white {
    background-color: #ffffff;
}

/* header style */
.header-v1 {
    position        : absolute;
    top             : 0;
    left            : 0;
    width           : 100%;
    background-color: #101010;
    z-index         : 9;
}

header.header-v1-fixed {
    position        : fixed;
    background-color: #fff;
    box-shadow      : 0 0 3px 4px rgba(0, 0, 0, 0.1);
    top             : -90px;
}

header.header-v1-fixed.header-slidein {
    transition: all 0.3s;
    top       : 0;
}

.header-v1 .header-v1-logo {
    display: block;
}

.header-v1 .header-v1-fixed-logo {
    display: none;
}

.header-v1.header-v1-fixed .header-v1-logo {
    display: none;
}

.header-v1.header-v1-fixed .header-v1-fixed-logo {
    display: block;
}

.header-holder {
    position       : relative;
    max-width      : 1360px;
    margin         : 0 auto;
    padding        : 36px 30px;
    display        : flex;
    justify-content: space-between;
    z-index        : 6;
}

.header-v1-fixed .header-holder {
    padding: 20px 30px;
}

.hamburger {
    display            : none;
    padding            : 0;
    /* background-color: #292929; */
    border-radius      : 8px;
    cursor             : pointer;
    width              : 38px;
}

.hamburger.hamopen {
    position: fixed;
    right   : 30px;
    top     : 20px;
}

.ham-bar {
    background-color   : #fff;
    /* width           : 100%; */
    height             : 4px;
    transition         : all 0.5s;
    transform-origin   : left center;
}

header.header-v1-fixed.header-slidein .hamburger .ham-bar {
    background-color: #101010;
}

header.header-v1-fixed.header-slidein .hamburger.hamopen .ham-bar {
    background-color: #fff;
}

.ham-bar:nth-child(2) {
    margin: 9px 0;
}

.hamburger.hamopen .ham-bar:first-child {
    transform: rotate(44deg);
}

.hamburger.hamopen .ham-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.hamopen .ham-bar:last-child {
    transform: rotate(-44deg);
}

.header-v1-fixed .hamburger {
    color           : #101010;
    background-color: transparent;
}

.logo {
    max-width: 239px;
    display  : block;
    width    : 100%;
}

.hamburger {
    display  : none;
    color    : #fff;
    font-size: 30px;
    position : relative;
    z-index  : 6;
}

.navwrap ul {
    position   : relative;
    display    : block;
    margin     : 0;
    padding-top: 8px;
}

.navwrap li {
    display: inline;
}

.navwrap li a {
    padding    : 0 28px;
    color      : #fff;
    font-weight: 600;
    font-size  : 15px;
    transition : color 0.3s;
    position   : relative;
}

.navwrap li a::before {
    position        : absolute;
    content         : '';
    width           : 0;
    height          : 1px;
    background-color: #f0c231;
    transition      : all 0.5s;
    bottom          : -8px;
    left            : 20px;
}

.navwrap li a:hover::before,
.navwrap li a.active::before {
    width: 26px;
    left : calc(100% - 50px);
}

.header-v1-fixed .navwrap li a {
    color: #101010;
}

.navwrap li a:hover,
.navwrap li a.active {
    color: #f0c231;
}

.navwrap li a.link-button {
    padding         : 15px 20px;
    border-radius   : 6px;
    background-color: #f0c231;
    color           : #101010;
    margin-left     : 10px;
}

.navwrap li a.link-button::before {
    content: none;
}

.mobilenavwrap {
    position  : fixed;
    right     : -320px;
    top       : 0;
    bottom    : 0;
    display   : none;
    transition: all 0.4s;
}

.mobilenavwrap.active {
    right: 0;
}

.mobilenav {
    position        : relative;
    width           : 300px;
    height          : 100%;
    background-color: #f0c231;
    overflow        : auto;
    box-shadow      : 0 0 10px 0px rgba(0, 0, 0, 0.1);
}

.mobilenav ul {
    padding-top: 100px;
}

.mobilenav li {
    width: 100%;
}

.mobilenav li a {
    padding    : 12px;
    text-align : center;
    width      : 100%;
    display    : block;
    color      : #101010;
    font-size  : 16px;
    font-weight: 600;
}

.mobilenav li a.link-button {
    width           : 140px;
    margin          : 20px auto 0;
    background-color: #fff;
    border-radius   : 6px;
}

/* Home section style */
.yt-section {
    width   : 100%;
    position: relative;
    z-index : 1;
}

.yt-sectionwrap {
    width    : 100%;
    padding  : 0 60px;
    max-width: 1360px;
    margin   : 0 auto;
}

.yt-intro .yt-sectionwrap {
    height    : calc(100vh - 112px);
    min-height: 720px;
}

.yt-sectionholder {
    display    : flex;
    height     : 100%;
    align-items: center;
}

.inverse {
    flex-direction: row-reverse !important;
}

.section-textwrap {
    width      : 50%;
    padding    : 150px 50px 150px 0;
    flex-shrink: 0;
}

.yt-intro .section-textwrap {
    max-width: 500px;
    position : relative;
    z-index  : 4;
}

.section-textwrap h1 {
    font-size  : 60px;
    color      : #fff;
    font-weight: 600;
}

.yt-intro .section-textwrap h1 {
    font-size  : 56px;
    line-height: 56px;
}

.section-textwrap p {
    color      : #fff;
    font-size  : 20px;
    padding    : 10px 0;
    line-height: normal;
}

.dyn-text {
    overflow: hidden;
    position: relative;
    height  : 75px;
    display : block;
}

.dyn-text li {
    height       : 45px;
    margin-bottom: 45px;
    display      : block;
}

.introtextflip {
    -webkit-animation: introtextflip 6s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    animation        : introtextflip 6s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}

.section-textwrap .section-text-btn {
    padding-top: 20px;
    position   : relative;
}

.section-textwrap .section-text-btn a {
    padding      : 15px 68px 15px 36px;
    border-radius: 6px;
    color        : #101010;
    font-size    : 15px;
    font-weight  : 500;
    display      : inline-block;
    position     : relative;
    transition   : all 0.3s;
}

.section-textwrap .section-text-btn a::before {
    position        : absolute;
    content         : '';
    background-image: url(../images/yt-btn-icon.png);
    width           : 32px;
    height          : 30px;
    right           : 20px;
    top             : 12px;
    transition      : all 0.4s;
}

/* .section-textwrap .section-text-btn a::after {
    content         : "";
    position        : absolute;
    top             : 0;
    left            : 0;
    width           : 200px;
    height          : 200px;
    background-color: #494958;
    border-color    : transparent;
    border-radius   : 50%;
    transform       : translate(-10px, -70px) scale(0.1);
    opacity         : 0;
    z-index         : -1;
    transition      : transform 0.3s, opacity 0.3s, background-color 0.3s;
} */

.section-textwrap .section-text-btn a:hover {
    text-indent  : -4px;
    padding-right: 72px;
}

.section-textwrap .section-text-btn a:hover::before {
    right: 16px;
}

/* .section-textwrap .section-text-btn a:hover::after {
    opacity         : 1;
    transform-origin: 100px 100px;
    transform       : scale(1) translate(-10px, -70px);
} */

/* .section-textwrap .section-text-btn a:hover span {
    transform : scale(1.1);
    transition: all 0.3s;
    display   : block;
} */

.section-textwrap .subtext {
    font-size     : 20px;
    padding       : 0 0 10px;
    text-transform: uppercase;
}

.section-textwrap h2 {
    font-size  : 60px;
    color      : #101010;
    font-weight: 600;
    line-height: 60px;
}

.yt-economy .section-textwrap h2 {
    color      : #101010;
    line-height: 60px;
}

.section-textwrap h2 span {
    color: #fff;
}

.yt-markets .section-textwrap .subtext {
    color: #f0c231;
}

.yt-markets .section-textwrap h2 {
    color      : #fff;
    line-height: 60px;
}

.yt-markets .section-textwrap h2 span {
    color: #f0c231;
}

.intro-bannerwrap {
    position: absolute;
    right   : 0;
    width   : calc(50% + 100px);
    top     : 0;
    z-index : 3;
}


.intro-bannerani {
    position: relative;
    left    : 0;
    width   : 100%;
    top     : 0;
}

.section-calcwrap {
    padding : 100px 0;
    width   : 50%;
    position: relative;
}

.section-calcholder {
    position: relative;
    width   : 100%;
}

.section-calcholder>p {
    font-size  : 12px;
    line-height: normal;
    padding-top: 30px;
}

.section-calcholder .tag-text {
    font-size: 20px;
    margin   : 0;
    padding  : 10px 0 0;
}

.yt-calculator-wrap {
    width   : 100%;
    position: relative;
    display : flex;
}

.yt-calculator-form {
    border-top               : 1px solid #fff;
    border-left              : 1px solid #fff;
    border-bottom            : 1px solid #fff;
    border-bottom-left-radius: 6px;
    padding                  : 30px 60px;
    border-top-left-radius   : 6px;
    margin                   : 10px 0;
    width                    : 50%;
}

.yt-calculator-form .input-block {
    margin-bottom: 30px;
}

.yt-calculator-form .input-block select {
    background-color: transparent;
    border          : none;
    width           : 100%;
    border-bottom   : 1px solid #fff;
    padding         : 5px 0;
    font-size       : 30px;
}

.yt-calculator-form .calc-inputblock {
    margin-bottom: 30px;
    position     : relative;
}

.yt-calculator-form .calc-inputblock:last-child {
    margin-bottom: 0;
}

.yt-calculator-form .calc-inputblock input {
    background-color: transparent;
    border          : none;
    width           : 100%;
    border-bottom   : 1px solid #fff;
    padding         : 5px 42px 5px 0;
    font-size       : 34px;
    font-weight     : bold;
}

.yt-calculator-form .yt-subinout {
    display        : flex;
    justify-content: space-between;
    padding-top    : 3px;
}

.yt-calculator-form .yt-subinout .yt-subinputname {
    font-size  : 13px;
    font-weight: 600;
    color      : #101010;
}

.yt-calculator-form .yt-subinout select {
    background-color: transparent;
    border          : none;
    font-size       : 13px;
    font-weight     : 600;
    color           : #101010;
}

.calc-add-btnswrap {
    position : absolute;
    display  : flex;
    top      : 24px;
    right    : 0;
    font-size: 15px;
}

.calc-add-btnswrap div {
    cursor: pointer;
}

.calc-add-btnswrap .calc-minus-btn {
    margin-right: 15px;
}

.yt-calculator-info {
    padding         : 30px;
    background-color: #fff;
    border-radius   : 6px;
    width           : 50%;
}

.calc-logo {
    position: absolute;
    top     : 15px;
    right   : 15px;
    width   : 34px;
}

.val-info-block {
    margin-bottom: 26px;
}

.val-info-block:last-child {
    margin-bottom: 0;
}

.val-info-block h3 {
    font-size    : 36px;
    font-weight  : bold;
    margin-bottom: 0;
}

.val-info-block h3 span {
    font-weight: normal;
    font-size  : 24px;
}

.val-info-block p {
    color        : #565656;
    font-size    : 15px;
    margin-bottom: 0;
}


/* Partners section style */
.yt-section.yt-partners {
    padding: 100px 0;
}

.yt-partners-textwrap {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.yt-partners-textwrap h4 {
    text-transform: uppercase;
    font-size     : 20px;
}

.yt-partners-textwrap h3 {
    font-size  : 60px;
    font-weight: 600;
    line-height: 60px;
}

.yt-partnerinfo {
    width: 100%;
    padding: 15px;
}

.yt-partnerinfo img {
    display: block;
    margin : 0 auto;
    max-width: 140px;
    width: 100%;
}


/* Footer style */
footer {
    position: relative;
    width   : 100%;
}

.main-footer {
    width         : 100%;
    padding-top   : 100px;
    padding-bottom: 30px;
}

.footerholder,
.sub-footerholder {
    width    : 100%;
    padding  : 0 30px;
    max-width: 1360px;
    margin   : 0 auto;
}

.footer-logo {
    width: 100%;
}

.footer-logo img {
    /* max-width: 54px; */
    max-width: 120px;
}

.company-desc {
    font-size  : 32px;
    color      : #fff;
    line-height: 46px;
    /*padding    : 30px 0 50px;*/
    padding    : 30px 0 20px;
}

.yt-subscribewrap {
    position: relative;
    width   : 100%;
    /* background-color: #191919;
border-radius: 10px;
padding: 4px 10px; */
}

.yt-subscribewrap p {
    font-size: 16px;
    color    : #fff;
    margin-bottom: 5px;
}

.yt-subscribeform {
    width           : 100%;
    /*height          : 40px;*/
    /*background-color: #fff;*/
    /*display         : flex;*/
    /*border-radius   : 6px;*/
}

.yt-subscribeformlock{
    padding: 0 15px 0 0;
}

.yt-subscribeform input {
    border          : none;
    /* width           : calc(100% - 48px); */
    width: 100%;
    background-color: #fff;
    padding         : 5px 15px;
    margin-bottom: 10px;
border-radius: 6px;
font-size: 14px;
display: block;
}

.yt-subscribeform button {
    /* width           : calc(100% - 48px); */
    width: 100%;
    height          : auto;
    border          : none;
    background-color: #f0c231;
    border-radius   : 6px;
    color           : #000;
    font-size       : 14px;
    text-align      : center;
    padding: 4px 15px 6px;
}
.yt-subscribeform button img{
    height: 19px;
margin-left: 15px;
}

.yt-footerlinkswrap {
    display: table;
    margin : 0 auto;
}

.yt-footerlinkswrap h4, .yt_addresswap_title {
    color    : #92989f;
    font-size: 18px;
}

.yt-footerlinkswrap ul {
    margin: 15px 0;
}

.yt-footerlinkswrap li a {
    color      : #fff;
    font-size  : 16px;
    line-height: 36px;
    transition : color 0.3s;
}

.yt-footerlinkswrap li a:hover {
    color: #f0c231;
}

.yt-addresswrap {
    /* display: table; */
    display: flex;
    margin : 0 auto;
    justify-content: space-between;
}

.yt-addressblock {
    /* padding-bottom: 24px; */
    padding-bottom: 0;
    margin-top: 14px;
padding-right: 15px;
flex: 1 1 0px;
}

.yt-addressblock h5 {
    color        : #f0c231;
    margin-bottom: 2px;
    font-size: 18px;
}

.yt-addressblock p {
    color      : #fff;
    /* font-size  : 18px; */
    font-size: 16px;
    line-height: 24px;
}
.yt-addresswrap .yt-addressblock p:nth-child(3){
    display: none;
}
.yt-addressblock p a{
    color: #fff;
    transition: color 0.3s;
}
.yt-addressblock p a:hover{
    color: #f0c231;
}
.yt-addresswrap.yt-mailaddress .yt-addressblock{
    margin-top: 0;
}
.yt-addresswrap.yt-mailaddress{
    margin-bottom: 22px;
}
.yt-socialmedia-linkwrap {
    margin-top     : 80px;
    margin-bottom  : 15px;
    width          : 100%;
    position       : relative;
    display        : flex;
    justify-content: center;
    padding        : 42px 0 0;
}

.yt-socialmedia-linkwrap::before {
    position        : absolute;
    content         : '';
    width           : 80%;
    height          : 2px;
    background-color: #565656;
    top             : 0;
    left            : 50%;
    transform       : translateX(-50%);
}

.yt-socialmedia-linkwrap ul {
    display: flex;
    margin : 0;
}

.yt-socialmedia-linkwrap li a {
    padding   : 0px 24px;
    font-size : 30px;
    color     : #92989f;
    transition: color 0.4s;
}

.yt-socialmedia-linkwrap li a:hover {
    color: #f0c231;
}

.sub-footer {
    width  : 100%;
    padding: 36px 0;
}

.sub-footerholder {
    display        : flex;
    justify-content: space-between;
}

.yt-copyright {
    color         : #101010;
    font-size     : 12px;
    /* font-weight: 600; */
}

.yt-policylinkswrap {
    color      : #101010;
    font-size  : 12px;
    font-weight: 600;
}

.yt-policylinkswrap a {
    color  : #101010;
    padding: 0 8px;
}

.yt-policylinkswrap a {
    color  : #101010;
    padding: 0 8px;
}



/* Shailesh CSS */

.yt-intro .digitization-section-1-left {
    max-width: 568px;
}
.digitization-section-1-left  .section-text-btn a {
    padding: 15px 96px 15px 37px;
}
.digitization-section-1-left .section-text-btn a:hover {
    text-indent: -4px;
    padding-right: 100px;
}
.digitization-section-2 {
    padding: 100px 0;
}
.digitization-section-2 {
    padding: 100px 0;
}
.digitization-section-2-1 {
    text-align: center;
}
.digitization-section-2-1 h6 {
    font-size: 20px;
    padding: 0 0 10px;
    text-transform: uppercase;
    color: #fff;
}
.digitization-section-2-1 h1 {
    font-size: 60px;
    color: #101010;
    font-weight: 600;
    line-height: 60px;
}
.digitization-section-2-1 p {
    font-size: 20px;
    padding: 14px 0;
    width: 714px;
    margin: 0 auto;
}
.digitization-section-2-2 {
    display: flex;
    text-align: center;
}
.digitization-section-2-2 img {
    height: 118px;
    margin-bottom: 15px;
}
.section-2-2-box {
    width: 30%;
    box-shadow: 0 0 41px 2px #f0ac31eb;
    margin: 20px 22px;
    padding: 41px 24px 20px;
    border-radius: 16px;
}
.section-2-2-box p {
    font-size: 20px;
}
.section-2-2-box h2 {
    font-size: 24px;
    margin-top: 12px;
}
.digitization-section-3-top {
    background: #434343;
    padding: 235px 0;
    position: relative;
}
.digitization-section-3-top::before {
    content: " ";
    background-image: url(../images/img31.png);
    position: absolute;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
}

.digitization-section-3-1 h6 {
    font-size: 20px;
    padding: 0 0 10px;
    text-transform: uppercase;
    color: #f0c231;
}
.digitization-section-3-1 h1 {
    font-size: 56px;
    line-height: 56px;
    color: #fff;
    font-weight: 600;
}
.digitization-section-3-1 p {
    font-size: 20px;
    padding: 14px 0;
    color: #fff;
    width: 480px;
}
.section-3-2-box-same {
    background: #575757;
    display: flex;
    align-items: center;
    border-radius: 5px;
    width: 668px;
    margin-bottom: 40px;
}
.section-3-2-box-same  h1 {
    font-family: LoveloLineLight;
    font-size: 192px;
    color: #6f6f6f;
    width: 110px;
    line-height: 138px;
    margin-bottom: 0;
    margin-left: -20px;
}
.section-3-2-box-same h2 {
    color: #f0c231;
    font-size: 24px;
    margin-bottom: 10px;
}
.section-3-2-box-same p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
}
.digitization-section-3-1 {
    margin-bottom: 60px;
}
.section-3-2-box-1 {
    margin-left: 20px;
}
.section-3-2-box-2 {
    margin-left: 135px;
}
.section-3-2-box-3 {
    margin-left: 265px;
}
.section-3-2-box-4 {
    margin-left: 380px;
}
.section-3-2-box-5 {
    margin-left: 510px;
}
.why-invest-section-1-box-same {
    display: flex;
    align-items: center;
    border-radius: 5px;
    width: 771px;
    margin-bottom: 40px;
    box-shadow: 15px 5px 29px 1px #3333;
}
.why-invest-section-1-box-same h2 {
    font-size: 24px;
    margin-left: 19px;
    margin-right: 75px;
    margin-bottom: 0;
}

.why-invest-section-1-box-same img {
    line-height: 138px;
    margin-bottom: 0;
    margin-left: -59px;
}
.why-invest-section-1-sub-1 {
    margin-bottom: 80px;
}
.why-invest-section-1-box-2 {
    margin-left: 135px;
}
.why-invest-section-1-box-3 {
    margin-left: 265px;
}
.why-invest-section-1-box-4 {
    margin-left: 380px;
}
.why-invest-section-1-box-5 {
    margin-left: 510px;
}
.why-invest-section-2 {
    background: #928d7e;
    padding: 100px 0;
}
.why-invest-section-2-1 h6 {
    font-size: 20px;
    padding: 0 0 10px;
    text-transform: uppercase;
    color: #fff;
}
.why-invest-section-2-1 h1 {
    font-size: 60px;
    color: #0f0f0f;
    font-weight: 600;
    line-height: 72px;
}
.why-invest-section-2-1 {
    text-align: center;
    margin-bottom: 45px;
}
.why-invest-section-2-2-box {
    width: 30%;
    box-shadow: 0 0 41px 2px #878275;
    margin: 20px 22px;
    padding: 41px 15px 20px;
    border-radius: 16px;
    background: #c5bfad;
}
.why-invest-section-2-2 {
    display: flex;
    text-align: center;
}
.why-invest-section-2-2 h2 {
    font-size: 24px;
    margin-top: 12px;
}
.why-invest-section-2-2 p {
    font-size: 20px;
}
.why-invest-section-2-2 img {
    height: 118px;
    margin-bottom: 15px;
}
.why-invest-section-4 {
    background: #343a40;
    padding: 100px 0;
}
.why-invest-section-4-box-same {
    background: #2e343b;
    display: flex;
    align-items: center;
    border-radius: 5px;
    width: 580px;
    margin-bottom: 40px;
    box-shadow: 0 0 19px 9px #292d32;
    cursor: pointer;
}
.why-invest-section-4-box-same h1 {
    font-family: LoveloLineLight;
    font-size: 90px;
    color: #6f6f6f;
    width: 85px;
    line-height: 66px;
    margin-bottom: 0;
    margin-left: -20px;
}
.why-invest-section-4-box-same h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
.why-invest-section-4-box-same:hover h2{
    color: #f0c231;
}


.digitization-section-4 {
    position: relative;
    width: 92%;
    height: 0;
    padding-bottom: 45%;
  }
  .digitization-section-4 input {
    display: none;
  }
  .digitization-section-4 .slide_img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .digitization-section-4 .slide_img img {
    width: inherit;
    height: inherit;
  }
  .digitization-section-4 .slide_img .prev,
  .digitization-section-4 .slide_img .next {
    width: 12%;
    height: inherit;
    position: absolute;
    top: 0;
    background-color: rgba(255, 82, 82, 0.2);
    z-index: 99;
    transition: 0.45s;
    cursor: pointer;
    text-align: center;
  }
  .digitization-section-4 .slide_img .next {
    right: 0;
  }
  .digitization-section-4 .slide_img .prev {
    left: 0;
  }
  .digitization-section-4 .slide_img .prev:hover,
  .digitization-section-4 .slide_img .next:hover {
    transition: 0.3s;
    background-color: rgba(255, 82, 82, 0.8);
  }
  .digitization-section-4 .slide_img .prev span,
  .digitization-section-4 .slide_img .next span {
    position: absolute;
    width: 0px;
    height: 0px;
    border: solid 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .digitization-section-4 .slide_img .prev span {
    border-color: transparent #fff transparent transparent;
    right: 35%;
  }
  .digitization-section-4 .slide_img .next span {
    border-color: transparent transparent transparent #fff;
    left: 35%;
  }
  .digitization-section-4 #nav_slide {
    width: 100%;
    bottom: 12%;
    height: 11px;
    position: absolute;
    text-align: center;
    z-index: 99;
    cursor: default;
  }
  .digitization-section-4 #nav_slide .dots {
    top: -5px;
    width: 18px;
    height: 18px;
    margin: 0 3px;
    position: relative;
    border-radius: 100%;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 0.4s;
    cursor: pointer;
  }
  .digitization-section-4 #nav_slide #dot1:hover {
    background: #795548;
  }
  .digitization-section-4 #nav_slide #dot2:hover {
    background: #f44336;
  }
  .digitization-section-4 #nav_slide #dot3:hover {
    background: #2196f3;
  }
  .digitization-section-4 #nav_slide #dot4:hover {
    background: #4caf50;
  }

  #i1:checked ~ #Invest1,
  #i2:checked ~ #Invest2,
  #i3:checked ~ #Invest3,
  #i4:checked ~ #Invest4,
  #i5:checked ~ #Invest5,
  #i6:checked ~ #Invest6,
  #i7:checked ~ #Invest7,
  #i8:checked ~ #Invest8 {
    z-index: 9;
    animation: scroll 1s ease-in-out;
  }




  @media screen and (max-width: 685px) {
    .digitization-section-4 {
      border: none;
      width: 100%;
      height: 0;
      padding-bottom: 55%;
    }
    .digitization-section-4 .slide_img .prev,
  .digitization-section-4 .slide_img .next {
      width: 15%;
    }
    .digitization-section-4 .slide_img .prev span,
  .digitization-section-4 .slide_img .next span {
      border: solid 12px;
    }
    .digitization-section-4 .slide_img .prev span {
      border-color: transparent #fff transparent transparent;
    }
    .digitization-section-4 .slide_img .next span {
      border-color: transparent transparent transparent #fff;
    }
    .digitization-section-4 #nav_slide .dots {
      width: 12px;
      height: 12px;
    }
  }

  .why-invest-section-4-sub-6 {
    display: flex;
    align-items: center;
}
.why-invest-section-4-sub-5 {
    margin-right: 50px;
}
.why-invest-section-7 {
    background: #fff;
    padding: 100px 0;
}
.why-invest-section-7 h1 {
    font-size: 60px;
    font-weight: 700;
    width: 40%;
}
.why-invest-section-7 h1 span {
    color: #f0c231;
}
.why-invest-section-7 p {
    font-size: 20px;
    padding: 14px 0;
    width: 60%;
}

.why-invest-section-7-sub-1 {
    display: flex;
    align-items: center;
}
.why-invest-section-top{
    background-image: url(../images/img22.png);
    background-size: cover;
    background-position: center top;
}
.why-invest-section-slider-1 img {
    margin-top: 10px;
}
.home-vi-section-slider-1 .intro-bannerani {
    width: 91%;
    left: 75px;
}
.home-vi-section-11 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.home-vi-section-11 h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}
.home-vi-section-11 h4 {
    margin-left: auto!important;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}
.home-vi-section-12 p {
    text-align: justify;
}
.home-vi-section-11 span {
    color: #f0c231;
}
.home-vi-section-2-1 .nav-tabs {
    justify-content: space-around;
    border: 4px solid #544a2c;
    border-radius: 72px;
}
.home-vi-section-2-1 .nav-link.active {
    background: #544a2c;
    color: #e0b630;
    border: none;
    border-radius: 20px !important;
    font-size: 20px;
    font-weight: 600;
}
.home-vi-section-2-2 {
    width: 50%;
    margin: 0 auto;
}
.home-vi-section-2-2 li.nav-item {
    width: 50%;
    text-align: center;
}
.home-vi-section-2-1 .nav-link {
    color:#544a2c;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 20px;
}
.home-vi-section-2-3 {
    margin-top: 115px;
}


.vi-section-2-3-1 .yt-roadmap-rightblock li {
    justify-content: flex-start;
}
.vi-section-2-3-1  .yt-roadmap-rightblock li .roadmap-year {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.vi-section-2-3-1  .yt-roadmap-rightblock li .roadmap-desc {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.vi-section-2-3-1 .yt-roadmap-rightblock li::after{
    border: 5px solid #544a2c;
}
.vi-section-2-3-1 .yt-roadmap-leftblock li::after{
    border: 5px solid #544a2c;
}
.vi-section-2-3-1 .yt-roadmap-wrap .row .col-6:first-child{
    border-right: 6px dashed #544a2c;
}
.home-vi-section-2-3 .yt-roadmap-wrap {
    margin-bottom: 0;
}
.mobileview{
    display: none !important;
} 
.vi-section-2-3-1 .yt-roadmap-wrap .row .col-6 {
    padding-left: 0;
    padding-right: 0;
}
.vi-section-2-3-1 .yt-roadmap-rightblock li::after {
    left: -94px;
}
.vi-section-2-3-1 .yt-roadmap-leftblock li::after {
    right: -94px;
}
.digitization_icon1_ani_1 > div {
    height: 127px;
    margin-bottom: 15px;
}

/*New CSS*/
.why-Invest-mobile-main li {
    height: auto !important;
    width: auto !important;
    text-indent: unset !important;
    background: transparent;
    font-family: LoveloLineLight;
    font-size: 50px;
    color: #6f6f6f;
    line-height: 66px;
    margin-bottom: 0;
    margin-left: 9px
}
.why-Invest-mobile-main ol.carousel-indicators {
    position: relative;
}
.why-Invest-mobile-main h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
.why-Invest-mobile-main .carousel-indicators .active {
    color: #fff;
}
.why-Invest-mobile-main .carousel-caption {
    position: relative !important;
    left: 0;
    right: 0;
    padding-top: 0 !important;
}
.why-Invest-mobile-main {
    display: none;
}
.Partnerwithus h5 {
    font-weight: 300;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
}
.Partnerwithus h5 .gold-color {
    color: #f1c232;
}
.Partnerwithus input {
    border-left: none;
    border-top: none;
    border-right: none;
    border-radius: 0;
    padding-left: 0;
    border-color: #fff;
    background: transparent;
    color: #fff;
}
.Partnerwithus input:focus {
    border-color: #fff;
    box-shadow: none;
    background-color: transparent;
    color: #fff;
}
.Partnerwithus-btn {
    padding: 12px 30px;
    border-radius: 6px;
    background-color: #f0c231;
    color: #101010;
    margin-left: 10px;
    font-weight: 600;
    font-size: 15px;
}
.Partnerwithus  {
    background: rgb(0 0 0 / 90%);
}
.Partnerwithus .modal-content {
    background: transparent;
}
.Partnerwithus .modal-header {
    border: none;
    align-items: center;
}
.Partnerwithus .modal-footer {
    border: none;
    padding-top: 0;
}
.Partnerwithus label {
    font-size: 15px;
    color: #e3e4eb;
    margin-bottom: 0;
    margin-top: 7px;
}
.Partnerwithus .modal-header .close {
    color: #fff;
    padding: 0;
}
.PartnerwithusLink {
    cursor: pointer;
}
.Partnerwithus .modal-header .close:focus {
    outline: 0 dotted;
    outline: 0 auto -webkit-focus-ring-color;
}
