/* top div above menu*/
nav.navbar.main {
  position: relative;
          background-image: url("/images/company/caro/header_background1.png");
        background-repeat: no-repeat;
        background-size:cover;
}


nav.navbar.main * {
  z-index: 5;
}

nav.navbar.main:after {
  content: "";
  /* background-image:url("/images/header_background_right.jpg"); */
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 0;
  left: 0px;
  height: 100%;
  right: 0px;
}

.headerlogo_class {
  height: 60px;
  vertical-align: center !important;
}

.headercompanyname_class {
  font-size:36px;
  margin-right:30px
}

/* removes spacing from top and bottom of menu items */
.navbar-expand-md {
  padding-top: 0px;
  padding-bottom: 0px;
}

/*********************** label blocks **************/
.graylabel {
  color: gray;
  display: inline-block;

}

.blockgraylabel {
  color: gray;
  display: inline-block;
  width: 100px;
}

.blockgraylabelwide {
  color: gray;
  display: inline-block;
  width: 150px;
}

.graylabel {
  color: gray;
}


.graybutton {
  color: gray;
}

/* spacing between menu items */
.nav-link {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* color of active menu bar item*/
.nav-link-active {
  color: black !important;
  font-weight:bold;
}

.navbar-nav {
  margin-left: 100px !important;
}

.fixed {
  width: 175px;
  min-width: 175px;
}

.mainflex {
  float: left;
  overflow-y: auto;
  height: calc(100vh - 135px);
}

.maintextblock {
  padding-left: 5%;
  padding-right: 5%;
}

.subtextblock {
  padding-left: 15%;
  padding-right: 15%;
}

.minortextblock {
  padding-left: 20%;
  padding-right: 20%;
}


.minitextblock {
  padding-left: 15px;
  padding-right: 15px;
}

.copyright_style {
  font-size: smaller;
  text-align: center;
}

.sectiontitle {
  font-size: 24px;
  color: darkblue;
}

.boldsectiontitle{
  font-size: 24px;
  color: darkblue;
  font-weight:bold;
}

.subsectiontitle {
  font-size: 20px;
  color: darkblue;
}

.boldsubsectiontitle{
  font-size: 20px;
  color: darkblue;
  font-weight:bold;
}

.container1 {
  display: flex;
  font-family:Arial, Helvetica, sans-serif;
}

.class_tagleftpanel {
  /* color:green; */
  font-style: italic;
}

.class_logoleftpanel {
  width: 40px;
  text-align: center;
  margin-bottom: 5px;
}


.class_Question {
  font-weight: bold;
  margin-top: 20px;
}


/**** for sliding text     */
.box {
  display: flex;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.box.visible {
  opacity: 1;
  transform: translateX(0);
}

/**** END for sliding text     */

/* ****ticker tape  */
.ticker-container {
  width: 100%;
  overflow: hidden;
  /* Hides the overflowing text */
  white-space: nowrap;
  /* Prevents text from wrapping */
  box-sizing: border-box;
  /* Includes padding and border in the element's total width */
  background-color: #fafafa;
  padding: 10px 0;
  /* border: 1px solid #ccc; */
}

.ticker-content {
  display: inline-block;
  color: #007bff;
  font-size: large;
  /* Allows content to be on a single line */
  padding-left: 100%;
  /* Starts the text off-screen to the right */
  animation: scroll-left 15s linear infinite;
  /* Applies the animation */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
    /* Starting position */
  }

  100% {
    transform: translateX(-100%);
    /* Ending position (moves off-screen to the left) */
  }
}

/* END ticker tape */

.btn-cfw {
  background-color: #ffff99;
  /* Darker blue on hover */
  border-color: black;
  color: black;
  font-weight:bold;
}

.btn-cfw:hover {
  background-color: darkblue;
  /* Darker blue on hover */
  border-color: #fff;
  color: white;
}

/* color of main text blocks */
.textblockcolor {
  background-color: #fcd992;
}

/* color of service cards in contact us and services pages */
.card-service {
  background-color: #faeac8;
}

