/*-------slider-css----*/
.slider-container {
    display: block;
    height: 40vw;
    width: 70%;
    margin: 0 auto;
    position: relative;
    max-width: 1440px;
    margin-top: 20px;
}
.slider-container .arrow-left {
    position: absolute;
    left: 1%;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 9;
}
.hero-slider__button__circle__arrow {
    stroke: #fff;
    position: absolute;
}
.hero-slider__button__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.slider-container .arrow-right {
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 9;
}
.slider-container .dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin:25px 0;
    user-select: none;
}

.slider-container .dots span {
    display: inline-block;
    width: 20px;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.slider-container .dots span.active:before {
    background-color: #337cbd;
    opacity: 1;
    height: 11px;
    width: 11px;
}
.slider-container .slider {
    display: block;
    max-width: 1275px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    color: white;
}
.slider-container .slider .slide {
    display: inline-block;
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 12px;
    transform: translate3d(-50%, -50%, 0) scale3d(0.4, 0.4, 1);
    transition: transform 0.5s ease-in-out 0s;
}
.slider-container .slider .slide.prev-2 {
    transform: translate3d(-85%, -50%, 0) scale3d(0.7, 0.7, 1);
    z-index: 1;
    filter: blur(4px);
}
.slider-container .slider .slide.prev-1 {
    transform: translate3d(-70%, -50%, 0) scale3d(0.8, 0.8, 1);
    z-index: 2;
    filter: blur(2px);
}
.slider-container .slider .slide.next-1 {
    z-index: 2;
    filter: blur(2px);
    transform: translate3d(-30%, -50%, 0) scale3d(0.8, 0.8, 1);
}
.slider-container .slider .slide.next-2 {
    z-index: 1;
    transform: translate3d(-15%, -50%, 0) scale3d(0.7, 0.7, 1);
    filter: blur(4px);
}
.slider-container .slider .slide.active {
    z-index: 3;
    transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.slider-container .slider img {
    max-width: 100%;
    border-radius: 12px;
    vertical-align: middle;
    box-shadow: 0 16px 24px 0 rgb(7 29 51 / 20%), 0 12px 12px 0 rgb(7 29 51 / 10%);
}
@keyframes changePagerSelectorWidth{
    0%{
        width:0
    }
    100%{
        width:100%
    }
}
@keyframes fillBulletProgressCircle{
    0%{
        stroke-dashoffset:50
    }
    100%{
        stroke-dashoffset:6
    }
}
@keyframes fillButtonProgressCircle{
    0%{
        stroke-dashoffset:150
    }
    100%{
        stroke-dashoffset:0
    }
}
.hero-slider__button__circle__wrapper{
    transform:rotate(-90deg)
}
.hero-slider__button__circle__progress, .hs_bcpr {
    position:absolute;
    left:0;
    top:0;
    stroke:rgba(0,0,0,.3);
    stroke-width:2;
    fill:transparent;
    stroke-dasharray:150;
    animation-duration:5000ms; 
    animation-timing-function:linear;
    animation-fill-mode:backwards;
    stroke-dashoffset:150
}
.hero-slider__button--previous .hero-slider__button__circle {
    transform: rotate(180deg);
}
.hero-slider__button--previous .hero-slider__button__circle {
    transform: rotate(180deg);
}
.hero-slider__button__circle__progress{
    animation-name:fillButtonProgressCircle
}
.hero-slider__button__label {
    position: absolute;
    transform: translateY(-1.5rem);
    opacity: 0;
    transition: transform 250ms cubic-bezier(.165,.84,.44,1),opacity 125ms cubic-bezier(.165,.84,.44,1);
    pointer-events: none;
    border-radius: 4px;
    box-shadow: 0 8px 16px 0 rgb(8 45 61 / 20%), 0 4px 12px 0 rgb(8 45 61 / 10%);
    background-color: rgb(19 19 19 / 90%);
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.67;
    letter-spacing: normal;
    color: #eaeef2;
    padding: 0 15px;
}
.hero-slider__button:hover .hero-slider__button__label {
    opacity: 1;
    transform: translateY(-5.3125rem);
}

.hero-slider__pager{
    position:relative;
    z-index:10;
    display:flex;
    justify-content:center;
    cursor:pointer;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
.hero-slider__pager__item__trigger{
    -webkit-appearance:none;
    appearance:none;
    border:0;
    margin:0;
    padding:0;
    border-radius:0;
    line-height:normal;
    background-color:transparent;
    width:.5rem;
    height:.5rem;
    border-radius:50%;
    background-color:rgba(0,0,0,.2);
    display:block;
    text-indent:-200vw;
    position:relative
}
@media (pointer:none){
    .hero-slider__pager__item__trigger{
        pointer-events:none
    }
}
.hero-slider__pager__item__trigger__progress{
    display:block;
    width:1rem;
    height:1rem;
    border-radius:50%;
    position:absolute;
    top:-50%;
    left:-50%;
    transform:rotate(-90deg)
}
.hero-slider__pager__item__trigger__progress__circle{
    stroke:rgba(0,0,0,.3);
    stroke-width:2;
    fill:transparent;
    stroke-dasharray:50;
    animation-duration:5000ms; 
    animation-timing-function:linear;
    animation-fill-mode:forwards;
    opacity:0
}
.active.hero-slider__pager__item  .hero-slider__pager__item__trigger{
    background-color:#000;
}
.active.hero-slider__pager__item .hero-slider__pager__item__trigger__progress__circle{
    opacity:1;
    animation-name:fillBulletProgressCircle
}
@media only screen and (min-width:2400px){
    .slider_talk_col {
        background-size: 100% !important;
        background-position: center !important;
    }
}
ul.talk_menu li a {
    color: #337cbd;
    font-size: 14px;
    font-weight: bold;
}
ul.talk_menu li {
    display: inline-block;
    padding-left: 18px;
}
#related_products .et_pb_image a:before,#related_products .btn-white_see .et_pb_text_inner a:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    content: '';
    left: 0;
    top: 0;
    z-index: 99;
}
.focus_areas .et_pb_column {
    overflow: visible;
}
.focus_areas p {
    padding-bottom: 32px;
}
.fully_vnc_talk .et_pb_module:hover{
    background-color: #f3f6f9;
}
ul.talk_menu {
    text-align: right;
    margin-top: 9px;
    list-style-type: none;
}
.client_adjust h3{
    height: 67px !important;
}
.btn-white_see a {
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    display: block;
}
.my_accordian li {
    padding-bottom: 5px;
}
.my_accordian ul {
    list-style-type: disc;
    padding-left: 20px;
    padding-top: 20px;
}
.client_adjust P{
    margin-left: -53px;
}
.client_adjust .et_pb_blurb_content {
    padding-right: 5px;
}
.fully_vnc_talk .et_pb_blurb_container {
    vertical-align: middle;
}
ul.talk_menu li img {
    vertical-align: middle;
    padding-left: 5px;
}
#chat .et_pb_blurb_description {
    margin-left: -53px;
    color: #525f6c;
    margin-bottom: 24px;
}
#chat h3 {
    padding-bottom: 0px;
    min-height: 57px;
	padding-left: 10px;
}
#chat.multi_box h3 {
    padding-left: 0;
}
#chat.multi_box .et_pb_blurb_description ul {
 padding-bottom:0px;
}
#chat.multi_box span {
    display: flex;
    gap: 10px;
}
/*.fully_vnc_talk p{
max-width: 140px;
}*/
.moretext {
    display: none;
}
.unique_chat ul {
    margin-top: 20px;
    margin-bottom: 10px;
}
.unique_chat p{
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
    padding: 0;
}
.unique_chat {
    font-size: 24px;
    line-height: 1.5;
}
.unique_chat strong {
    font-size: 24px;
    padding-bottom: 20px;
    display: block;
}
.unique_chat li{
    font-size: 24px;
    line-height: 1.5;
    padding: 0;
}
.relase_cst span.popup-gallery_br a{
    position: relative;
    display: block;
}
.relase_cst .et_pb_row {
    overflow: hidden;
}
.btn-success.btn-xl, .btn-success.btn-xl:hover {
    font-size: 16px !important;
    width: 320px;
    padding: 13px !important;
}
.relase_cst .btn-success, .relase_cst .btn-success:hover {
    font-size: 16px !important;
}
.relase_cst .btn-success:after {
    font-size: 16px !important;
}
.today{
    overflow: hidden;
}
.today img{
    opacity: .2;
}
.talk_product_dasas .slick-prev {
    left: 0;
    z-index: 99;
    width: 30px;
    height: 60px;
    position: absolute;
}

.talk_product_dasas .slick-prev:before {
    background-image: url(http://vnclagoon.com/wp-content/themes/Divi-child/images/00-website-icon-arrow-left.svg);
    background-size: 30px;
    width: 30px;
    height: 60px;
    display: block;
    color: transparent;
    opacity: .6;
    cursor: pointer;
}
.talk_product_dasas .slick-next {
    right: 0;
    z-index: 99;
    width: 30px;
    height: 60px;
    position: absolute;
}
.talk_product_dasas .slick-next:before {
    background-image: url(http://vnclagoon.com/wp-content/themes/Divi-child/images/00-website-icon-arrow-right.svg);
    background-size: 30px;
    width: 30px;
    height: 60px;
    display: block;
    opacity: .6;
    color: transparent;
    cursor: pointer;
}
.btn-success.btn-xl:before,.btn-success.btn-xl:after{
    display: none !important;
}
.see_all .btn-white_see {
    transition: all 200ms ease 0s;
    align-items: center;
    display: flex;
    justify-content: center;
}
.see_all .btn-white_see:hover,.single_inner h4:hover {
    opacity: .9;
    transform: translateY(-1px);
}
.single_inner h4 {
    background-color: #27ab7f;
    width: 112px;
    height: 112px;
    transition: all 200ms ease 0s;
    text-align: center;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 4px;
    line-height: 1.2;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    margin: auto;
}
span.talk_btns {
    display: block;
    margin-top: 20px;
}
.talk_product_dasa:hover{
    box-shadow: inset 0 -1px 0 0 #e3e7eb;
}
.talk_popup {
    display: none;
    transition: transform 500ms ease 0ms;

}
.talk_product_dasa,.see_all{
    overflow: visible !important;
}
.talk_product_dasa:hover .talk_popup {
    display: block;
    position: absolute;
    bottom: 103%;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 8px 16px 0 rgb(8 45 61 / 20%), 0 4px 12px 0 rgb(8 45 61 / 10%);
    background-color: #131313;
    left: 50%;
    transform: translate(-50%, 0%);
    overflow: hidden;
    z-index: 99;
    padding: 23px 24px 40px;
}
.talk_popup h4{
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}
.talk_popup p,.efficient{
    color:#eaeef2;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.33;
}

.product_video:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.btn-white p{
    color: #fff;
}
.btn-white_see p{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.product_video {
    box-shadow: 0 16px 24px 0 rgb(7 29 51 / 20%), 0 12px 12px 0 rgb(7 29 51 / 10%);
}
.fully_vnc_talk .et_pb_main_blurb_image {
    width: 64px !important;
}
.fully_vnc_talk  h4.et_pb_module_header {
    padding-bottom: 6px;
    overflow-wrap: anywhere;
}
.app_talk {
    display: inline-block;
}
.app_talk_new{
    padding-right: 26px; 
}
a.moreless-button {
    color: #337cbd;
    font-size: 14px;
    position: relative;
}
a.moreless-button:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(http://vnclagoon.com/wp-content/themes/Divi-child/images/icon-product-keyboard-blue.svg);
    right: -21px;
    top: 2px;
}
.unique_chat img {
    position: relative;
    top: 5px;
}
.tabset__tabs__content {
    width: 50%;
    margin-right: 3%;
}
.tabset__tab__track {
    position: absolute;
    top: 0;
    left: -32px;
}
.container-grid{
    margin:0 auto;
    display:grid
}
span.set_con {
    position: absolute;
    left: 0px;
}

/*  Confidential Computing page */
.client_adjust h3.et_pb_module_header {
    max-width: 330px;
}
.replace_stack h3.et_pb_module_header {
    max-width: 365px;
}
@media only screen and (min-width: 1080px) {
    .client_two img,
    .client_one img {
        max-width: 46vw;
    }
}


@media only screen and (max-width: 767px) {
    .unique_chat p {
        font-size: 17px;
    }
#chat h3 {
    padding-left: 0;
}
    ul.talk_menu {
        text-align: center;
        padding-left: 0;
        margin-top: -20px;
    }
    .hero-slider__button__circle {
        display: none;
    }
    .slider-container {
        width: 85%;
        height: 50vw;
    }
    .focus_areas {
        display: flex;
        flex-direction: column-reverse;
    }

    .client_adjust P  {
        padding-left: 10px;
    }
    #related_products {
        padding-bottom: 50px;
    }
    .client_adjust .et_pb_image_wrap{
        width: 40px !important;
    }
    .client_adjust h3{
        min-height: 48px !important;
    }
    #chat .et_pb_blurb_description{
        font-size: 14px;
        line-height: 20px;
    }
    .fully_vnc_talk p {
        max-width: 767px;
    }
    .fully_vnc_talk .et_pb_column{
        margin-bottom: 4% !important;
    }
    .relase_cst .btn-success, .relase_cst .btn-success:hover {
        font-size: 14px !important;
        margin-top: 30px;
        padding: 10.5px 30px!important;
    }
    .relase_cst .btn-success:after {
        font-size: 14px !important;
    }
    ul.talk_menu li {
        padding-left: 0;
        padding-bottom: 10px;
    }
    .unique_chat p,.unique_chat li{
        font-size: 16px; 
        margin-bottom: 22px;
    }
    .unique_chat ul {
        margin-bottom: 0px;
        padding-bottom: 10px;
    }
    .unique_chat{
        font-size: 16px; 
    }
    .unique_chat strong {
        font-size: 16px; 
    }
    .fully_vnc_talk .et_pb_blurb_container {
        padding-left: 10px!important;
    }
    .today h2, .today p {
        max-width: 60%;
        margin: auto;
    }
    .et_pb_column.et_pb_column_4_4 {
        padding-bottom: 0px !important;
        width: 100% !important;
    }
    .btn-success.btn-xl, .btn-success.btn-xl:hover {
        font-size: 14px !important;
        width: 200px;
        padding: 6px !important;
    }
    .single_inner img {
        width: 96px;
        margin: 0 auto 16px;
    }
    .single_inner h3 {
        font-size: 16px;
        text-align: center;
        font-weight: 800;
        padding-bottom: 0px; 
    }
    .replace_stack{
        display: flex;
        flex-direction: column-reverse;
    }

    div#chat a img {
        width: auto;
    }
    .app_talk_new {
        padding-right: 14px;
    }
    .app_talk {
        width: 140px;
    }
    .app_talk.app_talk_new {
        max-width: 160px;
    }
    #rn_html_return .et_pb_text_2{
        display: block !important;
    }


}
@media only screen and (min-width:320px) and (max-width: 519px){
    .Powerful_datas {
        max-width: 220px !important;
    }
    .relase_cst .slick-slide {
        padding: 0 0px 0 20px;
    }
}
@media only screen and (min-width:320px) and (max-width: 500px){
    .relase_cst .slick-slide {
        padding: 0 0px 0 20px;
    }
}
@media only screen and (min-width:501px) and (max-width: 767px){
    .relase_cst .slick-slide {
        padding: 0 20px 0 0;
    }
    .fully_vnc_talk h4 {
        font-size: 14px !important;
    }

}
@media only screen and (min-width: 520px) and (max-width: 980px){
    .fully_vnc_talk .et_pb_column:nth-child(odd),.Powerful_datas .et_pb_column:nth-child(odd) {
        margin-right: 4% !important;
    }

    .talk_product_dasa:hover .talk_popup {
        width: 285px;
    }

    .fully_vnc_talk .et_pb_column,.Powerful_datas .et_pb_column{
        width: 48% !important;
    }
    .fully_vnc_talk .et_pb_column,.Powerful_datas .et_pb_column{
        width: 48% !important;
    }
}
@media only screen and (min-width: 767px) and (max-width: 980px){
    ul.talk_menu li {
        padding-left: 0px;
    }
    .focus_areas .et_pb_column:last-child {
        max-width: 600px;
    }
    .focus_areas {
        display: flex;
        flex-direction: column-reverse;
    }
    .et_pb_column.et_pb_column_4_4 {
        width: 100% !important;
    }
    .relase_cst .slick-slide {
        padding: 0 1.5%;
    }
    .replace_stack {
        display: flex;
        flex-direction: column-reverse;
    }

    .today h2{
        font-size: 34px !important;
    }
    .today h2, .today p {
        max-width: 65%;
        margin: auto;
    }
    #product_description .et_pb_row{
        display: flex;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1024px){
    .client_two,.client_one{
        left: 0px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .talk_product_dasa:hover .talk_popup {
        width: 280px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1345px){
    .today h2{
        font-size: 36px !important;
    }

    .fully_vnc_talk .et_pb_column{
        width: 48% !important;
        margin-bottom: 30px;
    }
    .fully_vnc_talk .et_pb_column:nth-child(even){
        margin-right: 0px !important;
    }
    .relase_cst .slick-slide {
        padding: 0 1.5%;
    }
    .fully_vnc_talk .et_pb_blurb_position_left .et_pb_blurb_container{
        vertical-align: middle;
    }
}
@media only screen and (min-width: 1300px) and (max-width: 1400px){
    .fully_vnc_talk h4{
        font-size: 15px !important;

    }
    .client_adjust h3{
        font-size: 21px !important;
        line-height: 30px;
    }
} 
@media (min-width: 1024px){
    .tabset__tabs__images__image {
        width: 120% !important;
    }
    .tabset {
        overflow: visible !important;
    }

}
@media only screen and (min-width:768px){
    .client_adjust .et_pb_blurb_description {
        left: -25px;
        position: relative;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    #chat .et_pb_blurb_description {
        font-size: 15px;
        line-height: 1.6em;
    }
    .slider-container {
        height: 48vw;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1200px){
    #chat .et_pb_blurb_description {
        overflow-wrap: anywhere;
    }
    .reliable_harbor h2{
        font-size: 42px !important;
        line-height: 54px !important;
    }
    .Multi {
        max-width: 420px !important; 
    }
}
@media only screen and (min-width: 1110px){
    .axf_data_cst .et_pb_row {
        max-width: 1315px !important;
    }
}
@media only screen and (min-width: 1251px) and (max-width: 1640px){
    .axf_data_cst h3{
        font-size: 20px !important;
    }
}
@media only screen and (min-width: 1025px){
    .focus_areas .et_pb_column {
        max-width: 546px;
    }
}