@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

:root {
    --primary-background: #493F8F ;
    --secondary-background: #F9F6FC;
    --btn-primary: #79589F;
    --btn-secondary:#87C3E7 ;
    --icon-color: #B7EDFF;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    color: #333;
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

ul {
    list-style: none;
}
 
a {
    text-decoration: none;
}

img {
    width: 100%;
}

h1, h2, h3 {
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0;
}
p {
    margin: 10px;
}

/* NAVBAR */

.navbar {
    height: 70px;
    background-color: var(--primary-background);
    color: #fff;
}

.navbar .flex{
    justify-content: space-between;
}

.navbar ul {
    display: flex;
}

.navbar a{
    color: #fff;
    padding: 15px;
    margin: 0 5px;
}
.navbar a:hover {
    border-bottom: 1px solid #fff;
}

/* SHOWCASE */

.showcase {
    background-color: var(--primary-background);
    height: 400px;
    position: relative;
    overflow: visible;
    
}
.showcase-text {
    color: #fff;
    animation: slideInFromLeft 1s ease-in;
}
.showcase-text h2{
    font-size: 40px;
    margin: 20px 0;
    padding: 20px 0;
}
.showcase-text p{
    margin: 3px 0;
}

.showcase .grid {
    grid-template-columns: 55% 45%;
    gap: 25px;
    overflow: visible;
}
.showcase-form {
    position: relative;
    top: 70px;
    width: 400px;
    height: 350px;
    padding: 40px;
    justify-self: flex-end;
    z-index: 100;

    animation: slideInFromRight 1s ease;
}
.form-control {
    margin: 30px 0;
}
.form-control input[type=text],
.form-control input[type=email] {
    border: none;
    font-size: 16px;
    border-bottom: 1px solid #b4becb;
    width: 100%;
    padding: 3px;
}
.showcase::before,
.showcase::after {
    content: '';
    position: absolute;
    height: 100px;
    bottom: -70px;
    left: 0;
    right: 0;
    background-color:white;
    width: 100%;
    transform: skewY(-3deg);

}
.form-control input:focus{
    outline: none;
}
/* IMAGE SLIDER START */
.image-slider {
    width: 100%;
    margin: auto;
    padding-top: 120px;
    margin-bottom: 60px;
    height: 90vh;
    display: grid;
}

.image-slider .slides {
    height: 420px;
    width: 100%;
    overflow: hidden;
    display: flex; 

}

.slides input {
    display: none;
}


.slide {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 margin-right: 180px;
}
.slide img {
    min-width: 430px;
    width: 600px;
    max-height: 420px;
    margin-right: 10px;
    margin-left: -10px;
  }
 .slide div{
    min-width: 285px;
    width: 450px; 
    margin-left: 40px;
 } 
  
.slide .p1{
    font-size: 17px;
    font-weight: normal;
}
.slide .text-purple {
    font-weight: 500;
}

.slide a {
    display: block;
    width: fit-content;
}
.slide .btn{
    margin-top: 25px;
}
.slide-6-text-right {
    border-left: 1px solid #e2e2e2;
    padding-left: 35px;
}
.slide-6 {
    gap: 30px;
    width: 100%;
    margin: auto;
}
.slide-6 .text-cap {
    font-size: calc(12px + 1vw);
}
.slide-6-text-right .btn {
    padding: 18px;
}
.slide-6-text-left p,
.slide-6-text-right p {
    margin-left: 0;
}
.slide-6-text-left,
.slide-6-text-right,
.slide-6-text-left .text-cap,
.slide-6-text-right .text-cap {
    max-width: 450px;
    width: auto;
    margin: auto;
}

.slide a .btn {
    margin-top: 20px;
}
 /* Image-slider Manual Navigation */
 .manual-navigation{
    position: absolute;
    bottom: -400px;
    left: 36%;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    margin: auto;
    transform: scale(0.9);
 }
.manual-navigation .manual-btn {
    border: 1px solid #e2e2e2;
    background-color: #e2e2e2;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: .1s ease;
    margin-right: 5px;
    
} 
.manual-btn:hover {
    background: var(--primary-background);
}
#radio1:checked {
    background-color: #493F8F;
}

#radio1:checked ~ .first-a {
    margin-left: 0;
}
#radio2:checked ~ .first-a {
    margin-left: -120%; 
}
#radio3:checked ~ .first-a {
    margin-left: -232%;
}
#radio4:checked ~ .first-a {
    margin-left: -354%;
}
#radio5:checked ~ .first-a {
    margin-left: -470%;
}
#radio6:checked ~ .first-a {
    margin-left: -590%;
}


#radio1:checked ~ .manual-navigation .auto-1 {
    background-color: #493F8F;
}
#radio2:checked ~ .manual-navigation .auto-2 {
    background-color: #493F8F;
}
#radio3:checked ~ .manual-navigation .auto-3 {
    background-color: #493F8F;
}
#radio4:checked ~ .manual-navigation .auto-btn-4 {
    background-color: #493F8F;
}
#radio5:checked ~ .manual-navigation .auto-btn-5 {
    background-color: #493F8F;
}
#radio6:checked ~ .manual-navigation .auto-btn-6 {
    background-color: #493F8F;
}

/* IMAGE SLIDER ENDS*/

/*LANGUAGE CARD START */
.languages {
    background-color: #f2f2f2;
    padding: 10px 0;
    margin: auto;
    border-top: 2px solid #e2e2e2 ;
    border-bottom: 2px solid #e2e2e2 ;
    
}
.languages .container {
    max-width: 1000px;
    background-color: inherit;
} 

.languages .card {
    padding: 14px 20px;
}
.languages .card p {
    text-align: center;
    font-size: 16px;
}
.languages .card img {
    width: 40px;
    height: 40px;
}

.lang-text {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
} 
.languages .text-center{
    font-weight: bold;
    font-size: 13px;
    letter-spacing: .2em;
}
.lang-text p {
    display: inline;
    font-weight: 500;
    font-size: 14px;
}
.languages a {
    display: inline;
}
.languages .card:hover {
    background: transparent;
    transform: translate(1px);
}
/*LANGUAGE CARD END */

/*CODEISH SECTION START*/

.codeish {
    background-color: #F7F3FB;
    background-image: url(/images/codeish-callout.svg);
    background-size: 100% 150px;
    background-repeat: no-repeat;
    background-position: bottom left;
    border-bottom: 2px solid #e2e2e2 ;
    margin-bottom: 5px;
    /* padding: 20px 60px;  */
    /* margin: 30px auto; */
    padding-bottom: 40px;
    padding-top: 30px;
    margin: auto;
    width: 100%;
    height: 100%;
}
.codeish .container {
    width: 100%;
    overflow: hidden;
    
}
.codeish-left{
    animation: slideInFromLeft 1s ease-in;
}
.codeish-right{
    animation: slideInFromRight 1s ease-in;
}
.codeish-left,
.codeish-right {
    min-width: 80px;
    width: 100%;
}
.codeish .codeish-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.codeish-left img {
    min-width: 40px;
    width: 80px;
    margin: auto;
    margin-right: 24px;
}

  .codeish-left h2 {
    font-weight: bold;
    font-size: 36px;
}
.codeish-left p {
    font-weight: bold;
    margin-left: 5px;
    font-size: calc(17px + .1vw);
}
.codeish-left a {
    margin-left: 6px;
    font-weight: bold;
}

.codeish-left  a{
    font-size: 13px;
}
.codeish-right a{
    font-weight: bold;
    margin-right: 8px;
}
.codeish-right p {
    margin-top: -20px;
    margin-left:4px ;
}
.codeish .card{
    margin: auto;
    padding-bottom: 30px;
    margin-left: 20px;
    border-radius: 5px;
    margin-top: 20px;
}
.episode-title h3{
    font-weight: bold;
}
.episode-title p {
    font-weight: bold;
    font-size: 14px;
} 
/*CODEISH SECTION ENDS*/

/*PACKAGE ICONS START*/
.heroku-package-icons {
    border-bottom: 1px solid #e2e2e2;
    background-color: #EEF0F5;
    padding-bottom: 0;
    position: relative;
}
.heroku-package-icons::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/images/codeish-callout1.png);
    top: -120px;
    left: 0;
    background-size: 960px 400px;
    background-repeat: no-repeat;
    background-position: top center;
}
.package-icons{
    flex-wrap: wrap;
    margin-top: 230px;
}

.package-icons img {
    width: 130px;
    min-width: 80px;
    padding-left: 5px;
    position: relative;
    z-index: 10;
    margin-right: 15px;
}
.package-icons p {
    border-bottom: 1px solid #B5A2C6;
    text-align: center;
    margin: auto;
    width: fit-content;
    position: relative;
    z-index: 10;
}
.heroku-package-icons .text-purple {
    font-weight: lighter;
    font-size: 13px;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 10;
    /* top: -145px; */
}
.package-text .text-purple {
    font-weight: bolder;
    font-size: calc(30px + .1vw);
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}
.package-text p {
    max-width: 820px;
    margin: auto;
    text-align: center;
    margin-top: 15px;
    position: relative;
    margin-bottom: 70px;
}

/*PACKAGE ICONS ENDS*/

/* SCREENCAST SECTION BEGINS */

.screencast {
    background-color: #4A4090;
    color: #fff;
    padding: 40px 0 50px 0;
}
.screencast .container {
    max-width: 800px;
    width: 100%;
}
.wrapper {
    background-color:#251F47 ;
    color:#e2e2e2;
    box-shadow: 0 3px 20px rgb(0 0 0 / 40%);
    border-radius: 10px;
    width: 100%;
    max-width: 1100px;
    min-width: auto;
    overflow: hidden;
    margin: auto;
}
.screencast h2{
    font-size: 32px;
    margin-bottom: 20px;
}
.screencast-languages-list {
    padding: 0 150px;
    /*box-shadow:inset -10px 0 5px rgb(0 0 0 / 30%);*/
    border-radius: 10px;
    padding: 10px 100px;
    cursor: pointer;
}
.screencast-language a {
    color: #777;
    margin-left: 7px;
    font-weight: bolder;
}
.screencast-language a:hover {
    color: #fff;
}
.screencast-language img {
    width: 15px;
    margin-left: 30px;
    filter:drop-shadow(0 0 0 #fff) grayscale(1000%);
    
}
.video-slides {
    max-width: 4280px;
    display: flex;
    position: relative;
    margin: auto;
}
.screencast iframe {
    width: auto;
    min-width: 715px;
    height: 420px;
    max-height: 520px;
    margin-left: 10px;
    padding-bottom: 10px;
    padding-right: 15px;
}

/* LOWER SCREENCAST BAR STARTS */
.bottom-bar {
    width: 100%;
}
ol {
    list-style: none;
    cursor: pointer;
    display: flex;
    margin-top: 30px;

}

ol li{
    position: relative;
    left: 0;
    width: 16.66%;
    float: left;
    background-color: #221D44;
    height: 20px;
    /*border-top-left-radius:5px ;
    border-bottom-left-radius:5px;*/
    text-align: center;
}
ol li:first-child {
    border-radius: 10px 0 0 10px;
}
ol li:nth-of-type(5) {
    position: relative;
    left: 0;
    width: 33.3%;
    background-color: #221D44;
    height: 20px;
    border-radius: 0 10px 10px 0;
    border-left: 1px solid#555;
}
ol li:nth-of-type(3) {
    border-left: 1px solid#555;
}

.bottom-text h5{
    display: inline-block;
    /*position: relative; 
    top: -75px; */
    margin: 0 82px;
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 2px;
}

/*POPUP START */
/*.pop-up{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    float: left;
    justify-content: center;
} */
.pop-up{
    background-color: #111; 
    text-align: center;
    height: fit-content;
    width: 90px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.pop-up::after {
    position: absolute;
    content: '';
    /*background: rgb(41, 241, 14); 
    width: 12px;
    height: 12px; */
    bottom: -13px;

    border: 7px solid transparent;
    border-top-color: #111;
}
.bottom-bar .pop-up a {
    font-size: 14px;
    padding: 5px 10px;
    text-align: center;
    margin: auto;
}
.li-5-popup{
    padding: 5px 58px;
    width: max-content;
    text-align: center;
}
.pop-up a {
    color: #fff;
    font-size: 16px;
}
.li-1-popup{
    position: relative;
    top: -56px;
    right: -6px;
    display: none;
}
.li-2-popup {
    position: relative;
    top: -77px;
    right: -18px;
    display: none;
}
.li-3-popup {
    position: relative;
    top: -56px;
    right: -18px;
    display: none;
}
.li-4-popup {
    position: relative;
    top: -56px;
    right: -21px;
    display: none;
}
.li-5-popup {
    position: relative;
    top: -45px;
    left: -8px;
    display: none;
}

/*.bottom-bar ol:hover + .pop-up .li-1-popup,
.bottom-bar .li-1:hover + .pop-up,
.bottom-bar .li-1:hover + .pop-up .li-1-popup{
        display: flex;
        opacity: 1;
    } */

.bottom-bar .li-1:hover  .pop-up,
.bottom-bar .li-1:hover  .pop-up .li-1-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 110px;
}
.bottom-bar .li-2:hover  .pop-up,
.bottom-bar .li-2:hover  .pop-up .li-2-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bottom-bar .li-3:hover  .pop-up,
.bottom-bar .li-3:hover  .pop-up .li-3-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bottom-bar .li-4:hover  .pop-up,
.bottom-bar .li-4:hover  .pop-up .li-4-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bottom-bar .li-5:hover  .pop-up,
.bottom-bar .li-5:hover  .pop-up .li-5-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-align: center;
}

/*radio buttons */


.screen-slides input {
    display: none;
}


/*input:nth-of-type(5) {
    margin: 0 110px;
} */

.screencast-navigation {
position: absolute;
display: flex;
width: 700px;
height: 10px;
justify-content: center;
}

.screencast-navigation .screencast-radio-btn {
    border: 1px solid rgba(238, 241, 246, 0.6);
    background: rgba(238, 241, 246, 0.6);  
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 103px; 
    position: relative;
    bottom:-35px;
    z-index: 100;
    transform: scale(0.8);
    opacity: 0.3;
}


.screencast-radio-btn:not(:last-child){
    margin-right: 55px;
    margin-left: 55px;
}  
.dot5 {
    margin: auto;
}
.screencast-radio-btn:hover{
    background-color: #fff;
    opacity: 1;
}


#screen-radio1:checked ~ .video-slides .first {
    margin-right: 0;
}
#screen-radio2:checked  ~ .video-slides .first{
    margin-left: -715px;
}
#screen-radio3:checked  ~ .video-slides .first{
    margin-left: -1440px;
}
#screen-radio4:checked  ~ .video-slides .first{
    margin-left: -2165px;
}
#screen-radio5:checked  ~ .video-slides .first{
    margin-left: -2890px;
}

#screen-radio1:checked  ~ .screencast-navigation .dot1{
    background-color: #fff;
    opacity: 1;
 }
#screen-radio2:checked  ~ .screencast-navigation .dot2{
    background-color: #fff;
    opacity: 1;
 }
#screen-radio3:checked  ~ .screencast-navigation .dot3{
    background-color: #fff;
    opacity: 1;
 }
#screen-radio4:checked  ~ .screencast-navigation .dot4{
    background-color: #fff;
    opacity: 1;
 }
#screen-radio5:checked  ~ .screencast-navigation .dot5{
    background-color: #fff;
    opacity: 1;
 }
 
/* POPUP ENDS */

/* SCREENCAST SECTION ENDS */

/* NEWSWATCH STARTS */

.newswatch {
    /* padding:90px 60px;
    padding-bottom: 110px; */
    background-color:#FAFAFA;
    position: relative;
    background-image: url(/images/newswatch.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 1100px 350px;
    border-bottom: 1px solid #e2e2e2;
}
.newswatch .overlay {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(238, 241, 246, 0.3);
}

.newswatch p {
    font-size: calc(16px + .2vw);
    padding: 5px 0 25px 0;
    margin: auto;
    text-align: center;
    line-height: normal;
    position: relative;
    z-index: 100;
}
.newswatch h2 {
    z-index: 100;
    position: relative;
    margin-top: 50px;
    font-weight: normal;
}
.video-wrapper iframe {
    margin: 0 auto;
    position: relative;
    display: block;
    background-color: #FFFFFF;
    padding: 8px;
    border-radius: 10px;
    z-index: 100;
    margin-bottom: 110px;
    /* min-width: 400px;
    width: 650px;
    height: 400px; */

}
/* NEWSWATCH ENDS */

/* FEATURES SET STARTS */

.features-standard h2{
    margin-top: 50px;
    font-weight: normal;
}
.features-standard h3{
    margin-top: 20px;
    font-size: calc(20px + .1vw);
    color: #9B9FA2;
    font-weight: bold;
}

.feature-set{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 0;
    position: relative;
    margin: 0;
    padding: 0;
    top: -30px;
}
/* .features-set div {
    margin-bottom: 0;
    padding-bottom: 0;
} */
.features-set i {
    display: inline-block;
    position: relative;
    top: 80px;
    left: -25px;
    color: #79589F;
    font-size: 24px;
}
.features-set p {
    margin-left: 20px;
    font-size: 14px;
    font-weight: bolder;
}
.features-set h2{
    margin-left: 20px;
} 
.features-standard .btn {
    margin: 35px auto;
    margin-bottom: 45px;
    text-align: center;
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
}
   
/* FEATURES SET ENDS */

/* ENTERPRISE FEATURES START */
.features-enterprise {
    margin-top: 10px;
    position: relative;
}
.features-enterprise::after {
    content: '';
    position: absolute;
    top: 60px;
    width: 460px;
    left: 130px;
    height: 1px;
    background-color: #DDDDDD;
    z-index: -1;
}
.features-enterprise::before {
    content: '';
    position: absolute;
    top: 60px;
    width: 460px;
    right: 130px;
    height: 1px;
    background-color: #DDDDDD;
    z-index: -1;
}

.features-enterprise h2{
    font-size: 30px;
    font-weight: 500;
    color: #1969CA;
}
.features-enterprise h3{
    font-size: 25px;
    font-weight: 500;
    color: #9B9FA2;
    margin-bottom: 60px;
}
.enterprise-feature h2 {
    font-weight: normal;
    font-weight: bolder;
    font-size: 22px ;
    color: #111;
    margin-left: 20px;
}
.enterprise-feature p{
    font-weight: normal;
    font-weight: bolder;
    font-size: 14px;
    margin-left: 20px;
    color: #3F3F44;
}
.features-enterprise img {
    width: 80px;
    height: auto;
    margin: auto;
    display: block;
    position: relative;
}
.features-enterprise i {
    display: inline-block;
    position: relative;
    top: 42px;
    left: -20px;
    font-size: 22px;
}
.features-enterprise .btn-blue {
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    margin-bottom: 100px;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
/* ENTERPRISE FEATURES END */



/* CUSTOMER SECTION BEGIN */
.customers-testimonial {
    background-color: #EEF1F6;
}
.slide-group {
    background-color: #58488a;
    background-image: linear-gradient(to bottom right, #58488a, #5d64d0);
}
.slider-swipe {
    overflow: hidden;
    width: 100%; 
    
    margin: auto;
    position: relative;
}
.swipes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(131, 125,186, 0.5);
    width: 100%;
    height: 100%;
}

.customers-testimonial .swipes {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4500px;
    height:auto ;
    padding-bottom: 50px;
    padding-top: 20px;
    margin-bottom: 30px;
}
.swipes img {
    width: max-content;
    width: 225px;
    height: 16vh;
    color: transparent;
}

.left {
    border-right: 2px solid #e9effa;
    padding: 60px 30px;
    background-color: #F7F8FA; 
    border-radius: 5px 0 0 5px;
    /* color: transparent; */
}
.right {
    padding: 10px 10px;
    margin: auto;
    max-width: 500px;
}
.right p {
    font-weight: bold;
    font-size: 18px;
}
.right h5 {
    font-weight: bold;
    padding-left: 10px;
    letter-spacing: 3px;
}
.right small {
    padding-left: 10px;
    font-size: 14px;
}
.right a {
    display: block;
    padding-left: 10px;
}
.swipe-icons {
    display: flex;
    justify-content: space-between;
    margin: auto;
    position: relative;
    margin-top: 25px;
    color: #fff;
    z-index: 100;
}
.swipe-icons a {
    color: #F9F9F9;
    font-weight: bolder;
    opacity: 0.9;
}
.swipe-icons a:hover {
    color: #FFFFFF;
    opacity: 1;
}
.swipe-icons i{
    padding: 15px;
    background: #999dda;
    border-radius: 50px;
    opacity: 0.3;
    color: #FFFFFF;
    margin: 0 10px;
}
.swipe-icons i:hover {
    opacity: 0.6;
}
.swiper-next i{
    background: #999dda;
    opacity: 0.3;
}

#r1:checked ~ .swipes .last-clone {
    margin-left: -650px;
    transition: .3s ease-in;
}
#r2:checked ~ .swipes .last-clone {
    margin-left: -2330px;
    transition: .3s ease-in;
}
#r3:checked ~ .swipes .last-clone {
    margin-left: -4000px;
    transition: .3s ease-in;
}
#r4:checked ~ .swipes .last-clone {
    margin-left: -5650px;
    transition: .3s ease-in;
}

#r1:checked ~ .swiper-navigation .dot-a {
    background-color: #fff;
}
#r2:checked ~ .swiper-navigation .dot-b {
    background-color: #fff;
}
#r3:checked ~ .swiper-navigation .dot-c {
    background-color: #fff;
}
#r4:checked ~ .swiper-navigation .dot-d {
    background-color: #fff;
}

.swipe-one,
.swipe-two,
.swipe-three,
.swipe-four {
    position: relative;
}

#r1:checked ~ .swipes .swipe-one {
    z-index: 100;
}
#r2:checked ~ .swipes .swipe-two {
    z-index: 100;
}
#r3:checked ~ .swipes .swipe-three {
    z-index: 100;
}
#r4:checked ~ .swipes .swipe-four {
    z-index: 100;
}

/* swiper buttons */

.slider-swipe input {
    display: none;
}
.swiper-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-btn {
    position: relative;
    width: 5px;
    height: 5px;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px;
    top: -20px;
    background-color:#58488a;
    justify-content: center;
    transform: scale(0.5);
}
.testimonial-btn:hover {
    background-color: #FFFFFF;
    /* position: relative;
    z-index: 10; */
}
.testimonial-bottom{
    background: #EEF1F6;
    border-bottom: 1px solid #D3D3D3;
}
.testimonial-bottom .btn {
    display: block;
    width: fit-content;
    margin: 30px auto 20px auto;
}
.testimonial-bottom .fill-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding-bottom: 40px;
    font-weight: bolder;
}

/* CUSTOMER SECTION ENDS */

/* LOGO BACKGROUND STARTS */

.logo-background {
    /* margin: 30px auto 100px 0;
    border-bottom: 1px solid #DDDDDD; */
    background: url(/images/logo-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
}
.logo-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(238, 241, 246, 0.3);
    /* background-color: rgba(255, 255, 255, 0.1); */
    /* background-image: linear-gradient(#fff, #EEF1F6); */
}
.logo-background h2 {
    color: #79589F;
    margin: 70px auto 50px auto;
    font-size: 30px;
    position: relative;
    z-index:100 ;
}
.video-wrapper video {
    margin: 0 auto;
    position: relative;
    display: block;
    background-color: #FFFFFF;
    padding: 6px;
    border-radius: 10px;
    z-index: 100;
    margin-bottom: 100px;
    position: relative;
}
/* LOGO BACKGROUND ENDS */

/* TWEET SECTION STARTS */
.tweet-section{
    /* background-color: #f5f5f8; */
    background-image: linear-gradient( to top, #fff, #f5f5f8);
    border-top: 1px solid #DDDDDD;
}
.tweet-text {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 105px;
    gap: 170px;
}
.tweet-text h4 {
    letter-spacing: 3px;
}
.tweet-card p {
    font-size: 20px;
}
.tweet-card small {
    margin-left: 12px;
    color: #ad9481;
    font-size: 12px;
}
.tweet-section-bottom {
    margin-top: 180px;
    position: relative;
}
.tweet-section-bottom::before{
    content: '';
    position: absolute;
    width: 1000px;
    height: 1px;
    background-color: #EFF2F6;
    top: -50px;
    left: 95px;
}
.tweet-section-bottom .btn{
    display: block;
    width: fit-content;
    margin: auto;
} 
.tweet-section-bottom p{
    display: block;
    width: fit-content;
    margin: auto;
    text-align: center;
    margin-top: 16px;
    padding-bottom: 70px;
    font-size: 18px;
    font-weight: bold;
} 

/* TWEET SECTION ENDS */

/* FOOTER STARTS */

.footer {
background:#F0F0F0 ;
padding: 50px 70px;
/* position: relative; */
}
.footer-sections {
    /* display: grid;
     
    grid-template-columns: repeat(auto-fit, minmax(8em, 1fr)); */

    display: flex;
    justify-content: space-between;
    
}
/* .footer-sections div:last-child{
    grid-column: 5/span 2; 
}  */
.footer-sections h4{
    text-transform: uppercase;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: bold;
    color: black;
}
.footer-sections a{
    color: #6A5C56;
    font-size: 14px;
    
}
.newsletter i {
    font-size: 30px;
}
.newsletter p {
position: relative;
top: -40px;
left: 10px;
}
.footer-form label {
    display: block;
    color: #6A5C56;
    font-size: 14px;
    position: relative;
    top: -35px;
    font-weight: bold;
}
.footer-form input {
    outline: none;
    padding: 12px 100px;
    /* width: 280px;
    max-width: 350px; */
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    position: relative;
    top: -25px;
}
.footer-form label::after {
    content: '';
    width: 370px;
    height: 1px;
    background-color: #D3D3D3;
    position: absolute;
    top: 95px;
    left: 0;
}
.footer-form .btn {
    padding: 8px 10px;
    border: none;
    background-color: #998DBE;
    position: relative;
    top: -26px;
    right: 50px;
    font-weight: bold;
}

.social-icons {
    position: relative;
    top: 5px;
    margin-right: 15px;
}
.social-icons i {
    margin-right: 8px;
    font-size: 20px;
    color: #AFABAB;
    cursor: pointer;
}
.social-icons i:hover {
    color: #705BAD;
}

.chinese {
    position: relative;
    top: 12px;
}
.chinese a:hover {
    color: black;
}

/* FOOTER ENDS */

/* FOOTER-BOTTOM BEGINS */
.footer-bottom {
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 250px;
    background-color: #F6F6F6;
}
.footer-bottom h5 {
    margin-top: -15px;
    font-size: 10px;
    margin-left: 40px;
}
 .footer-bottom ul {
    
 }
 .footer-bottom a{
     margin-right:5px;
     font-size: 14px;
     text-decoration: underline;
     color: #575656;
     text-align: center;
     
 }
 /* .footer-bottom .last {
     display: block;
 } */
 .footer-bottom li {
    margin-right:5px;
    font-size: 14px;
    color: #575656;
    display: inline-block;
}
.footer-bottom img {
    /* color: transparent; */
    /* font: 0/0 a; */
    text-shadow: none;
    display: inline-block;
    width: 78px;
    height: 55px;
    text-align: center;
    margin: 0 3px -24px 3px;
}
/* FOOTER-BOTTOM ENDS */

/* UTILITIES */
.container {
    max-width: 1150px;
    padding: 0 40px;
    margin: 0 auto;
    overflow: auto;
}
.container-2{
    max-width: 1050px;
    padding: 0 40px;
    margin: 0 auto;
    overflow: auto;
}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.card {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.card-secondary {
    background-color: #fff;
    padding: 5px 10px; 
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); 
}
.tweet-card {
    background-color: #fff;
    padding: 15px 20px; 
    padding-right: 60px; 
    border-radius: 4px;
    margin: 20px;
    margin-left: 100px ;
    border: 1px solid #D3D3D3;
    max-width: 650px;
}
.btn {
    background-color: var(--btn-primary);
    color: #fff;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    padding: 16px 30px;
    margin: 15px 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: .1rem;
    font-size: 12px;
}
.btn-blue {
    background-color: #1969CA;
    color: #fff;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    padding: 16px 30px;
    margin: 15px 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: .1rem;
    font-size: 12px;
}
.btn-outline {
    background: transparent;
    border: 1px solid #fff;
}
.tweet-btn {
    background: transparent;
    border: 1px solid #8D589F;
    padding: 4px 15px;
    width: fit-content;
    color: #8D589F;
    font-size: 12px;
    font-weight: bold;
    float: right;
    border-radius: 2px;
}
.btn:hover{
    transform: scale(0.9);
} 
 /*TEXT */
 .text-cap {
     text-transform: uppercase;
     color: var(--btn-primary);
     font-weight: bold;
     letter-spacing: .1rem;
     width: 500px;
 }
 .black {
     color: #000;
 }
.text-purple {
    color: var(--btn-primary);
    font-size: 2.2rem;
    font-weight: bolder;
}
.text-center {
    text-align: center;
}

 /* PADDING */
 .p1{
     margin: 0;
     margin-top: 10px;
     font-size: 16px;
     font-weight: bold;
 }
 .py1 {       
    padding: .1rem 0;
 }
 .py2 {       
    padding: .3rem 0;
}
.py3 {       
    padding: .5rem 0;
}
.py4 {       
    padding: 1rem 0;
}
 .fill-purple {
    fill: #79589F;
    color: #79589F;
}
.fill-blue {
    fill: #408FEC;
    color: #408FEC;
}



/* ANIMATIONS */
@keyframes slideInFromLeft{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(0%);
    }
}
@keyframes slideInFromRight{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0);
    }
}
@keyframes slideInFromTop{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateX(0%);
    }
}
@keyframes slideInFromBottom{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateX(0%);
    }
}


/* RESPONSIVE DESIGN */

/* FOR TABLETS AND UNDER */

@media (max-width: 1100px){
    
     #radio6:checked ~ .first-a {
        margin-left: -600%;
    }
    .overlay-image {
        left: -80px;
        }

     
.features-enterprise::after {
    top: 60px;
    width: 380px;
    left: 70px;
}
.features-enterprise::before {
    top: 60px;
    width: 380px;
    right: 70px;
} 

 .tweet-section-bottom::before{
    width: 750px;
    left: 88px;
}

.footer-form .btn {
    padding: 8px 10px;
    
    top: -77px;
    right: -323px;
    font-weight: bold;
}
} 


@media (max-width: 955px){
    
     #radio6:checked ~ .first-a {
        margin-left: -620%;
    }
    .manual-navigation{
        bottom: -450px;
        left: 27%;
     }
    

    .footer-sections:not(.footer-last) {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        
    }
    .footer-sections h4 {
        margin-top: 35px;
    }
    

    .footer-last {
        margin-top: 60px;

        /* text-align: left; */
    }

    .footer-form .btn {
        padding: 8px 10px;
        top: -77px;
        right: -160px;
        font-weight: bold;
    }

    .footer-form input{
        /* width: 75vw; */
        margin: auto;
        /* text-align: center;
        align-items: center; */
        display: flex;

    }
    .footer-form label::after {
        
        top: -52px;
        left: 0;
    }
    .chinese {
        text-align: center;
        top: -57px;
    }
    .social-icons {
        top: -65px;
    }
    .newsletter i {
        margin-left: -250px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-left{
        text-align: center;
    }
    .footer-bottom a{
        margin-right:5px;
        font-size: 14px;
        
        text-align: center;
    }
    .footer-bottom .last {
       display: block;
   } 
  
}
@media (max-width: 850px){
    
     #radio6:checked ~ .first-a {
        margin-left: -630%;
    }
    .features-enterprise::after {
        top: 60px;
        width: 300px;
        left: 70px;
    }
    .features-enterprise::before {
        top: 60px;
        width: 300px;
        right: 70px;
    }
}

 @media (max-width: 820px){

    .showcase {
        background-color: var(--primary-background);
        height: auto;
        text-align: center;
    }
    
    .showcase .grid {
        grid-template-columns: 1fr;
    }
    .showcase-text{
        animation: slideInFromTop 1s ease-in;
    }
    .showcase-form {
        justify-self: center;
        margin-top:-15px ;
        animation: slideInFromBottom 1s ease-in;
    }

    #radio1:checked ~ .first-a {
        margin-left: 0;
    }
    #radio2:checked ~ .first-a {
        margin-left: -127%;
    }
  
    #radio3:checked ~ .first-a {
        margin-left: -252%;
    }
    #radio4:checked ~ .first-a {
        margin-left: -375%;
    }
    #radio5:checked ~ .first-a {
        margin-left: -505%;
    }
    #radio6:checked ~ .first-a {
        margin-left: -638%;
    }
    .manual-navigation{
        bottom: -650px;
        left: 27%;
     }


     .languages .container {
        padding: 0 10px;
        background-color: inherit;
    }
   
    .languages .flex {
        flex-wrap: wrap;
    } 
    .languages .card {
        padding: 10px 10px;
        display: flex;
    }
    .languages .card p {
        font-size: 14px;
        
    }
    .languages .card img {
        
        position: relative;
        left: -15px; 
    }
    
    .lang-text {
        text-align: center;
        margin-top: 20px;
        font-size: 16px;
    } 
    .languages .text-center{
        font-weight: bold;
    }
  
    .languages a {
        display: inline;
    }

    /* .overlay-image {
        left: -60px;
        width: 750px;
        } */

        .features-enterprise::after {
            top: 60px;
            width: 300px;
            left: 70px;
        }
        .features-enterprise::before {
            top: 60px;
            width: 300px;
            right: 70px;
        }

        .tweet-section-bottom::before{
            width: 650px;
            left: 65px;
        }
}


@media (max-width: 810px){
    #radio6:checked ~ .first-a {
        margin-left: -658%;
    }
   
    /* .screencast iframe {
        width: auto;
        height: 400px;
        max-height: 520px;
        margin-left: 10px;
        padding-bottom: 10px;
    }
    .wrapper {
        max-width: 720px;
        margin: auto;
    } */

    #screen-radio1:checked ~ .video-slides .first {
        margin-left: 5px;
    }
    
    .screencast-navigation .screencast-radio-btn {
        margin-right: 193px; 
    }

    .screencast-radio-btn:not(:last-child){
        margin-right: 55px;
        margin-left: 35px;
    }
   

     .dot5 {
        margin-left: 125px;
    }  
    .screencast-languages-list {
        padding: 10px 0;
        
    }
    .screencast-language a {
        margin-left: 2px;
    }
    
    .screencast-language img {
        width: 15px;
        margin-left: 30px;
    }

    .bottom-text {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        font-size: 10px;
    }
    .bottom-text h5 {
        margin: 0 30px;
        margin-top: 30px;
    }
    .video-wrapper{
        width: 100%;
    }
    .video-wrapper iframe {
        width: 540px;
        height: 330px;
    }
    .video-wrapper video {
        width: 540px;
        height: 330px;
    }

    .feature-set{
        
        grid-template-columns: repeat(2, 1fr);
            }

.features-enterprise {
    margin-top: 40px;
}
    
.features-enterprise::after {
    top: 60px;
    width: 280px;
    left: 70px;
}
.features-enterprise::before {
    top: 60px;
    width: 280px;
    right: 70px;
}

.enterprise-features {
    grid-template-columns: repeat(2, 1fr);
}

.tweet-card {
    margin-left: 30px ;
}

.tweet-text .no-show{
    display: none;
}
.tweet-text {
    display: flex;
    margin-left: 32px;
}
.tweet-section-bottom::before{
    width: 650px;
    left: 45px;
}
}

 

@media (max-width: 768px){
    .slide img {
        min-width: 340px;
        width: 600px;
        max-height: 420px;
        margin-right: 10px;
        margin-left: -10px;
      }
     .slide div{
        min-width: 240px;
        width: 450px; 
        margin-left: 40px;
        
     }
     .slide .text-purple {
         font-size: 24px;
     }
    
     .slide .p1{
         font-size: 14px;
     }
     .slide a:not(.btn){
        font-size: 15px;
    }

    #radio1:checked ~ .first-a {
        margin-left: 0;
    }
    #radio2:checked ~ .first-a {
        margin-left: -132%;
    }
    #radio3:checked ~ .first-a {
        margin-left: -262%;
    }
    #radio4:checked ~ .first-a {
        margin-left: -395%;
    }
    #radio5:checked ~ .first-a {
        margin-left: -529%;
    }
    #radio6:checked ~ .first-a {
        margin-left: -678%;
    }
    .black {
        font-size: 12px;
    }
    .manual-navigation{
        bottom: -650px;
        left: 19%;
     }
    
   
     .codeish-left {
        flex-direction: column;
        text-align: center;
        /* animation: slideInFromTop 1s ease-in;
        overflow: hidden; */
    }
    .codeish-right{
        /* animation: slideInFromBottom 1s ease-in;
        overflow: hidden; */
    }
    .codeish .codeish-grid {
        flex-wrap: wrap;
    }

    .codeish .container {
        max-width: 600px;
        margin-bottom: 50px;
    }
    .codeish-left img {
        margin-top: 60px;
    }

    .codeish div {
        margin: auto;
    }
    .codeish .card{
        margin: auto;
        padding-bottom: 30px;
        margin-left: 0;
        border-radius: 5px;
        margin-top: 20px;
    }

    

        .package-icons img {
            margin-right: 0;
        }

        .screencast iframe {
            width: auto;
            min-width: 625px;
            /* min-width: 552px; */
            height: 350px;
            max-height: 520px;
            margin-left: 10px;
            padding-bottom: 10px;
        }
        .wrapper {
            margin: auto;
            max-width: 630px;
        }
    
         #screen-radio1:checked ~ .video-slides .first {
            margin-left: 10px;
        }
       
        #screen-radio2:checked  ~ .video-slides .first{
            margin-left: -625px;
        }
        #screen-radio3:checked  ~ .video-slides .first{
            margin-left: -1260px;
        }
        #screen-radio4:checked  ~ .video-slides .first{
            margin-left: -1895px;
        }
        #screen-radio5:checked  ~ .video-slides .first{
            margin-left: -2530px;
        }


        .screencast-navigation .screencast-radio-btn {
            margin-right: 223px; 
        }
    
        .screencast-radio-btn:not(:last-child){
            margin-right: 55px;
            margin-left: 25px;
        }
       
    
         .dot5 {
            margin-left: 30px;
        }
        
        .screencast-language a {
            margin-left: 2px;
        }
        
        .screencast-language img {
            width: 15px;
            margin-left: 20px;
        }

        .features-enterprise::after {
            top: 60px;
            width: 240px;
            left: 70px;
        }
        .features-enterprise::before {
            top: 60px;
            width: 240px;
            right: 70px;
        }

        .tweet-section-bottom::before{
            width: 600px;
            left: 45px;
        }
}



/* MOBILE AND UNDER */
@media (max-width: 691px){
    .image-slider{
        height: auto;
    }
    .image-slider .slides {
        height: auto;
        width: 100%;
    }
    
    .slide {
     flex-direction: column;
         }
    
    .slide img {
        min-width: 300px;
        width: 350px;
        max-height: 320px;
        margin-top: 90px;
        margin-right: auto;
        margin-left: auto;
      }
     .slide div{
        min-width: 350px;
        width: 400px; 
        margin-left: 40px;
        text-align: center;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: -1px;
     }
     .slide .text-purple {
         margin-bottom: 1px;
    }
    .slide p{
        margin-top: 5px;
    }
    .slide .btn {
        margin-top: 15px;
    }
   

    #radio1:checked ~ .first-a {
        margin-left: 0;
    }
    #radio2:checked ~ .first-a {
        margin-left: -142%;
    }
    #radio3:checked ~ .first-a {
        margin-left: -288%;
    }
    #radio4:checked ~ .first-a {
        margin-left: -435%;
    }
    #radio5:checked ~ .first-a {
        margin-left: -575%;
    }
     #radio6:checked ~ .first-a {
        margin-left: -670%;
    } 

    .slide-6-text-right {
        border-top: 1px solid #DDDDDD;
        border-left: none;
    }
    .slide-6-text-right .text-cap {
        margin-top: 40px ;
    }
    .slide .slide-6-text-right,
    .slide .slide-6-text-left {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .manual-navigation{
        bottom: -900px;
        left: 10%;
     }
     
     .screencast iframe {
        width: auto;
        min-width: 542px;
        /* min-width: 552px; */
        height: 310px;
        max-height: 520px;
        margin-left: 10px;
        padding-bottom: 10px;
    }
    .wrapper {
        margin: auto;
        max-width: 550px;
    }
    
        #screen-radio1:checked ~ .video-slides .first {
            margin-left: 11px; 
        }
       
        #screen-radio2:checked  ~ .video-slides .first{
            margin-left: -532px;
        }
        #screen-radio3:checked  ~ .video-slides .first{
            margin-left: -1074px;
        }
        #screen-radio4:checked  ~ .video-slides .first{
            margin-left: -1615px;
        }
        #screen-radio5:checked  ~ .video-slides .first{
            margin-left: -2158px;
        }
        

        .screencast-navigation .screencast-radio-btn {
            margin-right: 233px; 
        }
    
        .screencast-radio-btn:not(:last-child){
            margin-right: 69px;
            margin-left: 20px;
        }
       
    
        .dot5 {
            margin-left: -5px;
        }
        .li-5-popup{
            padding: 5px 38px;
        }
        
        .video-wrapper iframe {
            width: 450px;
            height:280px;
        }
        .video-wrapper video {
            width: 450px;
            height:280px;
        }

        .feature-set{
        
        grid-template-columns: 1fr;
            }

            .features-enterprise::after {
                top: 60px;
                width: 180px;
                left: 70px;
            }
            .features-enterprise::before {
                top: 60px;
                width: 180px;
                right: 70px;
            }

            .enterprise-features {
                grid-template-columns: 1fr;
            }

            .tweet-section-bottom::before{
                width: 500px;
                left: 45px;
            }
}


@media (max-width: 620px){
    #radio6:checked ~ .first-a {
        margin-left: -728%;
    }

    .screencast iframe {
        width: auto;
        min-width: 508px;
        /* min-width: 552px; */
        height: 285px;
        max-height: 520px;
        margin-left: 10px;
        padding-bottom: 10px;
    }
    .wrapper {
        margin: auto;
        max-width: 550px;
    }

    #screen-radio1:checked ~ .video-slides .first {
        margin-left: 11px; 
    }
   
    #screen-radio2:checked  ~ .video-slides .first{
        margin-left: -509px;
    }
    #screen-radio3:checked  ~ .video-slides .first{
        margin-left: -1027px;
    }
    #screen-radio4:checked  ~ .video-slides .first{
        margin-left: -1545px;
    }
    #screen-radio5:checked  ~ .video-slides .first{
        margin-left: -2063px;
    }
    

    .screencast-navigation .screencast-radio-btn {
        margin-right: 250px; 
    }

    .screencast-radio-btn:not(:last-child){
        margin-right: 69px;
        margin-left: 5px;
    }

    #screen-radio1:checked ~ .video-slides .first {
        margin-left: 8px;
    }

    /* .li-5-popup{
        padding: 5px 32px;
    } */

    
    
}
@media (max-width: 500px){
    .package-icons img {
        width: 100px;
        margin-right: 20px;
    }
    
    #radio6:checked ~ .first-a {
        margin-left: -732%;
    }

    .codeish .container {
        max-width: 400px;
    }

    
    #radio1:checked ~ .first-a {
        margin-left: 18px;
    }
    #radio2:checked ~ .first-a {
        margin-left: -150%;
    }
    #radio3:checked ~ .first-a {
        margin-left: -290%;
    }
    #radio4:checked ~ .first-a {
        margin-left: -435%;
    }
    #radio5:checked ~ .first-a {
        margin-left: -583%;
    }
     #radio6:checked ~ .first-a {
        margin-left: -720%;
    } 

    .slide-6-text-right {
        border-top: 1px solid #DDDDDD;
        border-left: none;
    }
    .slide-6-text-right .text-cap {
        margin-top: 40px ;
    }
    .slide .slide-6-text-right,
    .slide .slide-6-text-left {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .manual-navigation{
        bottom: -920px;
        left: 10%;
     }

    .screencast iframe {
        width: auto;
        min-width: 390px;
        height: 230px;
        max-height: 520px;
        margin-left: 10px;
        padding-bottom: 10px;
    }
    .wrapper {
        margin: auto;
        max-width: 390px;
    }

    #screen-radio1:checked ~ .video-slides .first {
        margin-left: 7px;
    }
    #screen-radio2:checked  ~ .video-slides .first{
        margin-left: -393px;
    }
    #screen-radio3:checked  ~ .video-slides .first{
        margin-left: -792px;
    }
    #screen-radio4:checked  ~ .video-slides .first{
        margin-left: -1192px;
    }
    #screen-radio5:checked  ~ .video-slides .first{
        margin-left: -1592px;
    }

    .navbar {
        height: 120px;
        color: #fff;
    }
    
    .navbar .flex{
        flex-direction: column;
    }
    
    .navbar ul {
        background: rgba(0, 0, 0, 0.1);
        padding: 15px;
    }


    .screencast-navigation .screencast-radio-btn {
        margin-right: 373px; 
    }

    .screencast-radio-btn:not(:last-child){
        margin-right: 39px;
        margin-left: 7px;
    }
   

    .dot5 {
        margin-left: 25px;
    }
    .li-5-popup{
        padding: 5px 38px;
    }

    .screencast-language a {
        margin-left: 2px;
        font-size: 13px;
    }
    
    .screencast-language img {
        width: 14px;
        margin-left: 8px;
    }

    .bottom-text h5 {
        margin: 0 20px;
        margin-top: 30px;
    }

    .video-wrapper iframe {
        width: 390px;
        height:250px;
    }
    .video-wrapper video {
        width: 390px;
        height:250px;
    }

    .feature-set{
        
        grid-template-columns: 1fr;
            }
            .features-enterprise::after {
                top: 60px;
                width: 140px;
                left: 70px;
            }
            .features-enterprise::before {
                top: 60px;
                width: 140px;
                right: 70px;
            }
            .tweet-section-bottom::before{
                width: 400px;
                left: 45px;
            }            
}



@media (max-width: 400px){
    #radio6:checked ~ .first-a {
        margin-left: -838%;
    }
    .overlay-image {
        left: -340px;
        }

        .screencast iframe {
            width: auto;
            min-width: 342px;
            height: 200px;
            max-height: 520px;
            margin-left: 10px;
            padding-bottom: 10px;
        }
        .wrapper {
            margin: auto;
            max-width: 350px;
        }
    
        #screen-radio1:checked ~ .video-slides .first {
            margin-left: 12px;
        }

        /* .li-5-popup{
            padding: 5px 18px;
        } */
}



