:root {
    --primary-color: #1aba52;
    --primary-light: #1aba52;
    --primary-dark: #138a3d;
    --secondary-color: #bd9c33;
    --auxiliary-color: rgb(97, 104, 112);
    --background-color: #ffffff;
    --input-background: rgba(36, 41, 60, 0.8);
    --input-text-inactive: #7881A1;
    --input-text-active: #BFD2FF;
}

@keyframes gradient { 
  0%{background-position:0 0}
  100%{background-position:100% 0}
}

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

html{
    scroll-behavior:smooth;
    overflow-x:hidden!important;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: var(--background-color);
    overflow-x: hidden!important;
    width: 100%;
    height: 100vh;
    
    scrollbar-width: none;
}

body::-webkit-scrollbar{
    display: none;
}

a{
    text-decoration: none;
    color: black;
}

li {
    list-style: none;
}

header{
    background-color: transparent;
    margin-bottom: -65px;
    position: sticky;
    top: 7px;
    z-index: 3;
    margin-top: -7px;
    padding: 0;
}




/* #region Branding */

.navbar{
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 5px 24px;
}

.nav-branding img{
    height: 25px;
    margin-top: 5px;
    padding-left: 5px;
}



/* #endregion */

/* #region Web Player */

.main{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    max-width: 800px;
    margin: 0 auto;
    gap: 50px;
}

.main h2{
    color: #138a3d;
    font-size: 28px;
}

.main-left{
    width: 45%;
    display: inline;
    min-width: 350px;
    margin: 0px auto;
    padding-top: 25px;
}

.main-right{
    width: 45%;
    display: inline;
    margin: auto;
    min-width: 350px;
}

.embed{
    width:100%;
    position:relative;
    padding: 100px 0;
}


.countdown-wrapper{
    width: 90%;
    text-align: center;
    font-size: 14px;
}

.count-title{
    text-align: left;
    font-size: 14px;
    margin-top: 14px;
}

.timer{
    display: inline-flex;
    margin: 0 -12px;
}

.time-slot{
    width: 60px;
    margin: 25px 12px;
}

.time-slot p:nth-child(1){
    padding: 15px 0px;
    width: 60px;
    outline: #138a3d 1px solid;
    margin-bottom: 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 18px;
    margin-left: -8px;
    color: black;
    background-color: #ededed;
}

.time-slot p:nth-child(2){
    color: #138a3d;
    text-align: left;
}

.signup-form{
    outline: 1px solid #138a3d;
    padding: 25px;
    border-radius: 5px;
    background-color: #F4F4F4;
    box-shadow: 0px 0px 25px #1E1E1E;
    color: black;
}

.signup-form h4{
    padding-bottom: 14px;
}

.sform-submit{
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 18px;
    border-radius: 5px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer;
    background-color: #1aba52;
    color: white;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sform-submit:hover{
    box-shadow: none;
    transition: .5s ease-in-out;
}

.sform-label{
    font-size: 14px;
    display: block;
    font-weight: bold;
    margin-bottom: 5px; 
}

.focus{
    font-weight: 800;
    color: #138a3d;
}
    
.svg{
    position: absolute;
    top: 1%;
    left: 93%;
    height: 250px;
    width: 250px;
    z-index: -10;
    opacity: 35%
    ;
}

.svg2{
    position: absolute;
    top: 50%;
    left: -5%;
    height: 250px;
    width: 250px;
    z-index: -10;
    opacity: 15%;
}

.svg3{
    position: absolute;
    top: 75%;
    right: 15%;
    height: 250px;
    width: 250px;
    z-index: -10;
    opacity: 15%;
}

/* #endregion */



/* #region "What will you learn?" */

.next-info{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 35px;
}

.next-info h3{
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
}

.next-info h3:after{
    content:"";
     position:absolute;
     border: 2px solid var(--primary-color);
     width:95px;
     bottom:-10px;
     left:0px;
  }


.benefit-card-wrap{
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    grid-auto-rows: minmax(100px, auto);
  }

.benefit-card{
    width: 340px;
    padding-bottom: 25px;
}

.benefit-title{
    color: var(--primary-dark);
}

.benefit-card h4 {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 10px;
}

.benefit-card i{
    border-radius: 50%;
    padding: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    background-color: white;
    outline: 2px solid var(--primary-dark);
    font-size: .85rem;
}


@media (max-width:1275px){
    .benefit-card-wrap{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:855px){
    .next-info{
        width: 400px;
    }
    .benefit-card-wrap{
        grid-template-columns: repeat(1, 1fr);
    }
}

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

.iframe h3{
    padding: 25px 0px;
}

.iframe iframe{
    margin: 0 auto;
    width: 650px;
    height: 365px;
    margin-bottom: 50px;
}

@media (max-width:649px){
    .iframe iframe{
        width: 350px;
        height: 197px;
    }
}

/* #endregion */

/* #region Upcoming Webinars */

.upcoming-webinars{
    width: 100%;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23ffffff' stroke-width='0.8' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='rotate(50 1000 750) scale(43.6) translate(-977.06 -732.8)'%3E%3Cuse fill='%23fcfcfc' href='%23s' y='2'/%3E%3Cuse fill='%23fcfcfc' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='2'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='rotate(50 1000 750) scale(43.6) translate(-977.06 -732.8)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='rotate(50 1000 750) scale(43.6) translate(-977.06 -732.8)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='rotate(50 1000 750) scale(43.6) translate(-977.06 -732.8)'%3E%3Cg fill='%23f2f2f2'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='rotate(50 1000 750) scale(43.6) translate(-977.06 -732.8)'%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23efefef'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='rotate(50 1000 750) scale(43.6) translate(-977.06 -732.8)'%3E%3Cg fill='%231ABA52'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='rotate(50 1000 750) scale(43.6) translate(-977.06 -732.8)'%3E%3Cg fill='%231ABA52'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='rotate(50 1000 750) scale(43.6) translate(-977.06 -732.8)'%3E%3Cg fill='%231ABA52'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    z-index: 5;
    
}

.upcoming{
    padding-top: 30px;
    margin: 0 10%;
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
    text-transform: capitalize;
}

.upcoming h2{
    margin-left: 50px;
    font-size: 2rem;
}

.card-wrapper{
    padding: 50px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 25px;
}

.up-card{
    display: block;
    background-color: #ffffff;
    height: 450px;
    width: 350px;
    margin-right: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 20px 30px -10px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.up-card:last-child{
    margin-right: 0px;
}

.up-card:hover{
    box-shadow: rgb(38, 57, 77) 0px 20px 60px -10px;
    transition: .5s ease;
}

.center {
    display: flex;
    justify-content: center;
}

.webinar__not-found-wrap {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.webinar-not__found {
   background-color: #fff;
   flex-grow: 1;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.webinar__not-found-header {
    background-color: rgba(0,0,0, .4);
    padding: 10px 0;
}

.webinar-not__found-text {
    text-align: center;
    font-weight: bold;
    padding: 40px 0;
}

.webinar-back__button {
    text-align: center;
    cursor: pointer;
}

.up-card img{
    height: 300px;
    width: 350px;
    object-fit: cover;
    border-radius: 15px 15px 0px 0px;
}

.up-card h4{
    position: relative;
    z-index: 10;
    top: 0%;
    padding: 10px;
    margin-top: -25px;
    background-color: var(--primary-color);
}

.up-card p{
    padding: 20px 0px 30px 0px;
    font-weight: bolder;
}

.record-button{
    padding: 15px 25px;
    background-color: #1aba52;
    border-radius: 15px;
    font-weight: 600;
}

.record-button.disabled{
    pointer-events: none;
    opacity: .5
}

.ongoing-webinars {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 35px;
}

.ongoing-webinars__title {
    font-size: 25px;
}

.ongoing-webinar {
    color: gray;
    font-size: 20px;
}

.ongoing-webinar span {
    font-size: 15px;
}

/* #endregion */

/* #region Sign Up Form */

.sign-up{
    width: 100%;
    padding: 100px 0;
    background-color: #535A61;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='240' viewBox='0 0 1000 120'%3E%3Cg fill='none' stroke='%235E676E' stroke-width='1' stroke-opacity='0.54'%3E%3Cpath d='M-500 75c0 0 125-30 250-30S0 75 0 75s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 45c0 0 125-30 250-30S0 45 0 45s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 105c0 0 125-30 250-30S0 105 0 105s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 15c0 0 125-30 250-30S0 15 0 15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500-15c0 0 125-30 250-30S0-15 0-15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 135c0 0 125-30 250-30S0 135 0 135s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3C/g%3E%3C/svg%3E");;
    text-align: center;
    margin-top: 50px;
}

.form{
    width: 50%;
    min-width: 300px;
    margin: 0 auto;
    color: white;
}

.form input { 
    border-style: none; 
    background: transparent; 
    outline: none; 
}
.form button { 
    padding: 0; 
    background: none; 
    border: none; 
    outline: none;
}

.form button:hover{
    cursor: pointer;
}

.input-form {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    min-width: 300px;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 2px;
    padding: 1rem 1rem 1rem;
    background: var(--input-background);
}
 
  
  .input-form input {
    flex-grow: 1;
    color: var(--input-text-active);
    font-size: 1.2rem;
    line-height: 1.5rem;
    vertical-align: middle;
  }
.input-form input::-webkit-input-placeholder {
      color: var(--input-text-inactive);
    }
  
  
  .input-form button {
    color:  var(--input-text-inactive);
    font-size: 1.5rem;
    line-height: 2.4rem;
    vertical-align: middle;
    transition: color .25s;
}
.input-form button:hover {
      color: var(--input-text-active);
    }


.sign-up h3{
    font-size: 1.5rem;
    padding-bottom: 15px;
}

.sign-up p{
    font-size: 1rem;
    font-weight: 100;
}

/* #endregion */

/* #region Blogs */

.news{
    background-color: #ffffff;
    background-size: cover;
    border-top: var(--auxiliary-color) solid 2px;
    position: relative;
    z-index: 5;
}

.blogs{
    margin: 0 10%;
    padding-top: 25px;
}

.blogs h2{
    margin-left: 50px;
    font-size: 2rem;
}

.blog-card{
    display: block;
    background-color: rgb(228, 228, 228);
    height: 450px;
    width: 300px;
    margin-right: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 20px 30px -10px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.blog-card:last-child{
    margin-right: 0px;
}

.blog-card:hover{
    box-shadow: rgb(38, 57, 77) 0px 20px 60px -10px;
    transition: .5s ease;
}


.blog-card img{
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 15px 15px 0px 0px;
}

.blog-card h3{
    padding: 20px 0px 30px 0px ;
}

@media (max-width:600px) {
    .blog-card{
        margin-left: -30px;
    }
}

/* #endregion */

/* #region Footer */

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.footer-widget {
    padding-bottom: 10px
}

.footer-widget-heading h4 {
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 0;
    line-height: 23px;
    display: inline-block;
    width: auto;
    color: #F4F4F4 !important;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600 !important;
    letter-spacing: 1px
}

.pull-bottom-small {
    margin-bottom: 20px
}

.footer-widget-contact-info ul {
    margin: 0;
    list-style: none;
    padding: 0
}

.footer-widget-contact-info p {
    margin-bottom: 6px
}

.social-icons a {
    padding: 7px;
    display: inline-block
}

.recent-posts-ul li {
    border-color: #313131
}

.recent-posts-ul li:first-of-type {
    padding-top: 0px;
    border-top: 0
}

.footer-features-ul li {
    border-color: #313131;
    padding: 5px 0 5px 0
}

.footer-features-ul li:first-of-type {
    padding-top: 0px;
    border-top: 0
}

.post-date {
    margin: 8px 0 8px 0;
    display: block;
    margin-top: -9px;
    font-size: 12px;
    padding-top: 8px
}

.copyright {
    padding: 20px 0;
    height: auto;
    overflow: hidden;
    font-size: 12px;
    border-top: 0px solid transparent;
    border-top-width: 1px;
    background-color: #1E1E1E
}

.copyright p {
    font-size: 12px;
    float: left;
    margin-bottom: 0;
    line-height: 24px;
    color: #888;
    padding-bottom: 2px
}

nav.std-menu .menu {
    height: auto;
    margin: 0;
    position: relative;
    padding: 0
}

.copyright nav .menu {
    float: right
}

nav.std-menu .menu li {
    position: relative;
    display: inline-block;
    float: left;
    font-size: 14px;
    padding: 0 5px 0 5px
}

nav.std-menu .menu li:hover {
    cursor: pointer;
    text-decoration: underline
}

nav.std-menu .menu li:last-of-type {
    padding-right: 0
}

nav.std-menu .menu li a {
    color: #6a6c6f
}

.text-circle {
    color: #1ABA52
}

.footer-badge-softwareworld {
    height: 100px
}

.margin-bottom-10 {
    margin-bottom: 10px
}

.pull-bottom-small {
    margin-bottom: 20px
}

.margin-bottom-5 {
    margin-bottom: 5px
}


/* #endregion */

/* #region speaker */
.speaker{
    width: 50%;
    min-width: 855px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 35px 0;
}

.speaker h3{
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
}

.speaker h3:after{
    content:"";
     position:absolute;
     border: 2px solid var(--primary-color);
     width:75px;
     bottom:-10px;
     left:0px;
  }

  .info-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .speaker-img img{
    width: 250px;
    margin-right: 75px;
  }

  .speaker-info h4{
    font-weight: 300;
    margin-bottom: 25px;
  }

  .speaker-info strong{
    font-size: 1.25rem;
  }

  .speaker-info{
    width: 60%;
  }

  @media (max-width:855px){

    .speaker{
        width: 75%;
        min-width: 0;
    }

    .speaker-img img{
        width: 250px;
        margin: 0;
    }

    .speaker-info{
        width: 100vw;
    }


}
/* #endregion */

.wide i{
    padding: 12px 15px;
}