html {
  scroll-behavior: smooth;
}
:root {
  --main-coloer: #ff4655;
  --body-color: #293239;
  --sec-color: #2a3639;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Sansation", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  font-style: normal;
  background: #293239;
  /* overflow-x: hidden; */
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: #293239;
}

::-webkit-scrollbar-thumb {
  background-color: #d2e5e9;
  border-radius: 10px;
  border: 3px solid #293239;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.bg-cl {
  --bs-bg-opacity: 1;
  background-color: #293239;
}
.navbar-cl,
.navbar[data-bs-theme="dark"] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: var(--main-coloer);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: var(--main-coloer);
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 30 30"%3e%3cpathstroke="rgba%28255, 255, 255, 0.55%29"stroke-linecap="round"stroke-miterlimit="10"stroke-width="2"d="M4 7h22M4 15h22M4 23h22"/%3e%3c/svg%3e
  );
}

.navbar-cl .nav-link {
  color: #fff;
}
.navbar-cl .nav-link:hover {
  color: var(--main-coloer);
  transition: all 0.3s ease;
}

.navbar-cl .nav-link::after {
  content: "";
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--main-coloer);
  transform: scaleX(0);
  transition: all 0.3s ease;
}
.navbar-cl .nav-link.active {
  color: var(--main-coloer);
  transition: all 0.3s ease;
}
.navbar-cl .nav-link:hover::after {
  transform: scaleX(1);
}

.sec-text {
  position: relative;
  color: var(--main-coloer);
  font-size: 30px;
  font-weight: 700;
}

.sec-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #293239;
  border-left: 2px solid var(--main-coloer);
  animation: animate 4s steps(21) infinite;
}

.btn-cl {
  --bs-btn-color: #fff;
  --bs-btn-bg: #be4732;
  --bs-btn-border-color: #bb3524;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb3524;
  --bs-btn-hover-border-color: #bb3524;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #bb3524;
  --bs-btn-active-border-color: #bb3524;
  --bs-btn-active-shadow: inset 0 3px 5px #bb3524;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #bb3524;
  --bs-btn-disabled-border-color: #be4732;
}

.icons {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.icons .icon a {
  margin: 0 10px;
  border-radius: 50%;
  background: #fff;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.5s;
  background: rgba(0, 0, 0, 0);
  color: var(--color);
  font-size: 2.5em;
  -webkit-box-reflect: below 5px
    linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.icons .icon a:hover {
  background: var(--color);
  color: #050801;
  box-shadow: 0 0 5px var(--color), 0 0 25px var(--color), 0 0 50px var(--color),
    0 0 200px var(--color);
}
.icons .icon a span {
  display: none;
}

/* .icons {
    display: flex;
  }
  .icons .icon {
    list-style: none;
    margin: 0 5px;
    margin-top: 40px;
  }
  .fa-brands {
    color: #262626;
    font-size: 20px;
    line-height: 40px;
    transition: 0.5s;
    padding-right: 14px;
  }
  .icons .icon a {
    width: 170px;
    height: 40px;
    background-color: #fff;
    text-decoration: none;
    display: block;
    text-align: left;
    padding-left: 20px;
    transform: rotate(-30deg) skew(25deg) translate(0, 0);
    box-shadow: -20px 20px 10px #00000080;
  }

  .icons .icon a span {
    color: #262626;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50px;
    transition: 0.5s;
  }

  .icons .icon a::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 20px;
    background: #b1b1b1;
    top: 10px;
    left: -20px;
    transform: rotate(0deg) skewY(-45deg);
  }
  .icons .icon a::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 100%;
    background: #b1b1b1;
    bottom: -20px;
    left: -10px;
    transform: rotate(0deg) skewX(-45deg);
  }
  .icons .icon a:hover {
    transform: rotate(-30deg) skew(25deg) translate(20px, -15px);
    box-shadow: -50px 50px 50px #00000080;
  }

  .icon:hover .fa-brands,
  .icon:hover span {
    color: #fff;
  }

  .icon:hover:nth-child(1) {
    & a {
      background: #3b5998;
    }
    & ::before {
      background: #365492;
    }
    & ::after {
      background: #4a69ad;
    }
  }

  .icon:hover:nth-child(2) {
    & a {
      background: #000000;
    }
    & ::before {
      background: #030303;
    }
    & ::after {
      background: #141414;
    }
    & span {
      color: wheat;
    }
  }

  .icon:hover:nth-child(3) {
    & a {
      background: #00aced;
    }
    & ::before {
      background: #097aa5;
    }
    & ::after {
      background: #53b9e0;
    }
  } */

.kemo,
.kemo-2 {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  margin-top: 80px;
}
.kemo {
  animation: up-and-down 3.5s linear infinite;
}
.kemo-2 {
  margin-left: 100px;
  border: 10px solid #454545;
}
.text-p {
  font-size: 15px;
}
.sec {
  background: var(--sec-color);
}
.sec .div-about {
  margin-top: 200px;
  margin-left: 230px;
}
.sec .div-about h1 span {
  color: var(--main-coloer);
}
.sec .div-about p {
  font-size: 14px;
}

#About {
  overflow-x: hidden;
}
#Home {
  margin-top: 90px;
}

h1 span {
  color: var(--main-coloer);
  margin-left: 12px;
}
footer {
  height: 100px;
}
@media (max-width: 991px) {
  .kemo {
    width: 350px;
    height: 350px;
    margin-top: 80px;
    margin-left: 20px;
  }
  .kemo-2 {
    width: 350px;
    height: 350px;
    margin-left: 5px;
    margin-top: 80px;
  }
  .sec-text {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .kemo-2 {
    margin-bottom: -50px;
  }
  .sec .div-about {
    margin-top: 30px;
    margin-left: 15px;
    width: 500px;
  }
  #About {
    height: 910px;
  }
}
@media (max-width: 500px) {
  .div-1 {
    font-size: 10px;
  }
  .icons {
    gap: 0rem;
  }
  .icons .icon a {
    margin: 0 5px;
    width: 70px;
    height: 70px;
  }
  .sec .div-about {
    width: 220px;
  }
  .sec-text {
    font-size: 17px;
  }
  .kemo {
    width: 250px;
    height: 250px;
    margin-left: 0;
  }
  .kemo-2 {
    width: 250px;
    height: 250px;
  }
}

@keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}

@keyframes animate {
  40%,
  60% {
    left: calc(100% + 4px);
  }
  100% {
    left: 0%;
  }
}
