* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

#navbar .top-bg {
  width: 800px;
  height: 400px;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  transform: rotate(-45deg);
  background-color: #f25f3a;
  position: absolute;
  right: -100px;
  opacity: 0.2;
}

@media screen and (max-width: 789px) {
  .top-bg {
    display: none;
  }
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 10vh;
  font-family: "Be Vietnam", sans-serif;
}

.nav-links {
  z-index: 2;
  display: flex;
  justify-content: space-around;
  width: 60%;
}

.nav-links li {
  list-style: none;
  margin-top: 30px;
}

.nav-links li .btn {
  position: relative;
  top: -10px;
  border-color: #f25f3a;
}

.nav-links li .btn:hover {
  background-color: white;
  color: #f25f3a;
  border-color: #f25f3a;
}

.nav-links a {
  color: #1d1e25;
  text-decoration: none;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #9095a7;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #1d1e25;
  margin: 5px;
}

@media screen and (max-width: 768px) {
  .nav-links {
    width: 50%;
  }
  .nav-links a {
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 10vh;
    background-image: linear-gradient(to right, #ffefeb, #f25f3a);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .nav-links li {
    opacity: 0;
  }
  .nav-links li .btn-navbar {
    color: white;
    border-color: white;
  }
  .nav-links a {
    color: white;
  }
  .burger {
    display: block;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

#top {
  padding: 5% 7%;
}

#top .btn {
  background-color: #f25f3a;
  color: white;
  border-radius: 25px;
  align-items: center;
  margin: 10% 0;
}

#top .introductionIm {
  width: 100%;
}

h1 {
  margin-top: 15%;
  padding: 5% 10% 5% 0;
  font-weight: 700;
  font-family: "Be Vietnam", sans-serif;
}

@media screen and (max-width: 789px) {
  .top-row {
    flex-flow: column-reverse;
  }
}

#features {
  padding: 3% 7%;
}

#features .contmiddle {
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  #features .contmiddle {
    margin: auto 4%;
  }
  #features .col-features {
    padding: 1% 8% 1% 0;
  }
}

#features .col-features {
  padding: 1% 5% 1% 0;
}

#features .title-row {
  padding: 5% 10% 3% 0;
}

#features .orange-cont {
  background-color: #f25f3a;
  color: white;
  border-radius: 25px;
  height: 30px;
  width: 40px;
  padding-top: 2px;
  padding-left: 11px;
  align-items: center;
}

h4 {
  margin: 0 10px;
  font-family: "Be Vietnam", sans-serif;
}

h5 {
  color: #9095a7;
  line-height: 2rem;
  font-weight: 400;
}

.middle-bg {
  width: 800px;
  height: 400px;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
  transform: rotate(-45deg);
  background-color: #f25f3a;
  position: absolute;
  left: -300px;
  margin-bottom: 100px;
  opacity: 0.2;
}

@media screen and (max-width: 789px) {
  .middle-bg {
    display: none;
  }
}

.cont-opinions {
  align-items: center;
  padding: 50px 15% 50px 15%;
  text-align: center;
}

.cont-opinions .title-weight-bold {
  font-weight: 700;
}

.cont-opinions .text-font {
  font-family: "Be Vietnam", sans-serif;
}

.cont-opinions .name-weight {
  font-weight: "Be Vietnam", sans-serif;
}

.cont-opinions .name-pad {
  padding: 15px 0;
}

#cta {
  background-color: #f25f3a;
  padding: 5% 7%;
}

#cta .btn-calltoaction {
  background-color: white;
  color: #f25f3a;
  border: 2px solid #f25f3a;
  border-radius: 25px;
  height: 50px;
  width: 300px;
}

#cta .btn-calltoaction:hover {
  background-color: #f25f3a;
  color: white;
  border-color: white;
}

#cta .calltoaction-color {
  color: white;
}

@media screen and (max-width: 768px) {
  #cta h2 {
    text-align: center;
  }
  #cta .btn-calltoaction {
    width: 100%;
  }
}

#footer {
  padding: 3% 7%;
  background-color: #1d1e25;
}

#footer .contsocial {
  padding: 60px 20px;
}

#footer .contsocial .text-font {
  font-family: "Be Vietnam", sans-serif;
}

#footer .contsocial .links-footer {
  text-align: center;
}

#footer .contsocial .icon-row {
  justify-content: center;
}

#footer .contsocial .icon-row i {
  padding-right: 3%;
  color: white;
}

#footer .contsocial .icon-row i:hover {
  color: #f25f3a;
}

#footer .contsocial .input-footer {
  height: 50px;
  border-radius: 25px;
  margin-right: 1%;
  padding-left: 15px;
}

#footer .contsocial .search-row {
  justify-content: center;
  padding: 10px 0 40px 0;
}

#footer .contsocial .btn {
  background-color: #f25f3a;
  color: white;
  border-radius: 25px;
  align-items: center;
}

#footer .contsocial .calltoaction-color {
  color: white;
}

#footer .contsocial .calltoaction-color:hover {
  color: #f25f3a;
}

@media screen and (max-width: 768px) {
  #footer .contsocial {
    text-align: center;
  }
  #footer .contsocial .row .logo-col {
    justify-content: center;
  }
}
