/**
Theme Name: Ultrapress Child
Version: 1.0.0
Text Domain: ultrapress-child
Template: ultrapress
*/
:root {
    --white:#fff;
    --black:#000;
    --blue:#02073F;
    --inter:"Inter", Sans-serif;
    --transition:300ms ease-in-out;
}
body {
    overflow-x: clip;
}
.elementor-widget-text-editor p:last-child,
p:last-child {
    margin: 0;
}
.elementor-widget-text-editor p:not(:last-child),
p:not(:last-child) {
    margin: 0 0 1.2em 0;
}
.slides {
    display: grid !important;
}
.slick-arrow {
    position: absolute;
    bottom: 95px;
    width: 60px;
    height: 60px;
    background-color: var(--blue);
    border: 1px solid var(--white);
}
.right_arrow .elementor-icon-wrapper,
.left_arrow .elementor-icon-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
div.elementor-element.slider_container .slick-list .slick-slide .slides {
    height: calc(100vh - 151px);
}
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
	gap:64px;
} 
.testimonial-quote p {
    line-height: 1.2;
    font-size: 40px;
    color: #5E5E5E;
    letter-spacing: -0.01em;
}
div.author-info>* {
    color: var(--black);
}
div.author-info h4 {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 700;
}
div.author-info p {
    font-size: 24px;
    font-weight: 400;
}
.testimonial-quote {
    margin-bottom: 45px;
}
.custom-slider-controls {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-top: 64px;
}
.custom-slider-controls>div {
    border: 1px solid var(--black);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.custom-slider-controls>div svg path {
    transition: var(--transition);
}
.custom-slider-controls>div:hover svg path,
.custom-slider-controls>div:focus svg path {
    fill: var(--white);
}
div.slider-image-wrapper,
div.focus-card-image {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 80%;
}
div.slider-image-wrapper {
    height: 100%;
}
.speaker-card {
    position: relative;
}
div.focus-card-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180.03deg, rgba(6, 3, 92, 0) 55.37%, #010147 115.09%);
    z-index: 1;
}
div.slider-image-wrapper img,
div.focus-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
div.focus-card-image .focus-card-title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}
.speaker-meta-wrapper>* {
    font-family: var(--inter);
}
div.speaker-photo>img {
    width: 134px;
    height: 134px;
    object-fit: contain;
    border-radius: 99px;
    border: 3px solid #fff;
    margin: 0 auto 20px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.speaker-meta-wrapper {
    text-align: center;
}
div.speaker-meta-wrapper h4 {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0;
    font-family: var(--inter);
}
.speaker-meta-wrapper p {
    font-size: 16px;
	margin:0;
}
.speakers-tabs-nav {
    display: flex;
    max-width: 1620px;
    justify-content: flex-end;
    margin-inline: auto;
    margin-bottom: 65px;
    margin-top: -140px;
    flex-wrap: wrap;
}
div.speakers-tabs-nav button {
    width: 265px;
    background-color: transparent;
    padding: 16px;
    font-size: 32px;
    font-weight: 600;
    color: var(--blue);
    border: 1px solid var(--blue);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}
div.speakers-tabs-nav button:focus,
div.speakers-tabs-nav button:hover,
div.speakers-tabs-nav button.active {
    background-color: transparent;
    color: var(--white);
    border-color: var(--blue);
    outline: none;
}
.speakers-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(30px);
}
/* Active tab */
.speakers-tab-panel.active {
  display: block;
}
/* Fade out animation */
.elementor-widget-n-tabs .e-n-tabs-content>.e-con:not(.e-active),
.speakers-tab-panel.fade-out {
  animation: fadeOutRight 0.3s ease forwards;
}
.elementor-widget-n-tabs .e-n-tabs-content>.e-con,
.speakers-tab-panel.active {
  animation: fadeInRight 0.4s ease forwards;
}
/* Keyframes */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}
/* Focus slider
==================================== */
div.focus-card-image .focus-card-title {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    font-family: var(--inter);
    letter-spacing: -0.06em;
    padding: 36px;
    margin: 0;
}
div.focus-card-image::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(4, 0, 122, 0.72) 100%);
}
div.focus-card-image {
    padding-bottom: calc(1.28*100%);
}
.focus-area-section .slick-list {
    overflow: visible;
    margin: 0 -32px;
    padding-right: 5rem;
}
.focus-area-section .slick-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    background-color: var(--white);
    z-index: 22;
    width: 100vw;
}
.focus-area-section .slick-list .slick-slide {
    padding: 0 32px;
}
.focus-card-icon {
    position: absolute;
    right: 22px;
    top: 22px;
}
/* Home News section
============================================ */
.utal-readmore a {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    width: fit-content;
}
.utal-readmore a:hover {
    gap: 10px;
}
.utal-readmore a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./assets/img/SVG.svg);
}
.utal .blog-image img {
    transition: var(--transition);
}
.utal .blog-image:hover img {
    transform: scale(1.1);
}
.border-bottom {
    position: relative;
}
.border-bottom::after {
    content: "";
    bottom: 0;
    width: 200vw;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
/* event tabs section
================================================= */
.event_tab.elementor-widget-n-tabs .e-n-tabs-heading>button {
    width: 33.33%;
    flex: 1;
}
.event_tab.elementor-widget-n-tabs .e-n-tabs-content .e-n-tabs-heading {
	width: auto;
	margin-left:auto;
}
@media (min-width:1025px) {
/* 	.event_tab.elementor-widget-n-tabs .e-n-tabs-content .e-n-tabs-heading>button {
		width: 100%;
		flex: none;
	} */
}
.event_tab.elementor-widget-n-tabs .e-n-tabs-heading>button .e-n-tab-title-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 5px;
    flex-wrap: wrap;
}
.event_tab.elementor-widget-n-tabs .e-n-tabs-heading>button .e-n-tab-title-text span {
    font-size: 20px;
    font-weight: 600;
}
/* Highlight slider
=================================== */
div.slide-content h3 {
    margin: 0;
    font-weight: 700;
    font-size: 40px;
    text-transform: none;
}
.slide-desc {
    font-size: 25px;
}
div.slide-content * {
    color: var(--white);
}
.slide-content {
    background-color: #010A36;
    padding: 62px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}
.highlight-slide-item {
    display: grid !important;
    grid-template-columns: 1.45fr 1fr;
}
.highlight-slider .slick-list {
    padding-right: 10rem;
    overflow: visible;
}
.about_highlight_slider .highlight-slider .slick-list {
    overflow: hidden;
    padding-right: 18rem;
}
.highlight-slider .slick-list .slick-slide {
    transition: var(--transition);
    transform-origin: right;
}
.highlight-slider .slick-list .slick-slide.slick-current + .slick-slide,
.highlight-slider .slick-list .slick-slide.slick-current + .slick-slide + .slick-slide {
    transform-origin: left;
}
.highlight-slider .slick-list .slick-slide:not(.slick-current) {
    transform: scale(0.5);
    opacity: 0.3;
}
.highlight-slider-wrapper .custom-slider-controls {
    margin: 0;
}
.highlight-slider-wrapper .custom-slider-controls>div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 22;
    border-color: var(--white);
    overflow: hidden;
}
.highlight-slider-wrapper .custom-slider-controls>div:hover svg path,
.highlight-slider-wrapper .custom-slider-controls>div:focus svg path {
    fill: var(--black);
}
.highlight-slider-wrapper .custom-slider-controls>div svg path {
    fill: var(--white);
}
.highlight-slider-wrapper .custom-slider-controls>div.custom-prev {
    left: -90px;
}
.highlight-slider-wrapper .custom-slider-controls>div.custom-next {
    right: 4rem;
}
.highlight-slider-wrapper .slick-dots {
    padding-right: 10rem;
    margin-top: 25px;
}
.about_highlight_slider .highlight-slider-wrapper .slick-dots {
    padding-right: 18rem;
}
.error404 .ultrapress-default-header,
.highlight-slider-wrapper .slick-dots li button {
    display: none;
}
.highlight-slider-wrapper .slick-dots li {
    margin: 0;
    width: 100%;
    height: 4px;
    background-color: #325E65CF;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: none;
}
.highlight-slider-wrapper .slick-dots li.slick-active {
    display: block;
}
@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}
.highlight-slider-wrapper .slick-dots li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F9C31F;
    border-radius: 10px;
}
.highlight-slider-wrapper .slick-dots li.slick-active::before {
    animation: progress 8s linear forwards;
}
body .gallery-spacing-custom .elementor-image-gallery .gallery-icon {
    overflow: hidden;
    height: 0;
    padding-bottom: 65%;
    position:relative;
}
.gallery-spacing-custom .elementor-image-gallery .gallery-icon a img {
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-spacing-custom .elementor-image-gallery .gallery-icon a:hover img {
    transform: scale(1.1);
}
/* link hover animation
============================================= */
.outline_button .elementor-button,
body footer.ut-site-footer div.elementor-element a, 
body header.ut-site-header div.elementor-element .ut-custom-menu ul.menu > li > a {
    position: relative;
    width: fit-content;
}
.outline_button .elementor-button::after,
body footer.ut-site-footer div.elementor-element a::before, 
body header.ut-site-header div.elementor-element .ut-custom-menu ul.menu > li > a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: 0;
    left: 0;
    top: auto;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
    opacity: 1 !important;
}
.outline_button .elementor-button .elementor-button-icon svg {
    width: 27px;
    height: 27px;
}
body footer.ut-site-footer div.elementor-element .elementor-widget-social-icons a::before {
    content: none;
}
body footer.ut-site-footer div.elementor-element .elementor-widget-text-editor a::before,
.outline_button .elementor-button:hover::after,
header.ut-site-header .elementor-element .ut-custom-menu .menu > li.current-menu-item > a::before, 
body footer.ut-site-footer div.elementor-element ul li.current-menu-item  a::before, 
body footer.ut-site-footer div.elementor-element a:hover::before, 
header.ut-site-header .elementor-element .ut-custom-menu .menu > li > a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}
body footer.ut-site-footer div.elementor-element .elementor-widget-text-editor a:hover:before {
    transform-origin: right;
    transform: scaleX(0);
}
div.elementor-element.outline_button .elementor-button>span.elementor-button-content-wrapper {
    transition: var(--transition);
}
div.elementor-element.outline_button .elementor-button:hover>span.elementor-button-content-wrapper {
    gap: 15px;
}
/* key partners
=================================== */
.key_partners .event_tab.elementor-widget-n-tabs .e-n-tabs-heading>button .e-n-tab-title-text {
    justify-content: center;
}
.about_menu .ut-custom-menu > ul > li {
    margin: 0;
}
div.elementor-element.right_half,
div.elementor-element.left_half {
    width: 100%;
    max-width: 790px;
}
div.elementor-element.left_half {
    margin-left: auto;
}
.elementor-widget-text-editor>*:last-child {
    margin-bottom: 0;
}
/* contact page
========================================= */
div.elementor-element.contact_wrapper {
    background: #FAFAFA0D;
    border: 1px solid;
    border-image-source: linear-gradient(311.66deg, rgba(250, 250, 250, 0) 3.7%, rgba(252, 252, 252, 0.3) 40.27%, rgba(255, 255, 255, 0) 93.18%);
    box-shadow: 0px 1px 2px 0px #0000000D;
    backdrop-filter: blur(13px);
    border-image-slice: 1;
}
.contact_list {
    border: 1px solid;
    border-image-source: linear-gradient(311.66deg, rgba(250, 250, 250, 0.3) 3.7%, rgba(252, 252, 252, 0) 40.27%, rgba(255, 255, 255, 0.3) 93.18%);
    box-shadow: 1px 0px 2px 0px #0000000D;
    backdrop-filter: blur(13px)
}
div.elementor-element .wpcf7  form.wpcf7-form input:not([type=submit]),
div.elementor-element .wpcf7  form.wpcf7-form select,
div.elementor-element .wpcf7  form.wpcf7-form textarea {
    border: 1px solid #FAFAFA4D;
    background-color: #FAFAFA1A;
    border-radius: 10px;
    font-size: 14px;
    color: var(--white);
    font-family: var(--inter);
    resize: none;
    outline: none;
    padding: 13px 11px;
}
div.elementor-element .wpcf7  form.wpcf7-form textarea {
    height: 146px;
}
div.elementor-element .wpcf7  form.wpcf7-form :not([type=submit])::placeholder,
div.elementor-element .wpcf7  form.wpcf7-form select::placeholder,
div.elementor-element .wpcf7  form.wpcf7-form textarea::placeholder {
    color: #FAFAFA80;
    opacity: 1;
}
div.elementor-element .wpcf7  form.wpcf7-form p {
    margin: 0;
}
div.elementor-element .wpcf7  form.wpcf7-form label {
    color: #FAFAFACC;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--inter);
    display: block;
    margin-bottom: 5px;
}
div.elementor-element .wpcf7  form.wpcf7-form,
.form-name-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
div.elementor-element .wpcf7  form.wpcf7-form {
    grid-template-columns: 1fr;
}
div.elementor-element .wpcf7  form.wpcf7-form input[type=submit] {
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--inter);
    color: #FAFAFA;
    padding: 12px 32px;
    background-color: #FFA116;
    border-radius: 10px;
    text-transform: none;
    border-color: #FFA116;
    transition: var(--transition);
    background-image: url(./assets/img/submit.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(100% - 16px) 11px; 
    letter-spacing: 0.2px;
    padding-right: 45px;
}
div.elementor-element .wpcf7  form.wpcf7-form input[type=submit]:hover {
    border-color:var(--white);
    background-color: transparent;
    color: var(--white);
    padding-right: 52px;
}
.wpcf7-form-control-wrap {
    display: block;
}
.wpcf7 form .wpcf7-response-output {
    font-size: 16px;
    color: var(--white);
    padding: 10px;
    font-family: var(--inter);
}
.admin-bar .select2-container--open .select2-dropdown--below {
    margin-top: 32px;
}
body .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    color: #FAFAFA80;
    padding-inline: 11px;
    font-family: var(--inter);
}
body .select2-container--default .select2-selection--single .select2-selection__rendered:focus {
    color: var(--white);
}
body .select2-container--default .select2-selection--single {
    height: 50px;
    border: 1px solid #FAFAFA4D;
    background-color: #FAFAFA1A;
    border-radius: 10px;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    right: 10px;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent;
    border-width: 5px 5px 0 5px;
}
body .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #ffffff transparent;
    border-width: 0 5px 5px 5px;
}
body .select2-results__option {
    padding: 10px;
    font-family:var(--inter);
}
body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #001578;
}
body .wpcf7-spinner {
    background-color: var(--white);
}
body .wpcf7-spinner::before {
    background-color: var(--black);
}
span.wpcf7-not-valid-tip {
    font-size: 14px;
    font-family: var(--inter);
}
.speakers-tabs-container {
    overflow-x: clip;
}
header.ut-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
.admin-bar header.ut-site-header {
    top: 32px;
}
body:not(.error404) {
    padding-top: 141px;
}
header .ut-custom-menu ul.custom-menu li.menu-item a,
header .ut-site-logo img,
header.ut-site-header>.elementor>div.elementor-element:first-child {
    overflow: hidden;
    transition: 400ms ease-in-out;
}
header.ut-site-header.sticky>.elementor>div.elementor-element:not(:first-child) .elementor-button,
header.ut-site-header.sticky>.elementor>div.elementor-element:not(:first-child) .ut-custom-menu ul.custom-menu li.menu-item a {
    font-size: 16px;
}
header.ut-site-header>.elementor>div.elementor-element:first-child {
    max-height: 200px;
}
header.ut-site-header.sticky>.elementor>div.elementor-element .ut-site-logo img {
    max-width: 180px;
}
header.ut-site-header.sticky>.elementor>div.elementor-element:first-child {
    max-height: 0;
}
.elementor-widget-text-editor.remove_list_margin ul {
    margin: 0 0 0em 1.2em;
}
.elementor-widget-text-editor ul li:not(:last-child) {
    margin-bottom: 8px;
}
/*  button hover animation
======================================= */
div.elementor-element.right_arrow>.elementor-icon-wrapper,
div.elementor-element.left_arrow>.elementor-icon-wrapper,
body .elementor-element.elementor-widget-n-tabs > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
div.speakers-tabs-nav button,
.custom-slider-controls>div,
.elementor-widget-button .elementor-button {
    position: relative;
    overflow: hidden;
}
div.elementor-element.right_arrow>.elementor-icon-wrapper,
div.elementor-element.left_arrow>.elementor-icon-wrapper {
    background-color: #02073F;
}
div.elementor-element.right_arrow>.elementor-icon-wrapper>*,
div.elementor-element.left_arrow>.elementor-icon-wrapper>*,
body .elementor-element.elementor-widget-n-tabs > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title>*,
div.speakers-tabs-nav button>*,
.custom-slider-controls>div>*,
.elementor-widget-button .elementor-button>span {
    position: relative;
    z-index: 22;
}
div.elementor-element.right_arrow>.elementor-icon-wrapper::before,
div.elementor-element.left_arrow>.elementor-icon-wrapper::before,
body .elementor-element.elementor-widget-n-tabs > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title::before,
div.speakers-tabs-nav button::before,
.custom-slider-controls>div::before,
.elementor-widget-button .elementor-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--white);
    transition: transform .3s ease-in-out;
    transform: scaleY(0);
    transform-origin: top;
}
div.elementor-element.right_arrow>.elementor-icon-wrapper .elementor-icon svg,
div.elementor-element.left_arrow>.elementor-icon-wrapper .elementor-icon svg {
    transition: var(--transition);
}
div.elementor-element.left_arrow>.elementor-icon-wrapper:hover .elementor-icon svg,
div.elementor-element.right_arrow>.elementor-icon-wrapper:hover .elementor-icon svg {
    fill: #02073F;
}
div.elementor-element.right_arrow>.elementor-icon-wrapper::before,
div.elementor-element.left_arrow>.elementor-icon-wrapper::before,
.highlight-slider-wrapper .custom-slider-controls>div::before {
    background-color: var(--white);
}
.custom-slider-controls>div::before {
    background-color: currentColor;
}
body .elementor-element.elementor-widget-n-tabs > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title:hover {
    background-color: transparent;
}
body .elementor-element.elementor-widget-n-tabs > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title::before,
div.speakers-tabs-nav button::before {
    background-color: #06035C;
}
div.speakers-tabs-nav button::before {
    z-index: -1;
}
div.elementor-element.left_arrow>.elementor-icon-wrapper:hover:before,
div.elementor-element.right_arrow>.elementor-icon-wrapper:hover:before,
body .elementor-element.elementor-widget-n-tabs > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]::before,
body .elementor-element.elementor-widget-n-tabs > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title:hover:before,
div.speakers-tabs-nav button:hover::before,
div.speakers-tabs-nav button.active::before,
.custom-slider-controls>div:focus:before,
.elementor-widget-button .elementor-button:focus:before,
.custom-slider-controls>div:hover:before,
.elementor-widget-button .elementor-button:hover:before {
    transform: scaleY(1);
    transform-origin: bottom;
}
.outline_button .elementor-button::before {
    content: none;
}
.large_button_link {
    overflow: hidden;
}
.large_button_link .elementor-icon {
    transition: all 0.8s ease;
}
a.large_button_link:hover .elementor-icon,
.large_button_link a:hover .elementor-icon {
    animation: moveArrow 0.8s forwards;
}
@keyframes moveArrow {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: translate(20px, -20px);
        opacity: 0;
    }
    51% {
        transform: translate(-20px, 20px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}
/* BLog Single 
======================================= */
.single-post .entry-header h1 {
    text-transform: none;
    line-height: 1.1;
    font-size: 70px;
}
li.prev-menu {
    margin-bottom: 10px !important;
    text-transform: uppercase;
}
li.prev-menu i {
    margin-right: 5px;
}
header .ut-custom-menu ul.sub-menu {
    min-width: 300px;
}
div.elementor-element.filter_img img {
    filter: brightness(0.3);
}
.elementor div.elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs[data-touch-mode=false]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false],
.elementor div.elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs[data-touch-mode=false]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover {
	background-color:transparent;
}
/* responsive
======================================= */
@media (max-width:1680px) {
    .single-post .entry-header h1 {
        font-size: 50px;
    }
    body:not(.error404) {
        padding-top: 122px;
    }
    header.ut-site-header.sticky>.elementor>div.elementor-element:not(:first-child) .elementor-button,
    header.ut-site-header.sticky>.elementor>div.elementor-element:not(:first-child) .ut-custom-menu ul.custom-menu li.menu-item a {
        font-size: 14px;
    }
    header.ut-site-header.sticky>.elementor>div.elementor-element .ut-site-logo img {
        max-width: 150px;
    }
    .slide-desc {
        font-size: 20px;
    }
    .testimonial-quote p {
        font-size: 36px;
    } 
    .custom-slider-controls>div {
        width: 48px;
        height: 48px;
    }
    .custom-slider-controls>div svg {
        width: 20px;
        height: 20px;
    }
    .right_arrow .elementor-icon-wrapper, .left_arrow .elementor-icon-wrapper {
        height: 48px;
    }
    .highlight-slider-wrapper .custom-slider-controls>div.custom-prev {
        left: -60px;
    }
    .about_highlight_slider .custom-slider-controls>div.custom-next {
        right: 14rem;
    }
    div.focus-card-image .focus-card-title {
        padding: 25px;
    }
    .speaker-meta-wrapper p {
        font-size: 16px;
    }
    div.speaker-meta-wrapper h4 {
        font-size: 20px;
    }
    div.focus-card-image .focus-card-title {
        font-size: 22px;
    }
}
@media (max-width:1190px) and (min-width:1025px) {
    header .elementor>div:nth-child(1) .elementor-widget-icon-list,
    header .elementor>div:nth-child(2) .e-con-inner>div:nth-child(2) .elementor-widget-button {
        display: none;
    }
    header .elementor>div:nth-child(1) .e-con-inner {
        justify-content: center;
    }

}
@media (max-width:1024px) {
    .single-post .entry-header h1 {
        font-size: 36px;
    }
    .event_tab.elementor-widget-n-tabs .e-n-tabs-heading>button .e-n-tab-title-text {
        font-size: 22px;
    }
    .event_tab.elementor-widget-n-tabs .e-n-tabs-heading>button .e-n-tab-title-text span {
        font-size: 16px;
    }
    body:not(.error404) {
        padding-top: 75px;
    }
    div.focus-card-image .focus-card-title {
        font-size: 20px;
    }
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
		gap:32px;
		row-gap:56px;
    }
    div.focus-card-image .focus-card-title {
        padding: 25px;
    }
    body .slick-dotted.slick-slider {
        margin: 0;
    }
    .focus-area-section .slick-list {
        margin: 0 -16px;
    }
    .focus-area-section .slick-list .slick-slide {
        padding: 0 16px;
    }
    div.speakers-tabs-nav button {
        padding: 16px 32px;
        font-size: 24px;
        width: auto;
    }
    .about_highlight_slider .highlight-slider-wrapper .slick-dots,
    .about_highlight_slider .highlight-slider .slick-list,
    .highlight-slider .slick-list {
        padding-right: 0;
    }
    .highlight-slider-wrapper .custom-slider-controls>div {
        display: none;
    }
    .slide-content {
        padding: 32px;
    }
    div.slide-content h3 {
        font-size: 32px;
    }
    .highlight-slider-wrapper .slick-dots {
        padding-right: 0;
    }
    header .ut-custom-menu ul.custom-menu.mobile-layout-hamburger li:not(:last-child) {
        margin-bottom: 0;
    }
    header .ut-custom-menu ul.custom-menu.mobile-layout-hamburger li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }
    body header.ut-site-header div.elementor-element .ut-custom-menu ul.menu > li > a {
        width: 100%;
    }
    header .utal .mobile-layout-hamburger .menu-item-has-children > a:after {
        position: static;
    }
    header .ut-custom-menu ul.custom-menu.mobile-layout-hamburger {
        max-width: 380px;
        left: auto;
        right: 0;
        transform: translateX(100%);
    }
    header .utal .custom-menu.mobile-layout-hamburger .close {
        font-size: 36px;
    }
    .speakers-tabs-nav {
        margin-bottom: 25px;
        margin-top: -85px;
    }
    .testimonial-quote p {
        font-size: 30px;
    }
    .testimonial-quote {
        margin-bottom: 32px;
    }
    div.elementor-element.slider_container .slick-list .slick-slide .slides {
        height: 550px;
    }
    header .elementor-button {
        display: block;
    }
}
@media (max-width:781px) {
    .admin-bar header.ut-site-header {
        top: 46px;
    }
}
@media (max-width:767px) {
	div.elementor-element.slider_container .slick-list .slick-slide .slides {
		height: 480px;
	}
    div.elementor-element.icon_list_grid .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon {
        padding-inline-end:8px;
    }
    div.speakers-tabs-nav button {
        flex: 1;
        padding: 12px 25px;
    }
    body .elementor-image-gallery .gallery.gallery-columns-4 .gallery-item {
        max-width: 50%;
    }
    body .elementor div.elementor-element .gallery.gallery-columns-4 figure.gallery-item {
        padding: 0 25px 25px 0;
    }
    .e-n-tabs .e-n-tabs-content .e-active {
        overflow: hidden;
    }
    .focus-area-section .slick-list {
        margin: 0 -10px;
    }
    .focus-area-section .slick-list .slick-slide {
        padding: 0 10px;
    }
    header .utal .custom-menu.mobile-layout-hamburger .close {
        right: 20px;
    }
    .home .elementor .elementor-background-video-embed {
        transform: translate(-50%,-50%) scale(1.1);
    }
    .elementor-invisible {
        visibility: visible !important;
    }

    .elementor-element {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    .elementor-widget-text-editor p:not(:last-child), p:not(:last-child) {
        margin: 0 0 0.95em 0;
    }
    footer .ut-custom-menu.layout-horizontal ul.custom-menu li {
        margin: 0;
    }
    .speakers-tabs-nav {
        justify-content: flex-start;
    }
    .custom-slider-controls {
        margin-top: 32px;
    }
    body div.elementor-element.e-con-full.e-grid.icon_list_wrapp.e-con.e-child {
        display: flex;
        flex-direction: column;
        gap: 36px;
    }
    .testimonial-quote {
        margin-bottom: 20px;
    }
    .testimonial-quote p {
        font-size: 24px;
    }
    div.author-info p,
    div.author-info h4 {
        font-size: 16px;
    }
    .speakers-tabs-nav {
        margin-top: 0;
    }
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    div.elementor-element .wpcf7 form.wpcf7-form, .form-name-wrapper     {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    div.slide-content h3 {
        font-size: 24px;
    }
}
@media (max-width:575px) {
    .speakers-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .highlight-slide-item {
        grid-template-columns: 1fr;
    }
    .slide-content {
        padding: 25px;
        gap: 20px;
    }
}