/* Start  gloabal role */
/* @import url('https://fonts.googleapis.com/css2?family=Acme&family=Alegreya:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500;1,600;1,700;1,800&family=Bebas+Neue&family=Berkshire+Swash&family=Cairo:wght@200;300;400;500;600;700;800;900&family=Grenze:ital,wght@0,200;0,300;0,400;0,500;0,600;0,800;1,200;1,300;1,500;1,600&display=swap'); */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Poppins';
  margin: 0;
  padding: 0;
}

:root {
  /* #64748B to be added*/
  --main-color-alt: #ffffff; /* White */
  --main-color-alt3: #8bc801; /* Bright green */
  --primary-color: #607B7C;
  --text-color: #5A6E82; /* Medium grey/blue for text */
  --text-color-alt2: #34495E; /* Medium grey/blue for text */
  --black-color: #0F172A; /* Black color */
  --white-color: #ffffff;/* White */
  --border-color: #E2E8F0; /* Grey border color */
  --light-grey-background: rgba(22, 93, 49, 0.10); /*Light grey background color */
  --light-grey-background-alt2: #F6F6F5; /*Light grey background color alt2 */
  --hover-primary-color:rgb(96, 128, 129);
  --link-blue-color: #0000EE; /* BLue Link Color */

  --main-transition: 0.5s; /* General transition time */
  --main-padding-top: 80px;
  --main-padding-bottom: 80px;
}

html {
  scroll-behavior: smooth;
}
/* body {
  font-family: 'Berkshire Swash', cursive;
} */
a {
  text-decoration: none !important;
}
ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.common-container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.button {
  background-color: var(--main-color-alt);
  padding: 0.5rem;
  border-radius: 0.3rem;
  border: var(--main-color-alt) 2px solid;
  font-weight: bold;
  width: 160px;
  cursor: pointer;
}

.button:hover {
  background-color: var(--black-color);
  color: var(--main-color-alt);
  border: var(--black-color); 2px solid;
  transition: var(--main-transition);
}

@keyframes zz {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
      transform: translateY(-5px);
  }
}

.d-flex {
  display: flex;
}

.go-up {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 40px;
  height: 40px;
  /* background-image: linear-gradient(45deg, whitesmoke, var(--main-color-alt3)); */
  background-image: linear-gradient(45deg, var(--white-color), var(--primary-color));
  border-radius: 25% 50%;
  cursor: pointer;
  transition: 1s;
  /* border: 1px solid linear-gradient(45deg, whitesmoke, var(--primary-color)); */
  border: 1px solid linear-gradient(45deg, var(--white-color), var(--primary-color));
  z-index: 4;
  cursor: pointer;
  animation: zz 1s linear infinite;
}
@media (max-width: 375px) {
  .go-up {
    position: fixed;
    right: 15px;
    bottom: 40px;
  }
}
.go-up svg {
  transform: rotateZ(90deg);
}
.go-up path {
  font-size: 30px;
  fill: var(--primary-color);
  cursor: pointer;
}
.go-up:hover {
  background-image: linear-gradient(45deg,  var(--primary-color), var(--white-color));
  border: 1px solid linear-gradient(45deg,  var(--primary-color), var(--white-color));
}

.go-up:hover path {
  fill: var(--white-color);
}
/*  start main title  */

.title-section {
  text-align: center;
  margin: 0px auto 60px;
  padding: 0 15px;
}

.main-title {
  text-transform: uppercase;
  margin: 0 auto 30px;
  border: 3px solid whitesmoke;
  padding: 10px 20px;
  font-size: 30px;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: var(--main-transition);
  color: whitesmoke;
}
.main-title::before,
.main-title::after {
  content: '';
  width: 12px;
  height: 12px;
  background-color: var(--border-color);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.main-title::before {
  left: -30px;
}
.main-title::after {
  right: -30px;
}
.main-title:hover::before {
  z-index: -1;
  animation: left-move 0.5s linear forwards;
}
.main-title:hover::after {
  z-index: -1;
  animation: right-move 0.5s linear forwards;
}
.main-title:hover {
  color: var(--main-color-alt);
  border: 2px solid var(--border-color);
  transition-delay: 0.5s;
  cursor: default;
}

@keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }
}
@keyframes right-move {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }
}

.title-section p {
  color: var(--text-color);
  font-size: 22px;
  margin: 5px auto;
}

/*  end main title  */

@media (max-width: 768px) {
  .title-section p {
    color: #666;
    font-size: 16px;
    margin: 5px auto;
  }
}
/* Small */
@media (min-width: 768px) {
  .common-container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .common-container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .common-container {
    width: 1170px;
  }
}

/* End gloabal role */
