/* CSS Document */
/* Option 2: Import via CSS */

/*Fonts
-------------------------*/
/*@import url('https://fonts.googleapis.com/css2?family=Saira+Stencil+One&display=swap');*/
/*// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800*/

/*.open-sans-intro {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}*/

/** @type {import('tailwindcss').Config} */

/*body {
            animation: fadeInAnimation ease .8s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }*/
.bg-body-ctg {
	background-color: #f4f5f5;
}

.section-margin {
	margin-top: 2rem;
	margin-bottom: 0rem;
}

header.Header.Header--top {
    z-index: 999;
	margin: -500px;
}

.purple-text {
	color: #6C3998;
	font-weight: bold;
}
.page-links a:link {
	color: #6C3998 ;
	text-decoration: underline;
	font-weight: bold;
}
.page-links a:visited {
  color: #6C3998;
	text-decoration: none;
}
.page-links a:hover {
  color: #8f4ec8;
	text-decoration: none;
}


/* ===============NAVIGATION==============*/

/*.nb-border {
	border-bottom: solid white;
	border-width: calc(3px);
}*/

.navbar-nav .nav-item, .nav-link:hover {
    text-decoration: none;
    color: #8f4ec8;

}
.navbar-nav  .nav-link.active, .navbar-nav .nav-link.show {
    text-decoration: none;
    color: #6C3998;

}
.navbar-nav .dropdown-menu, .dropdown-item:hover {
    text-decoration: none;
    color: #8f4ec8;

}
.navbar-nav  .dropdown-menu, .dropdown-item.active, .dropdown-menu, .dropdown-item.show {
    text-decoration: none;
    color: #6C3998;

}
.dropdown-item.active, .dropdown-item:active {
    background-color: #6C3998 !important;
	background:  #6C3998 !important;
	color: white;	
}
.icon-dark {
	width:1em;
	margin-top: -5px;
	/*filter: invert(60%) sepia(15%) saturate(3%) hue-rotate(319deg) brightness(103%) contrast(82%);*/
}
/*filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);*/


/*=========== Links - Contact ============*/
.contact a:link {
	color: #6C3998;
	text-decoration: none;
	/*font-weight:bolder;
	text-shadow: 2px 2px 4px #000000;*/
}

/* visited link */
.contact  a:visited {
  color: #8f4ec8;
	text-decoration: none;
}

/* mouse over link */
.contact   a:hover {
  color: #8f4ec8 ;
	text-decoration: none;
}
.contact-phone {
	color: #6C3998;
	font-weight:bolder;
	/*text-shadow: 2px 2px 4px #000000;*/
}

/*==========Contact Form------------------*/

.contact-form {
	align-content: center;
/*	margin-top: 0rem;
	margin-bottom: 0rem;*/
	margin: .5rem;
/*border:1px solid #5C5C5C;*/
	border-radius: 10px;
	padding: 10px;
	width: auto;
	height: 1150px;
	overflow: hidden;
	background-color: white;
	box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.25);
	
}


/*#Contact {
	background: url("../image/background-contact.jpg")no-repeat center center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

}*/


/*========== General =====================*/


.vh-row-margin {
	padding-top: 20%;
}
.section-height {
	padding-top: 5rem;
	
	min-height: 100vh !important;

	
}
.padding-vh-100 {
	padding-top: 6em;
	padding-bottom: 6em;
}


#webuild-apps {
	min-height: 27vh;
}
/*#platform-banner {

}*/

/* ===============Accordians==============*/


.accordion-body ul li {
  color: #6C3998;
}
.accordion-text {
  color: #6C3998;
}
.accordion-button.collapsed {
	color: #6C3998;
}


/*==========scrolling section------------------*/

.marquee {
	display: flex;
	block-size: var(--marquee-item-height);
	/*margin-block: var(--marquee-item-height);*/
	position: relative;
	overflow-x: hidden;
	/*mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );*/
}

.marquee--8 {
  --marquee-item-width: 750px;
  --marquee-item-height: 150px;
  --marquee-duration: 60s;
  --marquee-items: 6;
}

/*.marquee--3 {
  --marquee-item-width: 150px;
  --marquee-item-height: 150px;
  --marquee-duration: 24s;
  --marquee-items: 3;
}

.marquee--6 {
  --marquee-item-width: 300px;
  --marquee-item-height: 300px;
  --marquee-duration: 32s;
  --marquee-items: 6;
}*/

.marquee__item {
  --marquee-item-offset: max(
    calc(var(--marquee-item-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-width))
  );
  --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
  position: absolute;
  inset-inline-start: var(--marquee-item-offset);
  transform: translateX(-50%);
  animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}
/*
.marquee__item:nth-child(4n) {
  border-top-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 1) {
  border-bottom-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 2) {
  border-bottom-left-radius: 1rem;
}

.marquee__item:nth-child(4n + 3) {
  border-top-left-radius: 1rem;
}
*/
.marquee--8 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--8 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--8 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--8 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--8 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--8 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}
/*
.marquee--8 .marquee__item:nth-of-type(7) {
  --marquee-item-index: 7;
}
*/
/*.marquee--8 .marquee__item:nth-of-type(8) {
  --marquee-item-index: 8;
}*/


@keyframes go {
  to {  
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}
/*==========END scrolling==============*/




/*==================Page Backgrounds==============*/


/*#why_ctv {
	background:url("../image/background-whyctv.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}*/

/*.figure-caption-video-distribution {
	font-size: 1.6rem;
	color: black;
	font-weight: bold;
}*/





.top-page-padding {
	padding-top: 5rem;
}


/*
ACCORDIAN FROM CTG*/

.accordion-button:focus {
     box-shadow:none; 
}
.accordion-button:not(.collapsed) {
    color: white;
    background-color: #6C3998 ;/*var(--bs-accordion-active-bg)*/
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


