/* Animations */
.fade_in {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.fade_in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade_out {
  opacity: 1;
  transition: opacity 0.8s ease-out;
}
.fade_out.visible {
  opacity: 0;
}

.slide_in_top {
  opacity: 0;
  transform: translateY(-50px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide_in_top.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide_in_bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide_in_bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide_in_left {
  opacity: 0;
  transform: translateX(-50px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide_in_left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide_in_right {
  opacity: 0;
  transform: translateX(50px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide_in_right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide_out_top {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide_out_top.visible {
  opacity: 0;
  transform: translateY(-50px);
}

.slide_out_bottom {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide_out_bottom.visible {
  opacity: 0;
  transform: translateY(50px);
}

.slide_out_left {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide_out_left.visible {
  opacity: 0;
  transform: translateX(-50px);
}

.slide_out_right {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide_out_right.visible {
  opacity: 0;
  transform: translateX(50px);
}

/* tables design */
.bg_green thead tr th {
    background: #ddf7a0ff;
}
.bg_green tr th,
.bg_green tr td {
    color: #002340;
}
.bg_green tbody tr:nth-child(even) {
    background: #b4ff00;
}
.bg_green tbody tr:nth-child(odd) {
    background: #FFFFFF;
}
.bg_blue thead tr th {
    background: #CCD3D9;
}
.bg_blue tbody {
    color: #002340;
}
.bg_blue tbody tr:nth-child(even) {
    background: #002340;
    color: #FFFFFF;
}
.bg_blue tbody tr:nth-child(odd) {
    background: #FFFFFF;
}
.bg_white thead tr th {
    background: #FFFFFF;
}
.bg_white thead tr th {
    color: #002340;
}
.bg_white tbody {
    color: #002340;
}
.bg_white tbody tr:nth-child(odd) {
    background: #f1f1f1;
}
.bg_white tbody tr:nth-child(even) {
    background: #FFFFFF;
 }
 /* Only color the last column of the table */
.bg_green.color-last-column td:last-child {
    background-color: #b4ff00;
    color: #002340;
}
.bg_green.color-last-column tbody tr:nth-child(even) {
    background: #eeebeb;
}

.bg_blue.color-last-column td:last-child {
    background-color: #002340;
    color: white;
}
.bg_blue.color-last-column tbody tr:nth-child(even) {
    background: #eeebeb;
    color: #002340;
}

.bg_white.color-last-column td:last-child {
    background-color: #002340;
    color: white;
}
.bg_white.color-last-column tbody tr:nth-child(even) {
    background: #eeebeb;
    color: #002340;
}

@media (max-width: 576px) {
    .description-full{
        overflow-x: auto;
    }
}

 .vimeo-fullscreen-container.no-controls.d-none.d-md-block {
    cursor: pointer;
    pointer-events: none;
}

/* content carousel */

.content-carousel-component-container {
    position: relative;
    overflow: hidden;
}

.content-carousel-component-container .carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.content-carousel-component-container .carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    border-radius: 16px;
}

.content-carousel-component-container .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #002340;
    border: 1px solid #002340;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    padding: 5px 14px;
}

.content-carousel-component-container h1,
.content-carousel-component-container h2,
.content-carousel-component-container h3,
.content-carousel-component-container h4,
.content-carousel-component-container h5,
.content-carousel-component-container h6,
.content-carousel-component-container p {
    margin-bottom: 0;
}

.content-carousel-component-container .carousel-btn.prev { left: 5%; }
.content-carousel-component-container .carousel-btn.next { right: 5%; }

.content-carousel-component-container .carousel-dots {
    text-align: center;
    margin-top: 10px;
}

.content-carousel-component-container .carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.content-carousel-component-container .carousel-dots .dot.active {
    background: #002340;
}

.content-carousel-component-container .carousel-img img {
    width: 100%;
}

.content-carousel-component-container .carousel-text {
    width: 65%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    margin: 0 auto;
}
 @media (max-width: 576px) {
    .content-carousel-component-container .carousel-text {
        width: 100%;
    }
 }

 /* stats component */

 
  .fixed-height {
    height: 250px;
    object-fit: cover; 
  }

 .stats-component-container .fixed-height {
    height: 200px;
    object-fit: contain;
}

/* five images in a grid */
.five-images-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.five-images-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* clickable images */

.clickable-images-container .fixed-height {
    object-fit: contain;
}

/* testimonials */
.testimonials-component-container .card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonials-component-container .image-wrapper img {
    max-width: 120px;
    object-fit: contain;
}

.testimonials-top,
.testimonials-bottom {
    min-height: 0;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}
@media (min-width: 768px) {
    .testimonials-component-container .testimonials-top {
        flex: 1 1 60%;
    }

    .testimonials-component-container .testimonials-bottom {
        flex: 1 1 40%;
    }

    .testimonials-component-container .image-wrapper img {
        max-width: unset;
    }
    .custom-height {
        height: 100%;
    }
}


/* login advantages component */

.icon-desc img.icon {
    width: 45px;
}
.icon-desc {
    gap: 20px;
}
.paragraph-component-description {
    word-break: break-word;
}

/* yettel app */

.yettel-app-left-image img {
    height: 315px;
}

.yettel-app-component-wrap img[data-align="left"] {
  display: block;
}

.yettel-app-component-wrap img[data-align="center"] {
  display: block;
  margin: auto;
}

.yettel-app-component-wrap img[data-align="right"] {
  display: block;
  margin: 0 0 0 auto;
}

.custom-component .yettel-app-left-button p a {
    text-decoration: none;
}
.yettel-app-left {
    position: relative;
    overflow: hidden;
}
.yettel-app-right {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1199px) {
    .yettel-app-component-container .yettel-app-right {
        width: 40%;
    }
}

.yettel-app-component-container .yettel-app-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.yettel-app-component-container .yettel-app-slide {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    border-radius: 16px;
}

.yettel-app-component-container .yettel-app-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: #FFFFFF;
    color: #002340;
    border: 1px solid #FFFFFF;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    padding: 5px 14px;
}

.yettel-app-component-container .yettel-app-btn.prev { left: 5%; }
.yettel-app-component-container .yettel-app-btn.next { right: 5%; }

.yettel-app-component-container .yettel-app-dots {
    text-align: center;
    margin-top: 10px;
}

.yettel-app-component-container .yettel-app-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.yettel-app-component-container .yettel-app-dots .dot.active {
    background: #FFFFFF;
}

/* general color for button insteaf of default */
.button-wrapper {
    color: #002340;
}

  /* .node--type-privacy .node--type-archive .node--type-faqs .node--type-services2 */


.node--type-privacy .container-fluid.g-0,
.node--type-archive .container-fluid.g-0,
.node--type-faqs .container-fluid.g-0,
.node--type-services2  .container-fluid.g-0{
    margin-right: auto;
    margin-left: auto;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1280px;
}

.sidebar_first .menu--privacy-menu li a,
.sidebar_first .menu--archive-menu li a,
.sidebar_first .menu--services-menu li a,
.sidebar_first .menu--faqs-menu li a {
    color: #1a1a1a;
    padding: 15px 25px;
    display: block;
    opacity: 1;
}

.node--type-privacy p,
.node--type-archive p,
.node--type-services2 p,
.node--type-faqs p {
    color:#002340;
}
.node--type-privacy .field--name-body a,
.node--type-privacy .field--name-body a:hover,
.node--type-privacy .field--name-field-privacy-faq a,
.node--type-privacy .field--name-field-privacy-faq a:hover,
.node--type-archive .field--name-body a,
.node--type-archive .field--name-body a:hover,
.node--type-archive .field--name-field-privacy-faq a,
.node--type-archive .field--name-field-privacy-faq a:hover,
.node--type-services2 .field--name-body a,
.node--type-services2 .field--name-body a:hover,
.node--type-services2 .field--name-field-privacy-faq a,
.node--type-services2 .field--name-field-privacy-faq a:hover,
.node--type-faqs .field--name-body a,
.node--type-faqs .field--name-body a:hover,
.node--type-faqs .field--name-field-privacy-faq a,
.node--type-faqs .field--name-field-privacy-faq a:hover {
    color: inherit;
    text-decoration: underline;
}
.sidebar_first ul.clearfix.nav {
    display: block;
}

.sidebar_first .menu--privacy-menu li a.active,
.sidebar_first .menu--archive-menu li a.active,
.sidebar_first .menu--services-menu li a.active,
.sidebar_first .menu--faqs-menu li a.active {
    position: relative;
    color: #FFFFFF;
    background-color: #002340;
    text-align: left;
    /* vertical-align: middle; */
    width: 100%;
    display: block;
    padding-right: 28px;
}
.sidebar_first .block{
   padding: 0px 15px;
}

.sidebar_first .menu--privacy-menu li a.active::after,
.sidebar_first .menu--archive-menu li a.active::after,
.sidebar_first .menu--services-menu li a.active::after,
.sidebar_first .menu--faqs-menu li a.active::after {
    content: ">";
    /* font-family: "Font Awesome 5 Free"; */
    font-weight: 100;
    font-size: 20px;
    color: white;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
}

/* General styles for the menu slider */
nav#block-bootstrap-subtheme-privacymenu-2 li a.nav-link,
nav#block-bootstrap-subtheme-archivemenu li a.nav-link,
nav#block-bootstrap-subtheme-servicesmenu li a.nav-link ,
nav#block-bootstrap-subtheme-faqsmenu li a.nav-link {
    font-size: 11px;
    font-weight: 300;
    text-align: center;
    color:var(--primary-color);
    opacity: 1;
    justify-content: center;
    display: flex;
    vertical-align: middle;
    line-height: 13px;
    align-items: center;
}

nav#block-bootstrap-subtheme-privacymenu-2,
nav#block-bootstrap-subtheme-archivemenu,
nav#block-bootstrap-subtheme-servicesmenu,
nav#block-bootstrap-subtheme-faqsmenu {
    margin-top: 30px;
    margin-bottom: 50px;
}

nav#block-bootstrap-subtheme-privacymenu-2 li,
nav#block-bootstrap-subtheme-archivemenu li,
nav#block-bootstrap-subtheme-servicesmenu li ,
nav#block-bootstrap-subtheme-faqsmenu li {
    display: inline-grid;
    background-color: #F5F5F5;
    padding: 10px;
    border-radius: 5px;
}

/* Individual menu items */
nav#block-bootstrap-subtheme-privacymenu-2 .swiper-slide,
nav#block-bootstrap-subtheme-archivemenu .swiper-slide,
nav#block-bootstrap-subtheme-servicesmenu .swiper-slide,
nav#block-bootstrap-subtheme-faqsmenu .swiper-slide {
    background-color: #F5F5F5;
    color: var(--primary-color);
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}

/* Active menu item */
.menu--privacy-menu .swiper-slide.active,
.menu--privacy-menu .swiper-slide:hover,
.menu--archive-menu .swiper-slide.active,
.menu--archive-menu .swiper-slide:hover,
.menu--services-menu .swiper-slide.active,
.menu--services-menu .swiper-slide:hover,
.menu--faqs-menu .swiper-slide.active,
.menu--faqs-menu .swiper-slide:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

/* Adjust spacing */
.tns-item {
    margin-right: 25px; /* Space between items */
}

/* Responsive styles */
@media (max-width: 768px) {
    .tns-item {
        margin-right: 15px;
    }
}

/* Custom Navigation Arrows */
.custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f5f5f5;
    color: var(--primary-color);
    border: none;
    padding: 2px 10px 2px 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 100;
}

/* Left arrow */
.custom-prev {
    left: -30px;
}

/* Right arrow */
.custom-next {
    right: -30px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .custom-prev, .custom-next {
        display: none;
    }
}

nav#block-bootstrap-subtheme-privacymenu-2,
nav#block-bootstrap-subtheme-archivemenu,
nav#block-bootstrap-subtheme-servicesmenu,
nav#block-bootstrap-subtheme-faqsmenu {
    position: relative;
}

nav#block-bootstrap-subtheme-privacymenu-2 .tns-item:hover,
nav#block-bootstrap-subtheme-archivemenu .tns-item:hover,
nav#block-bootstrap-subtheme-servicesmenu .tns-item:hover ,
nav#block-bootstrap-subtheme-faqsmenu .tns-item:hover {
    background-color: var(--primary-color);
}
nav#block-bootstrap-subtheme-privacymenu-2 .tns-item:hover a,
nav#block-bootstrap-subtheme-archivemenu .tns-item:hover a,
nav#block-bootstrap-subtheme-servicesmenu .tns-item:hover a ,
nav#block-bootstrap-subtheme-faqsmenu .tns-item:hover a  {
    color: #fff;
}

/* Ensure dots are centered and styled properly on mobile */
@media (max-width: 767px) {
    .tns-nav {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }
    
    /* Style the dots */
    .tns-nav button {
        width: 4px;
        height: 10px;
        background-color: #fff;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
        border: 1px solid #002340;
    }

    /* Active dot styling */
    .tns-nav button.tns-nav-active {
        background-color: var(--secondary-color); 
    }
    div#tns1-ow {
        display: flex;
        flex-direction: column-reverse;
    }

    nav#block-bootstrap-subtheme-privacymenu-2 li a.nav-link,
    nav#block-bootstrap-subtheme-archivemenu li a.nav-link,
    nav#block-bootstrap-subtheme-servicesmenu li a.nav-link,
    nav#block-bootstrap-subtheme-faqsmenu li a.nav-link {
        padding-left: 0px;
        padding-right: 0px;
    }

    .node--type-privacy .container-fluid.g-0,
    .node--type-archive .container-fluid.g-0,
    .node--type-services2 .container-fluid.g-0 ,
    .node--type-faqs .container-fluid.g-0 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

nav#block-bootstrap-subtheme-privacymenu-2 li.active.tns-slide-active,
nav#block-bootstrap-subtheme-archivemenu li.active.tns-slide-active,
nav#block-bootstrap-subtheme-servicesmenu li.active.tns-slide-active ,
nav#block-bootstrap-subtheme-faqsmenu li.active.tns-slide-active {
    background-color: var(--primary-color);
}

nav#block-bootstrap-subtheme-privacymenu-2 li.active.tns-slide-active a,
nav#block-bootstrap-subtheme-archivemenu li.active.tns-slide-active a,
nav#block-bootstrap-subtheme-servicesmenu li.active.tns-slide-active a,
nav#block-bootstrap-subtheme-faqsmenu li.active.tns-slide-active a {
    color: #fff;
    opacity: 1;
}

div#block-bootstrap-subtheme-cognityprivacytitleblock h2 {
    font-size: 28px;
    line-height: 50px;
    color:#002340;
}
@media (max-width: 767px) {
    div#block-bootstrap-subtheme-cognityprivacytitleblock h2 {
        font-size: 25px;
        line-height: 28px;
        margin-bottom: 25px;
    }
    .node--type-privacy .sidebar_first,
    .node--type-archive .sidebar_first,
    .node--type-services2 .sidebar_first,
    .node--type-faqs .sidebar_first {
        padding-left: 15px;
    }
 
    .node--type-privacy #faqAccordion .accordion-body,
    .node--type-archive #faqAccordion .accordion-body,
    .node--type-services2 #faqAccordion .accordion-body,
    .node--type-faqs #faqAccordion .accordion-body {
        padding: calc(var(--bs-accordion-body-padding-y) / 2) calc(var(--bs-accordion-body-padding-x) / 2);
    }
}

.node--type-privacy .main-content,
.node--type-archive .main-content,
.node--type-services2 .main-content,
.node--type-faqs .main-content {
    padding-left: 15px;
    padding-right: 15px;
}

.node--type-privacy .sidebar_first,
.node--type-archive .sidebar_first,
.node--type-services2 .sidebar_first ,
.node--type-faqs .sidebar_first {
    padding-right: 15px;
}

.node--type-privacy .field--name-field-privacy-faq .field__label,
.node--type-archive .field--name-field-privacy-faq .field__label ,
.node--type-services2 .field--name-field-privacy-faq .field__label,
.node--type-faqs .field--name-field-privacy-faq .field__label {
    display: none;
}

/*archive-node*/

.node--type-archive .field--type-image img {
    width: 100%;
    object-fit: contain;
}


/* devices from products */
	.devices-section .bottom-price {
		font-size: clamp(0.75rem, 0.125vw + 0.725rem, 0.875rem);
		font-family: var(--font-family-light);
	}
	.devices-section .device-prices {
		font-size: clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
   		font-family: var(--font-family-light);
	}
	.old-price {
		text-decoration: line-through;
		font-size: clamp(0.75rem, 0.125vw + 0.725rem, 0.875rem);
	}
	.left-price {
		font-size: clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
		font-family: var(--font-family-bold);
	}
	.device-title {
		font-size: clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
		font-family: var(--font-family-bold);
	}
	.device-prices {
		margin-bottom: 25px;
	}
	.devices-section .tag {
    	gap: 5px;
	}
	.devices-section .tag .tag-icon {
		display: flex;
	}
	.devices-section .device-prices {
    	gap: 10px;
	}
	span.right-price::before {
		content: '|';
		margin-right: 5px;
	}
	@media screen and (max-width: 480px) {
		.devices-section .device-title {
			padding-bottom: 0;
			margin-bottom: 10px;
		}

		.devices-section .bottom-price {
			margin-bottom: 15px;
		}
	}

.devices-from-products-component .left-price, .devices-section.devices-from-products-component .device-prices .right-price{
    color: #002340;
    font-family: var(--font-family-light);
    font-weight: 300;
    opacity: 1;
}

/*display node title */
.page-h1-title {
    color: #002340;
}

/*webform css*/
form.webform-submission-form button {
    padding: 12px 30px;
    line-height: 100%;
}
.form-component form.webform-submission-form legend{
    font-size: 1rem;
}
