@font-face {
  font-family: "UbuntuMono";
  src: url(../fonts/UbuntuMono/UbuntuMono-Regular.ttf);
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "UbuntuMono", "monospace";
}
/* light theme */
html {
  --bg-color: #ffffff;
  --bg-nav: #f9f9f9;
  --bg-media: #e4e4e4;
  --primary-color: #1b182c;
  --mute-color: #a9a8a8;
  --light-gray-color: #f9f9f9;
  --blue-color: #1c75fd;
  --green-color: #27de9c;
  --hot-pink-color: #f42a66;
  --pink-color: #ff95df;
  --yellow-color: #f8c400;
  --button-color: #1b182c;
  --border-color: #e1e1e1;
  --yellow-light: #faf4e8;
}
/* dark theme */
html[data-bs-theme="dark"] {
  --bg-color: #121419;
  --bg-nav: #20242d;
  --bg-media: #20232b;
  --primary-color: #ffffff;
  --mute-color: #a9a8a8;
  --light-gray-color: #f9f9f9;
  --blue-color: #1c75fd;
  --green-color: #27de9c;
  --hot-pink-color: #f42a66;
  --pink-color: #ff95df;
  --yellow-color: #f8c400;
  --button-color: #f8c400;
  --border-color: #353946;
}

/* common styles */
body {
  background-color: var(--bg-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--primary-color);
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 20px;
}

p {
  font-size: 18px;
  color: var(--primary-color);
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0px;
  margin-bottom: 0px;
}
.form-control {
  border-radius: 0.65rem;
}
.form-control.nice-select {
  line-height: 28px;
  height: 48px;
  background-color: var(--bs-body-bg);
}
.form-control.nice-select.open .list {
  width: 100%;
  margin-top: 0.5rem;
}
section {
  margin: 100px 0px;
}
.primary-btn,
.primary-btn:hover,
.primary-btn:focus {
  background-color: var(--primary-color);
  color: var(--bg-color);
  border: 1px solid var(--primary-color);
  font-size: 18px;
  width: 190px;
  border-radius: 4px;
}
.yellow-btn,
.yellow-btn:hover {
  background-color: var(--yellow-color);
  color: var(--primary-color);
  font-size: 18px;
  width: 190px;
  border-radius: 4px;
}

.button-light-yellow,
.button-light-yellow:hover,
.button-light-yellow:focus {
  background-color: var(--yellow-light);
  border-bottom: 5px solid #dfe0bb;

  color: #000;
}
hr {
  color: #ffffff;
}
.img-50-px {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border-color: transparent;
}
.border-yellow {
  border-color: var(--yellow-color);
}
.border-blue {
  border-color: var(--blue-color);
}
.border-hot-pink {
  border-color: var(--hot-pink-color);
}
/* main style */
/* .top-nav */
.top-nav {
  background-color: var(--bg-nav);
}
.social-icons-list .social-icon,
.social-icons-list .social-icon a {
  display: inline-block;
}
.social-icons-list .social-icon svg {
  fill: var(--primary-color);
}
.top-nav .social-icons-list .social-icon svg:hover,
.top-nav .social-icons-list .social-icon svg:active,
footer .social-icons-list .social-icon svg:hover {
  fill: var(--yellow-color);
}
.topnav-switchers .select-nice {
  border: none;
  background-color: transparent;
  z-index: 15;
}
.topnav-switchers .select-nice {
  color: var(--primary-color);
}
/* nav */

/* mode style */
.navbar {
  background-color: var(--bg-color);
  z-index: 10;
}
/* .navbar .offcanvas  */
.navbar .offcanvas {
  background-color: var(--bg-color);
  width: auto;
}
.navbar .navbar-toggler svg,
.navbar .offcanvas-header svg {
  width: 25px;
  height: 25px;
  fill: var(--primary-color);
}
.navbar .navbar-nav .nav-item {
  padding: 0px 5px;
}
.navbar .navbar-nav a.active {
  font-weight: bold;
}
.navbar .navbar-nav a,
.navbar .navbar-nav a.active {
  color: var(--primary-color);
  font-size: 17px;
}
.navbar .navbar-nav a:hover {
  font-weight: bold;
  transition: all ease-in-out 0.3s;
}
.navbar .mode-toggle {
  border-right: 1px solid var(--mute-color);
}
.navbar .mode-toggle .mode-title svg {
  width: 15px;
  height: 15px;
  fill: var(--primary-color);
}
.navbar .mode-toggle .toggle-control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  user-select: none;
}
.navbar .mode-toggle .toggle-control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.navbar .mode-toggle .toggle-control input:checked ~ .control {
  background: var(--primary-color);
}
.navbar .mode-toggle .toggle-control input:checked ~ .control::after {
  left: 16px;
  border: 1px solid var(--bg-color);
}
.navbar .mode-toggle .toggle-control .control {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 30px;
  border-radius: 30px;
  background-color: var(--primary-color);
  transition: background-color 0.15s ease-in;
}
.navbar .mode-toggle .toggle-control .control::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 30px;
  background-color: var(--bg-color);
  transition: left 0.15s ease-in;
}
/* account style */
.navbar .account ul li {
  display: inline-block;
}
.navbar .account ul a {
  color: var(--primary-color);
}
@media (max-width: 680px) {
  .navbar .dropdown-menu {
    left: auto;
    inset-inline-end: 0;
  }
}

/* header */
header {
  min-height: 540px;
  background: url(../images/home-banner.png) no-repeat;
  background-size: cover;
}

header .search .search-input,
header .search .search-input:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  border-radius: 0%;
  height: 70px;
  font-size: 18px;
}
header .search .search-input::placeholder {
  color: var(--mute-color);
}
header .search .search-btn,
header .search .search-btn:hover {
  background-color: var(--button-color);
  color: var(--bg-color);
  border-radius: 0%;
  font-size: 18px;
  height: 70px;
  width: 190px;
}
header.portifolio-header {
  min-height: auto;
  padding: 3rem 0;
  background: url(../images/banner-portifolio.svg) no-repeat;
  background-size: cover;
  min-height: 300px;
  background-position: center top;
}
/* why */
.why {
  background: url(../images/Blue\ Monster.png) 50px 92% no-repeat,
    url(../images/Pink\ Monster.png) 100px 92% no-repeat;
}
.why .title,
.faqs .title {
  height: 100px;
  background: url(../images/shap_style_6.png) 50% no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* resource */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 11));
    transform: translateX(calc(-250px * 11));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 11));
    transform: translateX(calc(-250px * 11));
  }
}
.resources .resource-slider {
  background: var(--light-gray-color);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
}
.resources .resource-slider .resource-slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 22);
}
.resources .resource-slider .resource-slide {
  height: 100px;
  width: 250px;
}

/* trust */
.trust .content .item h3 {
  font-size: 55px;
}
.trust .content .item:nth-child(1) h3 {
  color: var(--blue-color);
}
.trust .content .item:nth-child(2) h3 {
  color: var(--green-color);
}
.trust .content .item:nth-child(2) {
  border-left: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
}
.trust .content .item:nth-child(3) h3 {
  color: var(--hot-pink-color);
}
.trust .content .item p {
  line-height: 1;
}

/* packages */
.package .package-toggler .toggle,
.package .package-toggler .toggler {
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}
.package .package-toggler .toggler h4 {
  color: var(--mute-color);
  transition: 0.2s;
  font-weight: bold;
}
.package .package-toggler .toggler--is-active h4 {
  color: var(--primary-color);
}
.package .package-toggler .b {
  display: block;
}
.package .package-toggler .toggle {
  position: relative;
  width: 80px;
  height: 35px;
  border-radius: 100px;
  background-color: var(--primary-color);
  overflow: hidden;
  box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}
.package .package-toggler .check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}
.package .package-toggler .check:checked ~ .switch {
  right: 2px;
  left: 57.5%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.08s, 0s;
}
.package .package-toggler .switch {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 57.5%;
  background-color: var(--bg-color);
  border-radius: 36px;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.package .package-toggler .bandwidth {
  display: block;
  color: var(--mute-color);
  font-size: 16px;
  position: absolute;
  right: 0;
  bottom: -90px;
}
.package .content .hide {
  display: none;
}
.package .content .personal .info,
.package .content .enterprise .info {
  border-radius: 10px;
  position: relative;
}
.package .content .personal .price-item:nth-child(1) .info {
  border: 1px solid var(--pink-color);
}
.package .content .personal .price-item:nth-child(2) .info,
.package .content .enterprise .price-item:nth-child(1) .info {
  border: 1px solid var(--blue-color);
}
.package .content .personal .price-item:nth-child(3) .info,
.package .content .enterprise .price-item:nth-child(2) .info {
  border: 1px solid var(--hot-pink-color);
}
.package .content .personal .price-item:nth-child(4) .info,
.package .content .enterprise .price-item:nth-child(3) .info {
  border: 1px solid var(--green-color);
}
.package .content .personal .price-item:nth-child(5) .info,
.package .content .enterprise .price-item:nth-child(4) .info {
  border: 1px solid var(--yellow-color);
}
.package .content .info span {
  background-color: var(--hot-pink-color);
  color: #ffffff;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 12px;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translatex(-50%);
}
.package h4 {
  font-size: 25px;
}
.package .content .personal .price-item:nth-child(1) h4 {
  color: var(--pink-color);
}
.package .content .personal .price-item:nth-child(2) h4,
.package .content .enterprise .price-item:nth-child(1) h4 {
  color: var(--blue-color);
}
.package .content .personal .price-item:nth-child(3) h4,
.package .content .enterprise .price-item:nth-child(2) h4 {
  color: var(--hot-pink-color);
}
.package .content .personal .price-item:nth-child(4) h4,
.package .content .enterprise .price-item:nth-child(3) h4 {
  color: var(--green-color);
}
.package .content h3 {
  font-size: 50px;
  font-weight: normal;
}
.package .coupon h3 {
  font-size: 35px;
}
.package .coupon input {
  border-color: var(--primary-color);
  box-shadow: none;
  border-radius: 4px;
  font-size: 18px;
}
/* start aside */
aside.profile-aside {
  border-radius: 1.5rem;
  border: 1px solid var(--hot-pink-color);
}
aside.profile-aside .aside-header {
  position: relative;
  border-radius: 1.5rem;
  border-bottom: 1px solid var(--blue-color);
  padding: 3rem 1rem 1.5rem;
}
aside.profile-aside .aside-header .header-cover {
  background-color: var(--yellow-light);
  height: 6.5rem;
  border-radius: 1.5rem;
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  width: 100%;
}

aside.profile-aside .user-image {
  width: 5.625rem;
  height: 5.625rem;
  border: 7px solid var(--blue-color);
  position: relative;
  z-index: 2;
}
.aside-body .side-nav .nav-item .nav-lik {
  padding: 1.5rem;
  gap: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}
/* end aside */
/* start profile */
.profile-avatar .user-image {
  width: 9.5625rem;
  height: 9.5625rem;
  border: 9px solid var(--blue-color);
}
.profile-avatar .img-placholder {
  height: 6rem;
  width: 100%;
}
.profile-avatar .img-placholder img {
  height: 6rem;
  width: 100%;
  object-fit: cover;
}
/* end profile */

/* footer */
footer {
  background-color: #121419;
  border-top: 1px solid var(--bs-border-color);
}
footer .social-icons-list .social-icon,
footer .social-icons-list .social-icon a {
  display: inline-block;
}
footer .social-icons-list .social-icon svg {
  fill: #ffffff;
}
footer .info p {
  color: #ffffff;
  font-size: 15px;
}
footer .info ul li {
  display: inline-block;
  padding: 0px;
}
footer .info ul a {
  color: #ffffff;
}

/* contact */
.contact .content .whats {
  position: fixed;
  left: 10px;
  bottom: 10px;
}
.contact .content .chat {
  position: fixed;
  right: 10px;
  bottom: 10px;
}
.contact .content .whats,
.contact .content .chat {
  background-color: #cf4ef6;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .content .whats svg,
.contact .content .chat svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
  .top-nav {
    display: none;
  }
  .trust .content .item h3 {
    font-size: 40px;
  }
  .package .coupon h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 28px;
  }
  h3,
  h4 {
    font-size: 16px;
  }
  .trust .content .item:nth-child(2) {
    border: none;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 25px;
  }
  p {
    font-size: 16px;
  }
  .primary-btn,
  .primary-btn:hover,
  .primary-btn:focus,
  .yellow-btn,
  .yellow-btn:hover,
  .yellow-btn:focus {
    font-size: 16px;
    width: auto;
  }
  .navbar .navbar-brand .logo-img {
    display: none;
  }
  .navbar .mode-toggle {
    border-right: none;
  }
  header .search .input-group {
    flex-direction: column;
  }
  header .search .input-group .search-input {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    height: 50px;
  }
  header .search .input-group .search-btn {
    font-size: 16px;
    height: auto;
    width: auto;
  }
  .why {
    background: url(../images/Blue\ Monster.png) 20px 95% no-repeat,
      url(../images/Pink\ Monster.png) 70px 95% no-repeat;
  }
  .package .package-toggler .toggle {
    width: 50px;
    height: 25px;
  }
  .trust .content .item h3,
  .package .content h3 {
    font-size: 30px;
  }
  .package h4 {
    font-size: 20px;
  }
  .package .coupon h3 {
    font-size: 25px;
  }
  footer .info p {
    font-size: 14px;
  }
}
@media screen and (max-width: 330px) {
  .package .package-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 160px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-break: break-all;
  }
}
