/*#region common */
.page-section{
    padding: 50px 0;
    position: relative;
}

.page-btn{
    font-family: GoogleSans Bold, Arial, sans-serif;
    border-radius: 50px;
    box-shadow: 0px 6px 24px rgba(248, 111, 3, 0.16);
    color: #fff;
    padding: 14px 25px;
    display: inline-block;
}

.page-btn:hover {
    color: #fff;
}

.page-btn:focus {
    color: #fff;
}

.section-title h2{
    font-size: 28px;
    font-family: GoogleSans Bold, Arial, sans-serif;
    text-align: center;
    padding-bottom: 50px;
}

.product-name, .red-note-title{
}

.panel-default>.panel-heading{
    background: unset;
    color: #000000;
    font-family: GoogleSans Bold, Arial, sans-serif;
    cursor: pointer;
    padding: 15px;
}

.owl-theme .owl-dots .owl-dot.active span{
    width: 20px;
}

.text-bold{
    font-family: GoogleSans Bold, Arial, sans-serif;
}

.m-auto{
    margin: auto;
}

.nowrap{
    white-space: nowrap;
}

#collapsedGeneralQuestions .panel-heading::before, #collapsedDifficultQuestions .panel-heading::before{
    content: url(/sites/amis/images/pages/amis-crm-major-template/active-panel-icon.svg);
    float: right;
    transition: all 0.5s;
}

#collapsedGeneralQuestions .panel-heading.active::before, #collapsedDifficultQuestions .panel-heading.active::before{
    content: url(/sites/amis/images/pages/amis-crm-major-template/collapsed-panel-icon.svg);
}

@media (max-width: 767px){
    .section-title br{
        display: none;
    }

    .page-section{
        padding: 45px 0;
    }

    .section-title h2{
        font-size: 26px;
    }
}

@media (max-width: 330px){
    .col-md-24 {
        padding-left: 0;
        padding-right: 0;
    }
}
/*#endregion */

/*#region Tab */
.amis-crm-tab {
    position: absolute;
    top: 20px;
    width: 100%;
    transition: top 0.1s;
    z-index: 99;
    display: none;
  }
  
  .amis-crm-tab-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .amis-crm-tab ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-flow: row wrap;
    width: 100%;
  }
  
  .amis-crm-tab ul li {
    color: #212121;
    padding: 0;
    margin: 0;
  }
  
  .amis-crm-tab ul li:not(:last-child) {
    margin-right: 15px;
  }
  
  .amis-crm-tab li {
    display: flex;
  }
  
  .amis-crm-tab li:first-child {
    margin-left: 0;
    padding: 0;
  }
  
  .amis-crm-tab li a {
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    opacity: 0.8;
  }
  
  .amis-crm-tab.stickyCss li a {
    color: #212121;
  }
  
  .amis-crm-tab ul li.active a {
    color: #fff;
    opacity: 1;
  }
  
  .amis-crm-tab.stickyCss ul li.active a {
    background: #4262f0;
    color: #fff;
  }
  
  .logo-banner-tab {
    display: none;
  }
  
  .amis-crm-tab ul li.only-show-in-sticky {
    display: none;
  }
  
  .amis-crm-tab.stickyCss ul li.only-show-in-sticky {
    display: block;
  }
  
  .stickyCss {
    position: fixed;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 10px 0;
    top: 0;
    box-shadow: 3px 7px 6px -5px #c9c4c4;
    z-index: 99999;
  }
  .menu-item {
    position: relative;
  }
  
  .menu-item ul.menu-child {
    list-style: none;
    box-shadow: 0 1px 8px -1px #e0e0e0;
    position: absolute;
    top: 44px;
    background: #fff;
    width: 300px;
    height: auto !important;
    padding: 10px 15px 10px;
    display: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  .menu-item ul.menu-child::before {
    content: " ";
    display: block;
    position: absolute;
    left: 20px;
    top: -8px;
    margin-left: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
  }
  
  .menu-item ul.menu-child::after {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: -10px;
    width: 100%;
    height: 10px;
  }
  
  .menu-item ul.menu-child a {
    padding: 7px 0;
  }
  
  .menu-item:hover ul.menu-child {
    display: block;
	z-index: 99;  
  }
  
  .td-toggle {
    display: none;
  }
  
  i.arrow {
    border: solid #212121;
    border-width: 0 2px 2px 0;
    margin: 0 0 2px 2px;
    display: inline-block;
    opacity: 0.5;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  
  .menu-child a {
    color: #212121 !important;
  }
  
  @media (min-width: 980px) {
    .amis-crm-tab.stickyCss ul {
      justify-content: flex-end;
    }
  
    .amis-crm-tab.stickyCss .logo-banner-tab {
      display: block;
    }
  
    .amis-crm-tab.stickyCss .logo-banner-tab img {
      width: 230px;
    }
	
	#menu1 li {
    width: 33.33%;
    margin-right: 0;
    padding: 0 5px;
	}
	.menu-item:hover ul.menu-child {
	   display: flex;
	   flex-flow: row wrap;
	   width: 620px;
	}
  }
  
  @media (max-width: 979px) {
    .amis-crm-tab {
      display: none;
    }
  
    .amis-crm-tab.stickyCss {
      display: block;
    }
  
    .amis-crm-tab-wrap {
      display: block;
    }
  
    .amis-crm-tab ul {
      justify-content: center;
    }
  }
  
  @media (max-width: 767px) {
    .stickyCss {
      padding-bottom: 0;
    }
  
    .amis-crm-tab {
      top: 15px;
    }
  
    .amis-crm-tab li a {
      font-size: 14px;
    }
  
    .amis-crm-tab.stickyCss {
      top: 0;
    }
  }
  .menu-item:hover ul.menu2 {
    display: block;
    width: 200px;
	}
  /*#endregion*/

/*#region section-banner  */
.section-banner{
    background: #FFF2EE;
}

.banner-ctn{
    display: flex;
    align-items: center;
}

.banner-title{
    font-size: 18px;
    font-family: GoogleSans Bold, Arial, sans-serif;
    text-transform: uppercase;
}

.banner-title h1{
    font-size: 28px;
    padding-bottom: 6px;
}

.banner-description{
    padding: 24px 0 36px;
}

@media (min-width: 1366px){
    .banner-img{
        position: absolute;
        left: 51%;
        top: 35px;
        width: 600px;
    }

    .section-banner{
        height: 500px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 980px){
    .mobile-banner-view{
        display: none;
    }
}

@media (max-width: 979px){
    .desktop-banner-view{
        display: none;
    }

    .mobile-banner-view{
        text-align: center;
    }

    .banner-ctn{
        display: block;
    }
}

@media (max-width: 767px){
    .mobile-banner-view {
        padding-top: 10px;
    }
}
/*#endregion */

/*#region section-difficulty */
.section-difficulty{
    /* padding-bottom: 70px; */
}

.section-difficulty .section-title h2{
    z-index: 2;
    position: relative;
}

@media (min-width: 1366px){
    .difficulty-img{
        position: absolute;
        right: 51%;
        width: 480px;
        bottom: -24px;
    }
    
    .difficulty-text{
        left: 50%;
    }
}

@media(min-width: 980px){
    .difficulty-wrapper{
        display: flex;
        align-items: center;
        position: relative;
        padding: 30px 0 40px;
    }
}

@media(max-width: 979px){
    .difficulty-btn{
        text-align: center;
    }

    .difficulty-img img{
        margin: auto;
    }
}
/*#endregion */

/*#region section-optimization */
.section-optimization{
}

.optimization-content-wrapper{
    display: flex;
    flex-flow: row wrap;
    padding-bottom: 25px;
}

.optimization-item{
    padding: 12px;
    width: 33.33%;
}

.optimization-item > div{
    background: #ffffff;
    border-radius: 8px;
    border: 3px solid #FFFFFF;
    padding: 25px;
    height: 100%;
}

.optimization-item:hover > div{
    background: #fff;
    cursor: pointer;
}

.optimization-item-title{
    padding: 16px 0 12px;
    font-size: 18px;
    font-family: GoogleSans Bold, Arial, sans-serif;
}

.optimization-btn{
    text-align: center;
}

@media (max-width: 979px){
    .optimization-item{
        width: 50%;
    }
}

@media (max-width: 767px){
    .optimization-item{
        width: 100%;
        padding: 12px 0;
    }
}
/*#endregion */

/*#region section-powerful-tool */
.powerful-img-wrapper{
    cursor: pointer;
}

.powerful-tool-slider .owl-item:not(.center) .powerful-img-wrapper::after {
    content:'';
    position:absolute;
    left:0; top:0;
    width:100%; 
    height:100%;
    display:inline-block;
    background: linear-gradient(90deg, #FFFFFF, transparent);
}

.powerful-tool-slider .owl-item.center ~ .owl-item .powerful-img-wrapper::after {
    background: linear-gradient(90deg, transparent, #FFFFFF);
}

.powerful-play-icon{
    position: absolute;
    top: 0;
    max-width: 80px;
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
}
/*#endregion */

/* #region Video Overview */
.overview-feature .section-title h2{
  padding-bottom: 0;
}
img#icPlay {
  position: absolute;
  top: calc(50% - 21px);
  left: calc(50% - 38px);
}

.overview-item-text {
  width: 46%;
}

.overview-item-img {
  width: 54%;
}

.overview-item-text ul {
  margin-left: 30px;
}

.overview-item-text ul li {
  list-style: none;
  margin: unset;
  padding-bottom: 20px;
}

.overview-item-text ul li a {
  color: #000;
}

.overview-item-text ul li a:hover {
  color: #0044ff;
}

.overview-item-text ul li::before {
  content: '';
  display: inline-block;
  background: url(/sites/amis/images/pages/amis-crm-major-template/ic-check.png);
  width: 20px;
  height: 20px;
  position: absolute;
  left: 15px;
}

.overview-child-title {
  font-size: 20px;
  padding: 10px 0px 60px 0px;
  text-align: center;
}

.overview-item-img .overview-video-bg {
  height: 320px;
}

@media (max-width: 979px) {
  .overview-item-img img {
    margin: auto;
    height: unset !important;
  }

  .overview-item-text {
    width: unset;
  }

  .overview-item-img {
    width: unset;
  }
}

/* #endregion */

/*#region section-trust */
.trusted-company-wrapper{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.trusted-company-item{
    width: 20%;
    padding: 0 0 45px;
}

.trusted-btn{
    text-align: center;
}

@media (max-width: 767px){
    .trusted-company-item{
        width: 33.33%;
        padding: 10px 10px 45px;
    }

    .trusted-company-item img{
        margin: auto;
    }
}
/*#endregion */

/*#region section-prize */
.section-prize{
}

.prize-news-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.prize-news-item{
    padding: 0 15px;
}

.extra-link-item{
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    padding-bottom: 25px;
}

.extra-link-img{
    width: 30%;
}

.extra-link-img img{
    width: 100%;
}

.extra-link-text{
    width: 70%;
}

.extra-link-text{
    padding: 0 10px 0 20px;
}

.extra-link-title{
    font-size: 14px;
    padding-bottom: 6px;
}

.extra-link-des{
    font-family: GoogleSans Medium, Arial, sans-serif;
    color: black;
}

.main-link-des a{
    color: black;
}

.main-link-img{
    position: relative;
    padding-bottom: 20px;
}

.main-link-img img.main-video-img{
    width: 100%;
}

.main-video-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    cursor: pointer;
}

@media (min-width: 980px){
    .prize-news-links{
        display: flex;
        flex-flow: row wrap;
    }
    
    .extra-news-links{
        width: 57%;
        padding-right: 15px;
    }

    .main-news-link{
        width: 43%;
        padding-left: 20px;
    }
}

@media (max-width: 979px){
    .extra-link-item{
        align-items: unset;
    }

    .main-news-link{
        padding-top: 15px;
    }
}

@media (max-width: 767px){
    .extra-link-title{
        font-size: 12px;
    }

    .extra-link-des{
        font-size: 14px;
    }

    .extra-link-text{
        padding: 0 0px 0 20px;
    }

    .section-prize .red-note-title{
        display: block;
    }
}
/*#endregion */

/*#region section-register */
.register-wrapper{
    background: url(/sites/amis/images/pages/amis-crm-major-template/register-banner.png?ver=1.0.0) no-repeat;
    background-size: cover;
    height: 450px;
    border-radius: 20px;
}

.register-img.desktop-register-img{
    position: absolute;
    right: 50%;
    bottom: 0;
}

.register-form{
    left: 50%;
    padding: 35px 0;
}

.register-form-title{
    padding-bottom: 12px;
    font-size: 18px;
    font-family: GoogleSans Bold, Arial, sans-serif !important;
    color: #fff;
    padding-left: 42px;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form .form-row .field-wrapper .field-inner[field-type="slt"] label{
    display: none !important;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form .form-row .field-wrapper .field-inner[field-type="slt"] .help-text{
    display: none !important;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form .form-row .field-wrapper .field-inner .lz-input:not([type="radio"]):not([type="checkbox"]){
    border-radius: 50px !important;
    background-color: rgba(0, 0, 0, 0.42) !important;
    border: none !important;
    width: 90% !important;
    font-size: 14px !important;
    padding-left: 14px !important;
    color: #fff !important;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form .form-row .field-wrapper .field-inner .lz-input:not([type="radio"]):not([type="checkbox"])::placeholder{
    font-family: GoogleSans, Arial, sans-serif !important;
    font-size: 14px !important;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form .form-row .field-wrapper .field-inner .lz-input:not([type="radio"]):not([type="checkbox"]):focus{
    border: 2px solid #577BF5 !important;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'] .btn-orange{
    background-color: #577BF5 !important;
    border-radius: 50px !important;
    font-family: GoogleSans Bold, Arial, sans-serif !important;
    box-shadow: 0px 6px 24px rgba(248, 111, 3, 0.16) !important;
    font-size: 16px !important;
    width: 90% !important;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form{
    padding: 0px 24px !important;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form .form-row{
    margin-bottom: 0 !important;
}

.register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form .submit-wrapper{
    padding: 8px 16px 16px !important;
}

@media (min-width: 980px) {
    .mobile-register-img{
        display: none;
    }
}

@media (max-width: 979px) {
    .desktop-register-img{
        display: none;
    }

    .register-wrapper{
        height: 100%;
    }

    .register-form{
        left: 0;
    }

    .mobile-register-img img{
        margin: auto;
    }

    .register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form .form-row .field-wrapper .field-inner .lz-input:not([type="radio"]):not([type="checkbox"]){
        width: 100% !important;
    }

    .register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'] .btn-orange{
        width: 100% !important;
        height: 44px !important;
    }
}

@media (max-width: 767px){
    .register-form form[lz-id='0b27c5f2-3d07-4384-b88e-bacc26b2efa7'].private-form{
        padding:  0 !important;
    }

    .register-wrapper{
        background-position: center;
        border-radius: 20px;
    }

    .register-form{
        padding: 35px 0 0;
    }

    .register-form-title{
        padding-left: 0;
        text-align: center;
    }
}
/*#endregion */

/*#region section-questions */
.section-questions{
}
/*#endregion */