@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: 'Karla', sans-serif;/*  font-family: 'Inter', sans-serif;    /*  font-family: 'Poppins', sans-serif;  */
  */
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
}

button:focus {
  border: none;
  outline: none;
}

:root {
  --orange: #ff9800;
}

.orange {
  color: var(--orange);
}

.orange-bg {
  background-color: var(--orange);
}

a, a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.short-btn {
  display: inline-block;
  padding: 6px 20px;
  color: #fff;
  border-radius: .35rem;
  font-weight: 600;  /* text-transform: uppercase; */
  transition: 0.3s;
  border: 1px solid transparent;
  font-size: 1.25rem;
}

.orange-button {
  background-color: var(--orange);
}

.border-button {
  background-color: #fff;
  border-color: #000;
  color: #000;
}

.border-button:hover {
  background-color: #000;
  color: #fff;
}

.short-btn:hover, .short-btn:focus {
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.short-btn:hover {
  transform: translateY(-1px);
}

.short-btn:active {
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

/*Navbar Css*/
.navbar-nav .nav-link {
  color: var(--black);
  font-weight: 500;
  margin: 0rem 0.5rem;
}

/*Main-Banner Css*/
.main-banner {
  position: relative;
}

.banner-text {
}

.banner-text h1 {
  line-height: 1.5;
}

.tr-cursor {
  border-left: 5px solid #000;
}

.banner-text ul {
}

.banner-text ul li {
  list-style-type: square;
  font-weight: 600;
  font-size: 1.15rem;
}

/*.main-banner:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient( var(--orange), #ffc107);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 0 100%);
  z-index: -1;
}*/
.banner-img {
  position: relative;
}

.banner-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  width: 80px;
  height: 80px;
  background: url('../images/star.svg');
  background-size: cover;
}

.url-shortener {
  background-image: url('../images/link.svg');
  background-position: 9% 0%;
  background-repeat: no-repeat;
  background-size: 4%;
  padding: 50px 0px;
}

.url-shortener .shortent-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.shortent-box input {
  padding: 1rem;
}

.shortent-box .input-group-text {
  background-color: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  cursor: pointer;
}

.shortent-box .input-group-text:hover {
  opacity: .9;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: none;
}

#shorten-data {
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin-top: 20px;
}

#shorten-data ul {
  margin-bottom: 0px;
  padding-left: 0px;
}

#shorten-data ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
  font-size: 18px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#shorten-data ul li span .short-link {
  padding-right: 20px;
}

#shorten-data ul li.promo-customize {
  background: lemonchiffon;
  border-radius: .25rem;
  padding: 15px 10px;
  border: 0;
}

.features-wrapper {
  background-image: url(../images/link.svg);
  background-position: 95% 0%;
  background-repeat: no-repeat;
  background-size: 4%;
}

.feature-box {
  border-radius: 10px;
  box-shadow: rgb(149 157 165 / 15%) 0px 8px 24px;
  padding: 15px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.feature-box:hover {
  box-shadow: none;
}

.feature-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ff98001a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img img {
  object-fit: cover;
}

.feature-box p {
  margin-bottom: 0px;
}

footer {
  background-color: currentColor;
}

.ftr-box {
  color: #fff;
  display: flex;
  align-items: center;
  margin: 15px auto;
}

.ftr-box svg {
  margin-right: 10px;
  font-size: 18px;
}

.ftr-box p, .ftr-box p a {
  font-size: .9rem;
  color: inherit;
  margin-bottom: 0px;
}

.ftr-social, .ftr-links {
  margin: 15px auto;
}

.ftr-social a, .ftr-links a {
  display: inline-block;
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
}

.copyright p, .powered-by p {
  color: rgba(255, 255, 255, 0.4);
  font-size: .9rem;
  margin: 15px auto 10px;
}

.powered-by p, .ftr-social {
  text-align: right;
}

.powered-by p a {
  color: rgba(255, 255, 255, 0.2);
}

/*Contact Page Css*/
.contact-box {
  display: flex;
  align-items: center;
  box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
  border-radius: .25rem;
  padding: 1rem;
}

.contact-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  margin-right: 15px;
}

.contact-icon svg {
  font-size: 40px;
  color: var(--orange);
}

.contact-details {
}

.contact-details p {
}

.contact-details h4 {
  margin-bottom: 0rem;
  font-weight: 700;
}

.contact-details h4 a {
  color: inherit;
}

/*Login-Signup Page Css*/
.login-signup-wrapper{
  position: relative;
  /* height: 80vh; */
  padding-top: 80px;
}
.login-signup-wrapper:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background-image: linear-gradient(var(--orange), #ffffff);
  clip-path:
  polygon(0 0, 100% 0, 100% 35%, 0 65%);
  z-index: -1;
}
.login-signup-wrapper .container{
  background-color: #fff;
  border-radius: 20px;
  box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}

@media screen and (max-width:991px) {
  #shorten-data ul li {
    display: block;
  }

  #shorten-data ul li span {
    display: block;
  }

  #shorten-data ul li.promo-customize {
    text-align: center;
  }

}

@media screen and (max-width:767px) {
  .url-shortener {
    background: #fff;
    padding: 0px;
  }

  .features-wrapper {
    background: #fff;
  }

  .ftr-social, .ftr-links, .copyright p, .powered-by p {
    text-align: center;
  }

}

@media screen and (max-width:575px) {
  .banner-img {
    margin-top: 30px;
  }

  .shortent-box input {
    border-radius: 0.5rem !important;
  }

  .shortent-box .input-group-text {
    width: 100%;
    border-radius: 0.5rem !important;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    padding: 0.75rem 0.75rem;
  }
  .login-signup-wrapper{
    padding-top: 30px;
  }
}
.terms-list li{
  list-style-type: square;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.privay-list li{
  list-style-type: upper-alpha;
  margin-bottom: 0.5rem;
  font-weight: 500;
}