/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.2
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

.ttg-primary-btn {
    color: #ffffff;
    /* min-height: 40px; */
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 20px;
    line-height: 1.2em;
    background-color: #0c4da2;
    border: none;
    border-radius: 0;
    /* padding: 15px 30px; */
    padding: 0px 0px 0px 20px;
    cursor: pointer;
    border-left: 3px solid #1D9ADD;
    display: inline-block;
    white-space: nowrap;
}

.ttg-primary-btn:hover {
    color: #ffffff;
    background-color: #0a469a;
}

.ttg-secondary-btn {
    color: var(--ttg-gravel-900);
    /* min-height: 40px; */
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 20px;
    line-height: 1.2em;
    border: none;
    border-radius: 0;
    /* padding: 15px 30px; */
    padding: 0px 0px 0px 20px;
    cursor: pointer;
    border-left: 3px solid #1D9ADD;
    display: inline-block;
    white-space: nowrap;
}

.ttg-btn-wrapper {
    padding: 15px;
    box-shadow: 0 5px 25px 0 rgb(0 0 0 / 24%) !important;
    display: inline-block;
}

.ttg-btn-wrapper.ttg-btn-wrapper--cobalt {
    color: #fff;
    background-color: #0c4da2;
}

.ttg-btn-inner {
    border-left: 3px solid #fff;
    padding-left: 15px;
    display: inline-block;
}

.ttg-btn-wrapper.ttg-btn-wrapper--cobalt .ttg-btn-inner {
    border-color: #0a92d2;
}


/*Popup*/


/* 
// .modal-open      - body class for killing the scroll
// .modal           - container to scroll within
// .modal-dialog    - positioning shell for the actual modal
// .modal-content   - actual modal w/ bg and corners and stuff
*/

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .modal {
        background-color: rgba(0, 0, 0, 0.75);
    }
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    display: flex;
    max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
    flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: min-content;
    content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    /* border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem; */
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header--empty {
    height: 0;
    padding: 0;
    border: none;
    position: relative;
}

.modal-header--empty .close {
    position: absolute;
    top: -16px;
    right: -16px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin: 0 !important;
    z-index: 1060;
}

.modal-header--empty .close:hover {
    background-color: #032575;
    color: white;
}

.modal-header .close,
.modal-header .close i {
    cursor: pointer;
}

.modal-title {
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    /* padding: 1rem; */
    /* because of embedding forms*/
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer>* {
    margin: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem);
    }
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: min-content;
    }
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.ttg-card {}

.ttg-card__image img {
    width: 100% !important;
}

.ttg-card__title {
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 20px;
    line-height: 1.2em;
    color: #0E1D49;
}


/*TTG Author Vcard*/

.ttg-author-vcard {
    background-color: #E2F2FA;
    padding: 30px 17px 40px 17px;
    margin-bottom: 50px
}

.ttg-author-vcard .vcard-meta {
    display: flex;
}

.ttg-author-vcard .vcard-meta .name,
.ttg-author-vcard .vcard-meta .suffix,
.ttg-author-vcard .vcard-meta .role {
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 22px;
}

.ttg-author-vcard .vcard-meta .name {
    color: #00AAE2;
    flex: 0 0 auto;
}

.ttg-author-vcard .suffix {
    margin-left: 10px;
    color: #10285A;
}

.ttg-author-vcard .role {
    color: #10285A;
    margin-left: 10px;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.ttg-author-vcard .vcard-content {
    display: flex;
    margin-top: 1rem;
}

.ttg-author-vcard .vcard-content .vcard-photo {
    flex: 0 0 145px;
}

.ttg-author-vcard .vcard-content .vcard-photo .photo {
    border-radius: 0;
    width: 145px
}

.ttg-author-vcard .vcard-content .vcard-bio {
    flex: 1 1 auto;
    padding-left: 1rem;
    font-size: 16px;
    font-family: "AvenirNextLTW01-Medium", Sans-serif;
}

@media only screen and (max-width: 767px) {
    .ttg-author-vcard .vcard-meta,
    .ttg-author-vcard .vcard-content{
        flex-wrap: wrap;
    }
    .ttg-author-vcard .vcard-meta .name{
        flex:1 1 100%;
        text-align: center;
    }
    .ttg-author-vcard .vcard-meta .role{
        flex:1 1 100%;
        margin-left:0;
        text-align: center;
    }    
    .ttg-author-vcard .suffix{
        display: none;
    }
    .ttg-author-vcard .vcard-content .vcard-photo {
        flex: 1 1 100%;
        text-align: center;
    }
    .ttg-author-vcard .vcard-content .vcard-bio {
        flex: 1 1 100%;
    }
  }

/*TTG VCard small */


.ttg-vcard-small{
    margin: 0;
    padding: 0;
}

.ttg-vcard-small.clickable:hover{
    background:#dff5f6;
    cursor: pointer;
}
.ttg-vcard-small .ttg-vcard-small-image,
.ttg-vcard-small .ttg-vcard-small-image.elementor-widget:not(:last-child){
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.ttg-vcard-small .ttg-vcard-small-image > .elementor-widget-container img,
.ttg-vcard-small .ttg-vcard-small-image > img{
    flex:0 0 auto;
    max-height:160px;
    width: auto;
    vertical-align: text-bottom;
}

.ttg-vcard-small .ttg-vcard-small-name,
.ttg-vcard-small .ttg-vcard-small-name.elementor-widget:not(:last-child){
    text-align: center;
    color:#0E1D49;
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 20px;
}

.ttg-vcard-small .ttg-vcard-small-name a{
    color:#0E1D49;
}
.ttg-vcard-small .ttg-vcard-small-title,
.ttg-vcard-small .ttg-vcard-small-title.elementor-widget:not(:last-child){
    text-align: center;
    color: #0a92d2;
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 14px;
    line-height: 1.2em;
    margin-bottom: 5px;
}

.ttg-vcard-small .ttg-vcard-small-company,
.ttg-vcard-small .ttg-vcard-small-company.elementor-widget:not(:last-child){
    text-align: center;
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 14px;
    line-height: 1.2em;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    /* .ttg-vcard-small {
      height:280px !important;
    } */
  }

/* .ttg-vcard-small .elementor-widget{
    margin-block-end: 0 !important;
} */

/*Clean tabs*/
.ttg-clean-tabs .elementor-tabs .elementor-tabs-wrapper{
    border-top: none;
    border-left: none;
    border-right: none;
    justify-content: center;
    display: flex;
    border-bottom: 1px solid #b8b9b9 !important;    
}
.ttg-clean-tabs .elementor-tabs .elementor-tab-title{
    max-width: 300px;
    line-height: 1.25em;
    /* border-bottom: 1px solid #b8b9b9 !important; */
}

.ttg-clean-tabs .elementor-tabs .elementor-tab-title:before,
.ttg-clean-tabs .elementor-tabs .elementor-tab-title:after{
    display: none !important;
}

.ttg-clean-tabs .elementor-tabs .elementor-tab-title.elementor-active{
    border:none !important;
    border-bottom: 3px solid #0a92d2 !important;
}

.ttg-clean-tabs .elementor-tabs-content-wrapper{
    border:none !important;
}

.ttg-clean-tabs .elementor-tab-content{
    border:none !important;
    padding-left:0 !important;
    padding-right:0 !important;
}

/*TTG tabs - for the new tabs widget*/
.ttg-tabs .e-n-tabs-heading{
    border-bottom: 1px solid #b8b9b9 !important;    
}
.ttg-tabs .e-n-tab-title{
    background:none !important;
    color:var(--e-global-color-primary) !important;
    font-family: "AvenirNextLTW01-Regular", Sans-serif;
    font-weight: 700;
    font-size:19px;
    line-height: 1.25em;
    position: relative;
    
}
.ttg-tabs .e-n-tab-title:hover,
.ttg-tabs .e-n-tab-title:focus{
    border-left:none !important;
}
    .ttg-tabs .e-n-tab-title[aria-selected=true]{
        color:#0a92d2 !important;
    }    
.ttg-tabs .e-n-tab-title:after{
    content:"";
    display: none;
    position: absolute;
    bottom: -1px;
    left:0;
    right:0;
    width:100%;
    height:3px;
    background: #111c43;
}
.ttg-tabs .e-n-tab-title[aria-selected=true]:after{
    display: block;
    background: #0a92d2;
}

@media (max-width: 767px) {
    .ttg-tabs .e-n-tab-title{
        background:#b8bbc7  !important;
    }
    .ttg-tabs .e-n-tab-title[aria-selected=true]{
        background:#111c43 !important;
        color:white !important;
    }    
    .ttg-tabs .e-n-tab-title:after{
        display:block;
    }       
    .ttg-tabs .e-n-tab-title[aria-selected=true]:after{
        height:5px;
        bottom:0px;
    }       
}


/* Block link */


.ttg-block-link,
.ttg-block-link a{
    display: block;
    position: absolute !important;
    top:0;
    bottom: 0;
    left:0;
    right: 0;
    text-indent: -99999px;
}

.elementor-editor-active .ttg-block-link,
.elementor-editor-active .ttg-block-link a{
    text-indent: 0;
    position:  relative !important;
    color:#ccc;
}

/* Grid carousel*/
.ttg-grid-carousel .jet-slick-dots li{
    position: relative;
    display: inline-block;
    width: 30px;
    height: 4px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #9B9D9C;
    border-radius: 0;
}

.ttg-grid-carousel .jet-slick-dots li.slick-active{
    background: #0A92D2;
}

/* Gradient box */
.ttg-gradient-box{
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 18px;
    color:#fff;
    background-image: linear-gradient(180deg, #0A92D2 0%, #B6DEF2 100%);
    height:180px;
    padding: 15px;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.ttg-gradient-box .elementor-heading-title{
    line-height: 1.5;
}

/*Headings*/
.ttg-heading--h3{
    color: #004A98;
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid #707372;
    padding-bottom: 3px;
}

/*Keynotes*/
.keynote-list .keynote{
    margin-bottom: 10px;
}
.keynote-list .keynote a{
    font-size: 14px;
    font-weight: 700;
    color:#0E1D49;
}

/*ttg-person-card*/
.ttg-person-card{
    padding:10px 0;
}
.ttg-person-card:not(.ttg-person-card--no-hover):hover{
    background-color: #dff5f6;
    cursor: pointer;
}


.ttg-person-card-image{
    text-align: center;
}
.ttg-person-card-image img{
    width: 50%;
}

.ttg-person-card-name{
    text-align: center;
    color:#0E1D49;
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 5px !important;
}

.ttg-person-card-title{
    text-align: center;
    color:#113E92;
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 14px;
    margin-bottom:  10px !important;
}


.ttg-person-card-company{
    text-align: center;
    font-family: "Avenir Next LT W01 Demi", Sans-serif;
    font-size: 14px;
    line-height: 1.2em;
    margin-bottom: 5px !important;
}

.ttg-person-card-link{
    display: block;
    position: absolute !important;
    top:0;
    bottom: 0;
    left:0;
    right: 0;
    text-indent: -99999px;
}

@media only screen and (max-width: 767px) {
    .ttg-person-card-image img {
      width: 100%;
    }
  }

/* ttg-carousel*/
.ttg-carousel .slick-slider{
    position: relative;
}
.ttg-carousel .slick-nav{
    top:0;
    bottom: 0;
    height:100%;
    width:75px;
    display: block;
    transform: none !important;
    margin:0 !important;
    border:none !important;
    padding:20px 0 !important;
    outline:none !important;
}

.ttg-carousel .slick-next{
    right:0;
}

.ttg-carousel .slick-prev{
    left:0;
}

@media only screen and (max-width: 767px) {
    .ttg-carousel .list-carousel-slick[data-slider_center_mode="true"] .slick-list {
        padding:0 !important;
    }
}

.ttg-carousel-pager{
    height:30px;
    color:white;
    font-size:20px;
    font-family:"Avenir Next LT W01 Demi", Sans-serif;
  }

  .ttg-carouse-pager__inner{
    display:flex;
    justify-content:center;
    align-items:center;
  }  
  .ttg-carouse-pager__inner_prev_arrow:hover,
  .ttg-carouse-pager__inner_next_arrow:hover{
    cursor: pointer;
    color:#1D9ADD;
  }

  .ttg-carouse-pager__inner_prev_arrow{
    flex:0 0 60px;
    text-align:right;
  }
  .ttg-carouse-pager__inner_next_arrow{
    flex:0 0 60px;
    text-align:left;
  }

  .ttg-carouse-pager__inner_content{
    flex:0 0 100px;
    text-align:center;
  }

  /*ttg-dismissable*/
  .ttg-dismissable{
    display: none;
    position: relative;
  }

  .elementor-editor-active .ttg-dismissable,
  .ttg-dismissable.show{
    display: inherit;
  }

  .ttg-dismissable .dismiss-action{
    position: absolute;
    right:10px;
    top:50%;
    margin-top:-9px;
    display: block;
    content:"X";
    width: 18px;
    height: 18px;
    font-size:24px;
    cursor: pointer;
    background-image: url("/wp-content/uploads/2023/11/close-x.svg");
    background-repeat: no-repeat;
    background-position: center center;
  }

  /*Bullet list*/
    .ttg-bullet-list ol > li,.ttg-bullet-list ul > li{
      padding-left: 25px;
      margin-bottom: 15px
  }
  
  .ttg-bullet-list ol > li:last-child,.ttg-bullet-list ul > li:last-child{
      margin-bottom: 0;
  }