

.hovproduct-container {
  background-color: #fff;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0px;
  box-shadow: 0px 10px 25px -2px rgba(0,0,0,0.36);
}

.hovproduct-description {
  background-color: #F7F7F7;
  border-top: 1px solid #EFEFEF;
  padding: 10px 20px;
  color: #797979;
  text-align: center;
}

.hovproduct-image {
  padding: 20px;
  height: 200px;
  position: relative;
  overflow: hidden;
  transition: 1s;
  text-align: center;
}
.hovproduct-image i.fa {
  font-size: 24px;
  color: #f3a200;
  border-radius: 50%;
  padding: 15px;
  background: #fceed2;
}
.hovproduct-image:hover {
  color: #fff;
  border-color: #ffb727;
  background: #ffb727;
}
.hovproduct-image h2 {
  padding: 20px;
  color: #f3a200;
}
.hovproduct-description h1 {
  font-style: italic;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
.hovproduct-option {
  border-top: 1px solid #D2D2D2;
}

.hovproduct-container:hover {
  box-shadow: 0px 10px 25px -2px rgba(0,0,0,0.36);
}

.hovproduct-container:hover .hovproduct-image {
  height: 100px;
  transition: 1s;
}
.hovproduct-container:hover .hovproduct-option {
  display: block;
}
.hovproduct-container:hover .hover-link {
  opacity: 0.5;
}
.hovproduct-container:hover .hovproduct-link {
  opacity: 1;
}


.timeing {
  --color: rgba(30, 30, 30);
  --bgColor: #ffffff;
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  color: var(--color);
  background: var(--bgColor);
}
.timeing ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}

/* line */
.timeing ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.timeing ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

/* card */
.timeing ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
  box-shadow: 0px 10px 25px -2px rgba(0,0,0,0.36);
  
}

/* date */
.timeing ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.timeing ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.timeing ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.timeing ul li .title,
.timeing ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}
.timeing ul li .title {
  overflow: hidden;
  padding-block-start: 0.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
  font-size: 24px;
  padding-top: 20px;
  padding-bottom: 15px;
  line-height: 30px;
}
.timeing ul li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

.timeing ul li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeing ul li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
 .timeing ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
 .timeing ul::before {
    grid-column: 2;
  }
 .timeing ul li:nth-child(odd) {
    grid-column: 1;
  }
 .timeing ul li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
 .timeing ul li:nth-child(2) {
    grid-row: 2/4;
  }

 .timeing ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

 .timeing ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
 .timeing ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}


/*--------------------------------------------------------------
# Contact popup
--------------------------------------------------------------*/

.modal-confirm .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
}
.modal-confirm .modal-header {
	border-bottom: none;   
	position: relative;
}
.modal-confirm h4 {
	text-align: center;
	font-size: 26px;
	margin: 30px 0 -15px;
}
.modal-confirm .form-control, .modal-confirm .btn {
	min-height: 40px;
	border-radius: 3px; 
}
.modal-confirm .close {
	position: absolute;
	top: -5px;
	right: -5px;
}	
.modal-confirm .modal-footer {   
	position: center;
	border: none;
	text-align: center;
	font-size: 18px;
}	
.modal-confirm .icon-box {
	color: #fff;		
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: -70px;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	z-index: 9;
	background: #f3a200;
	padding: 15px;
	text-align: center;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-confirm .icon-box i {
	font-size: 58px;
	position: relative;
	top: 3px;
}
.modal-confirm.modal-dialog {
	margin-top: 80px;
}
.buttonverybig {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 200px;
border: none;
  border-radius: 4px;
  margin-top: 0px;
  color: #fff;
  background: #f3a200;
}

.buttonverybig:hover {
  background: #ffb727;
  color: #fff;
}
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v135/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
}
/* 1st row */
.onelinescroll {
  position: relative;
  overflow: hidden;
  height: 30px; /*-- Mandatory --*/
  line-height: 18px;
}
.onelinescroll .line1 {
  top: 0;
  left: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  animation: line 14s linear infinite; /*-- Speed --*/
}
.onelinescroll .line2 {
  animation-delay: 7s; /*-- Half of Speed --*/
}
.onelinescroll i {
  font-size: 20px;
  font-weight: 900;
  font-style: normal;
  background: #f3a200;
  line-height: 1;
  color: #fff;
  margin-left: 20px;
}
.onelinescroll b {
  line-height: 22px;
  font-weight: 700px;
  font-style: normal;
  font-size: 20px;
  margin-left: 0px;
}

@keyframes line {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}




.fade.in
{
	opacity: 1;
}
.modal-open
{
	overflow: hidden;
}
.modal
{
	bottom: 0;
	display: none;
	left: 0;
	outline: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
}
.modal-backdrop
{
	background-color: #000;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1040;
}
.modal-backdrop.in
{
	filter: alpha(opacity=50);
	opacity: .5;
}
.projects-modal-dialog {
  width: 1000px; /* Adjust the width as needed */
  margin: 30px auto;
}

.projects-modal-content {
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  padding: 10px;
}

.projects-modal-title {
  margin: 0;
  text-align: center;
  font-size: 30px;
  color: #ffb727;
  padding: 10px;
}

.projects-info {
padding-top: 10px;
padding-right: 20px;
padding-bottom: 20px;
padding-left: 20px;
  box-shadow: 0px 0 20px rgba(59, 67, 74, 0.08);
}
.projects-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.projects-info ul li + li {
  margin-top: 0px;
}


.projects-info1 {
  padding: 10px 20px;
  box-shadow: 0px 0 20px rgba(59, 67, 74, 0.08);
}

.projects-info1 ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
}

.projects-info1 ul li {
  margin-right: 30px;
  margin-bottom: 5px;
  width: calc(100%); /* Adjust the width as needed */
}

.projects-info1 ul li .label {
  display: inline-block;
  width: 100px;
  font-weight: bold;
}


.modal-body {
  width: 1000px; 
  height: 480px;
  margin-bottom: 10px;
}

.projects-modal-footer {
  display: flex;
  justify-content: space-between;
  display: inline-block;
}

.btn-prev {
  margin-right: 5px;
}

.btn-next {
  margin-right: 5px;
}

.btn-more {
  margin-left: 310px;
}

.btn-more1 {
  margin-right: 320px;
}
.btn-close:focus {
  outline: none;
}
