:root {
  --mainColor: #d71921;
  --secondaryColor: #808184;
  --transparentColor: rgb(215 25 32 / 70%);
  --transparentColor2: rgb(128 130 132 / 70%);
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
}
body::before {
  content: "";
  display: block;
  height: 50px;
}
.btn-secondary {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  text-align: center;
}

/*-- Animation --*/
.fade-in {
  animation: fade-in 1s ease-in;
  -webkit-animation: fade-in 0.5s ease-in;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0);
    -webkit-transform: scale3d(0.5, 0.5, 0);
    -moz-transform: scale3d(0.5, 0.5, 0);
    -ms-transform: scale3d(0.5, 0.5, 0);
    -o-transform: scale3d(0.5, 0.5, 0);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
  }
}

.fade-left {
  animation: fade-left 0.5s ease-in;
  -webkit-animation: fade-left 0.5s ease-in;
}

@keyframes fade-left {
  from {
    opacity: 0;
    transform: translate3d(-50%, -20%, 0);
    -webkit-transform: translate3d(-50%, -20%, 0);
    -moz-transform: translate3d(-50%, -20%, 0);
    -ms-transform: translate3d(-50%, -20%, 0);
    -o-transform: translate3d(-50%, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.navbar {
  border-bottom: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--secondaryColor);
}
.nav-link:hover {
  color: var(--mainColor) !important;
}
section .mt-3 i {
  color: #d49b31;
  animation-name: colorItem;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes colorItem {
  0% {
    color: #d49b31;
  }
  50% {
    color: #d49b3150;
  }
  100% {
    color: #d49b31;
  }
}
img,
svg {
  padding-bottom: 8px;
}
/*---------------Start Components--------------*/
.special-heading {
  color: #ebeced;
  font-size: 70px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -4px;
  margin: 0;
}
.special-heading + p {
  margin: -40px 0 0;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: var(--secondaryColor);
}
/*---------------End Components--------------*/

.accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cccccc'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
@media (min-width: 768px) {
  .col-md-12 {
    padding: 0;
  }
}
.thumbnail-widget .py-1 {
  /* list-style: none; */
  color: var(--secondaryColor);
}
.thumbnail-widget .py-1 .link-secondary {
  list-style: none;
  text-decoration: none;
}

.social-footer2 .fw-light {
  list-style: none;
  padding: 0;
}
.social-footer2 .fw-light::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  float: left;
  margin-left: -1.5em;
  color: var(--secondaryColor);
}
.fw-lighter .text-secondary {
  padding: 10px;
}

/*---------Slider-------*/

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 11));
    -webkit-transform: translateX(calc(-250px * 11));
    -moz-transform: translateX(calc(-250px * 11));
    -ms-transform: translateX(calc(-250px * 11));
    -o-transform: translateX(calc(-250px * 11));
  }
}
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 1200px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 22);
  -webkit-animation: scroll 40s linear infinite;
}
.slider .slide {
  height: 100px;
  width: 250px;
}
