body {
  margin: 10px 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

/* ticker */
.ticker-container {
  overflow: hidden;
  white-space: nowrap;
  background-color: #f0f0f1;

}

.ticker-item {
  display: inline-block;
  margin-right: 20px;
  animation: ticker-scroll 15s linear infinite;
}


.ticker {
  /* Add background image */
  background-image: url("ipaultmb.png");
  /* Repeat image in x-axis  */
  background-repeat: repeat-x;
  /* Animate Using animation: duration 
           timing-function iteration-count direction; */
  animation: 10s parallel infinite linear;
}

/* timing-function */
@keyframes parallel {
  100% {
    /* set background-position */
    background-position: -5000px 20%;
  }
}

strong {
  font-weight: 600;
}

a {
  
  color: #a365bc;
  border-bottom: 1px dashed #a365bc;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover,
a:focus {
  color: #a365bc;
  border: 0;
  text-decoration: none;
}

h1,
h2 {
  font-family: cursive;
  margin-top: 10px;
  font-size: 25vm;
  font-weight: 300;
  line-height: 50px;
  font-style: italic;
}

h3 {
  font-size: 15vm;
  font-weight: 300;
  color: #f8fafa;
  line-height: 30px;
  font-style: italic;

}

img {
  /* height: auto; */
  max-width: 100%;

}


#subject {
  height: 170px;

}


/* Large size logo for top navigation bar */
.logo-large {
  width: 250px;
  /* Adjust as needed */
  height: 150px;
  /* Keep aspect ratio */
}

/* Medium size logo for other strategic places */
.logo-medium {
  width: 100px;
  /* Adjust as needed */
  height: auto;
  /* Keep aspect ratio */
}

/* Small size logo for other strategic places */
.logo-small {
  width: 75px;
  /* Adjust as needed */
  height: auto;
  /* Keep aspect ratio */
}



/* cards  */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  gap: 2em;
  margin: 2rem 5vw;
  padding: 0;
  list-style-type: none;
}

.card .w3-card-24 {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  overflow: scroll;
}

.card_image {
  margin: 20px;
  border: 2.5px solid silver;
  float: left;
  width: 350px;
  height: 200px;
}


.card_image:hover {
  transform: scale(1.5);
}


.card-header .card-footer {
  text-align: center;
  display: flexbox;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;
  transform: translateY(-100%);
  transition: 2s ease-in-out;
}

.card-title {
  font-size: 3em;
  margin: 0 0 0.6em;
  color: #f0f7f8;
}

.card-thumb {
  flex-shrink: 0;
  width: 65px;
  height: 50px;
  border-radius: 50px;
}

.card_arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 1;
}

.card:hover .card_header {
  transform: translateY(0);
}

.card_status {
  font-size: 0.8em;
  color: #d7bdca;
}

.card_tagline {
  display: block;
  margin: 1em 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1em;
  color: white;
}

.card_description {
  padding: 2em 2em 2em 2em;
  margin: 2px;
  column-width: 100px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}



.medium-paragraph {
  text-decoration-color: gold;
  font-size: 17px;
  line-height: 32px;
}

::-moz-selection {
  background: #8542a0;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #8542a0;
  color: #fff;
  text-shadow: none;
}

/***** General style, Parent containers and parallax *****/

.container,


.parallax-2,
.parallax-3 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10%;
  /* This will add a 10% space on both sides */
}


/***** General style, all sections and nested containers *****/


.section-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  margin: 2rem 5vw;
  padding: 0;
  /* list-style-type: none; */
}
  /* flex-direction: row;
   align-content: ; 
  margin: 20px;
  padding: 30px;
   background-image: url("background-maroon-gold.png"); 
  border: 1px solid #ccc;
  overflow: scroll; */


.section-container-gray-bg {
  background: #f8f8f8;
}

.section-container-image-bg,
.section-container-image-bg h2,
.section-container-image-bg h3 {
  float: left;
  width: 50%;
  padding: 40px;
  color: #fff;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

#contact-container {
  text-align: center;
}

#contact-logo {
  width: 200px;
  height: 200px;
}

.section-container-image-bg .divider-1 span {
  border-color: #fff;
}

.section-description {
  margin-top: 60px;
  padding-bottom: 10px;
}

.section-description p {
  margin-top: 20px;
  padding: 0 120px;
}

.section-container-image-bg .section-description p {
  opacity: 0.8;
}

.section-bottom-button {
  padding-top: 60px;
}

/***** Divider *****/

.divider-1 span {
  display: inline-block;
  width: 200px;
  border-bottom: 1px dotted #aaa;
}

/***** Top menu *****/

.navbar {
  background: #100541;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
  backface-visibility: hidden;
}

.navbar.navbar-no-bg {
  background: #100541;
  background: rgba(0, 0, 0, 0.2);
}

.navbar-dark .navbar-nav {
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  border: 0;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link:focus {
  color: #fff;
  outline: 0;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding: 1rem;
}

.navbar-search-form.disabled,
.navbar-menu-items.disabled {
  display: none;
}

.navbar-search-form input[type="search"] {
  width: 400px;
  margin: 0;
  background: none;
  border: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  color: #fff;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar-search-form input[type="search"]:focus {
  outline: 0;
  background: none;
  border: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-search-form input[type="search"]::-moz-placeholder {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
}

.navbar-search-form input[type="search"]:-ms-input-placeholder {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
}

.navbar-search-form input[type="search"]::-webkit-input-placeholder {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
}

/***** Top content *****/

.inner-bg {
  padding: 200px 0;
}

.top-content .text {
  color: #fff;
}

.top-content .text h1 {
  margin-top: 25px;
  color: #fff;
}

.top-content .description {
  margin: 30px 0 10px 0;
}

.top-content .description p {
  opacity: 0.8;
}

/* parallax  */

.parallax-top {
  background-image: url("iDiLogo.png");
  min-height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-3 {
  background-image: url("1.jpg");
  min-height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax {
  background-image: url("blkroseBkg.png");
  min-height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.parallax-1 {
  background-image: url("counterC.png");
  min-height: 450px;
  background-attachment: fixed;
  background-position-y: center;
  background-position-x: right;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  font-size: 17px;
}

.parallax-2 {
  background-image: url("paul-colorbars.jpg");
  min-height: 450px;
  border: 2px solid black;
  border-radius: 5px;
  /* padding: 10, 10, 5, 5; */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}



/* Set the height and width of the quarter container */
.or-container {
  grid-row: span;
  color: #fff;
  height: 25vh;
  /* 25% of the viewport height */
  width: 25%;
  /* 25% of the viewport width */
  overflow: auto;
  /* Enable vertical scrolling when content overflows */
  border: 1px solid #ccc;
  /* Optional: Add a border for visual clarity */
  box-sizing: border-box;
  /* Ensure padding and border are included in the specified height */
  background-image: url("iDiLogo.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Optional styling for the content inside the container */
.or-container .content {
  padding: 10px;
  /* Add some padding to the content */
}




/***** About *****/

.section-1-box {
  padding-top: 30px;
  text-align: left;
}

.section-1-box .section-1-box-icon {
  width: 180px;
  height: auto;
  margin: 0 auto;

  background: #8542a0;
  /* Old browsers */
  background: -moz-linear-gradient(top, #a365bc 0%, #8542a0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0%, #a365bc),
      color-stop(100%, #8542a0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #a365bc 0%, #8542a0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #a365bc 0%, #8542a0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #a365bc 0%, #8542a0 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #a365bc 0%, #8542a0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a365bc', endColorstr='#8542a0', GradientType=0);
  /* IE6-9 */

  font-size: 40px;
  color: #fff;
  line-height: 80px;
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}

.section-1-box h3 {
  margin-top: 0;
  padding: 0 0 10px 0;
}

/***** Services *****/

.section-2-box {
  color: inherit;
  margin-top: 30px;
  font-size: inherit;
  text-align: left;
}

.section-2-box h3 {
  margin-top: 0;
}

.section-2-box-text .medium-paragraph {

  margin-top: 20px;
  margin-bottom: 20px;
}

/***** Counter Culture*****/

#cultintro {
  float: left;
  padding: 10px;
}

.section-3-box {
  margin-top: 30px;
  text-align: left;
}

.section-3-box .section-3-box-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;

  background: #8542a0;
  /* Old browsers */
  background: -moz-linear-gradient(top, #a365bc 0%, #8542a0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0%, #a365bc),
      color-stop(100%, #8542a0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #a365bc 0%, #8542a0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #a365bc 0%, #8542a0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #a365bc 0%, #8542a0 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #a365bc 0%, #8542a0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a365bc', endColorstr='#8542a0', GradientType=0);
  /* IE6-9 */

  font-size: 28px;
  color: #fff;
  line-height: 60px;
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.section-3-box h3 {
  margin-top: 0;
  padding: 0 0 10px 0;
}

/***** Contact *****/
.contact {
  box-sizing: border-box;
}

/* Style inputs */
input[type=text],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* Style the container/contact section */
.contact-container {
  color: wheat;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

  .column,
  input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/***** Footer *****/

footer {
  padding: 40px 0;
}