@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

ul {
  list-style: none;
}

body {
  overflow-x: hidden;
}

header {
  background-image: url("../imgs/hero bg img.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
header .header_bg {
  background-color: rgba(0, 0, 0, 0.445);
}
header .header_bg nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 30px 0px;
  color: white;
}
header .header_bg nav .container h2 {
  font-size: 30px;
}
header .header_bg nav .container h2 span {
  animation: logo 0.9s linear infinite;
}
@keyframes logo {
  0% {
    color: orange;
  }
  25% {
    color: red;
  }
  50% {
    color: #ff6551;
  }
  75% {
    color: yellow;
  }
  100% {
    color: #ff6551;
  }
}
header .header_bg nav .container h2 span:nth-of-type(2) {
  animation: logo 0.9s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(3) {
  animation: logo 0.7s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(4) {
  animation: logo 0.5s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(5) {
  animation: logo 0.3s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(6) {
  animation: logo 0.5s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(7) {
  animation: logo 0.7s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(8) {
  animation: logo 0.9s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(9) {
  animation: logo 0.7s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(10) {
  animation: logo 0.5s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(11) {
  animation: logo 0.3s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(12) {
  animation: logo 0.5s linear infinite;
}
header .header_bg nav .container h2 span:nth-of-type(13) {
  animation: logo 0.7s linear infinite;
}
header .header_bg nav .container ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .header_bg nav .container ul li {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
header .header_bg nav .container ul li:hover {
  color: #ff6551;
}
header .header_bg nav .container ul li::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
  background-color: #ff6551;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -5px;
  transform: translate(-50%);
}
header .header_bg nav .container ul li:hover::after {
  width: 100%;
}
header .header_bg nav .container ul li button {
  padding: 10px 20px;
  background-color: #ff6551;
  color: white;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}
header .header_bg nav .container ul li button:hover {
  transform: scale(1.1);
}
header .header_bg nav .container ul li button:active {
  transform: scale(0.9);
}
header .header_bg .hero .container {
  text-align: center;
  padding: 120px 400px;
  line-height: 50px;
}
header .header_bg .hero .container h4 {
  color: #ff6551;
}
header .header_bg .hero .container h1 {
  font-size: 40px;
  color: white;
}
header .header_bg .hero .container p {
  line-height: 30px;
  padding: 30px;
  color: white;
}
header .header_bg .hero .container button {
  background-color: #ff6551;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}
header .header_bg .hero .container button:hover {
  transform: scale(1.1);
}
header .header_bg .hero .container button:active {
  transform: scale(0.9);
}

.s1 {
  background-color: #26335d;
}
.s1 .container {
  padding: 50px 0px;
}
.s1 .container .s1_title {
  padding: 10px 30px;
  line-height: 30px;
  text-align: left;
  color: white;
  padding-bottom: 50px;
}
.s1 .container .s1_title h4 {
  color: #ff6551;
}
.s1 .container .box {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.s1 .container .box .card {
  width: 230px;
  background-color: white;
  line-height: 30px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  animation: card 0.9s linear infinite;
  transition: all 0.3s ease;
}
.s1 .container .box .card:hover {
  transform: scale(1.1);
}
.s1 .container .box .card:active {
  transform: scale(0.9);
}
.s1 .container .box .card h3 {
  padding-bottom: 10px;
  position: relative;
  transition: all 0.3s ease;
}
.s1 .container .box .card h3::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
  background-color: #ff6551;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -2px;
  transform: translate(-50%);
}
.s1 .container .box .card h3:hover::after {
  width: 100%;
}
.s1 .container .box .card p {
  padding-top: 20px;
}
.s1 .container .box .card:nth-of-type(2) {
  margin-top: 50px;
  animation: card ease 0.5s linear infinite;
}
.s1 .container .box .card:nth-of-type(3) {
  background-color: #ff6551;
  color: white;
  animation: cards 0.9s linear infinite;
}
.s1 .container .box .card:nth-of-type(4) {
  margin-top: 50px;
  animation: card ease 0.5s linear infinite;
}

.s2 {
  background-color: #26335d;
}
.s2 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  color: white;
}
.s2 .container .card {
  width: 400px;
}
.s2 .container .card p {
  padding-bottom: 40px;
}
.s2 .container .card h1 {
  padding-bottom: 20px;
  font-size: 40px;
  position: relative;
}
.s2 .container .card h1::after {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  left: 0px;
  top: -10px;
  background-color: #ff6551;
  transition: all 0.3s ease;
}
.s2 .container .card h1:hover::after {
  width: 30%;
}
.s2 .container .card img {
  width: 100%;
}
.s2 .container .card span {
  color: #ff6551;
}

.s3 {
  background-color: #26335d;
}
.s3 .container {
  padding-bottom: 50px;
}
.s3 .container .s3_title {
  padding: 50px 90px;
  line-height: 30px;
  color: white;
}
.s3 .container .s3_title h1 {
  padding-bottom: 20px;
}
.s3 .container .s3_title h4 {
  color: #ff6551;
}
.s3 .container .box {
  display: flex;
  align-items: start;
  gap: 50px;
  justify-content: center;
}
.s3 .container .box .card {
  transition: all 0.3s ease;
  line-height: 30px;
  width: 250px;
  background-color: white;
  padding: 10px;
}
.s3 .container .box .card:hover {
  transform: scale(1.05);
}
.s3 .container .box .card p:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ff6551;
  font-weight: 700;
}
.s3 .container .box .card p:nth-of-type(1) button {
  padding: 5px 5px;
  border-radius: 50px;
  border: none;
  background-color: #26335d;
  color: white;
}
.s3 .container .box .card p:nth-of-type(1) button i {
  color: #ffce31;
}
.s3 .container .box .card p:nth-of-type(2), .s3 .container .box .card p:nth-of-type(3) {
  color: #252b42;
  font-weight: 700;
}
.s3 .container .box .card p:nth-of-type(4), .s3 .container .box .card p:nth-of-type(5) {
  color: #737373;
  font-weight: 700;
}
.s3 .container .box .card span:nth-of-type(1) {
  color: #737373;
  font-weight: 700;
}
.s3 .container .box .card span:nth-of-type(2) {
  color: #2435a1;
  font-weight: 700;
}
.s3 .container .box .card .rasm {
  position: relative;
}
.s3 .container .box .card .rasm .app {
  position: absolute;
  bottom: 24px;
  left: 49px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s3 .container .box .card .rasm .app i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid;
  border-radius: 50%;
  background-color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}
.s3 .container .box .card .rasm .app i:hover {
  background-color: red;
  transform: scale(1.1);
}
.s3 .container .box .card .rasm .app i:active {
  background-color: white;
  transform: scale(0.9);
}
.s3 .container .box .card .rasm button {
  position: absolute;
  left: 20px;
  top: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  background-color: #e74040;
  color: white;
}
.s3 .container .box .card .rasm img {
  width: 100%;
}
.s3 .container .box .card button:nth-of-type(1) {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #ff6551;
  color: #ff6551;
  background-color: white;
  margin: 20px 0px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.s3 .container .box .card button:nth-of-type(1):hover {
  transform: scale(1.1);
  background-color: #ff6551;
  color: white;
}

.s4 {
  background-color: #26335d;
}
.s4 .container {
  padding: 50px 0px;
}
.s4 .container .s4_title {
  color: white;
  line-height: 30px;
  padding: 20px 50px;
  padding-bottom: 50px;
}
.s4 .container .s4_title h1 {
  padding: 20px 0px;
}
.s4 .container .s4_title h4 {
  color: #ff6551;
}
.s4 .container .box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.s4 .container .box .card {
  width: 328px;
  line-height: 40px;
  padding: 10px;
  background-color: white;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}
.s4 .container .box .card:hover {
  transform: scale(1.03);
}
.s4 .container .box .card h1 {
  color: #ff6551;
}
.s4 .container .box .card h1 p {
  font-size: 14px;
  color: #8ec2f2;
}
.s4 .container .box .card button {
  padding: 10px 50px;
  border-radius: 5px;
  border: 1px solid white;
  background-color: #ff6551;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.s4 .container .box .card button:hover {
  transform: scale(1.1);
  background-color: transparent;
  color: #ff6551;
  border: 1px solid #ff6551;
}
.s4 .container .box .card button:active {
  transform: scale(0.9);
}
.s4 .container .box .card .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.s4 .container .box .card .cards p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.s4 .container .box .card .cards p:hover {
  transform: scale(1.1);
}
.s4 .container .box .card .cards p i {
  font-size: 30px;
  color: #2dc071;
}
.s4 .container .box .card .cards p:nth-of-type(4) i, .s4 .container .box .card .cards p:nth-of-type(5) i {
  color: #bdbdbd;
}
.s4 .container .box .card:nth-of-type(2) {
  position: relative;
}
.s4 .container .box .card:nth-of-type(2) .new {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 20px;
  top: 10px;
  border: 1px solid;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e77c40;
  color: white;
  transition: all 0.3s ease;
}
.s4 .container .box .card:nth-of-type(2) .new:hover {
  transform: scale(1.1);
}

.s5 {
  background-color: #26335d;
}
.s5 .container {
  padding: 50px 0px;
}
.s5 .container .s5_title {
  padding: 50px 100px;
  line-height: 30px;
  color: white;
}
.s5 .container .s5_title h4 {
  color: #ff6551;
  padding-bottom: 10px;
}
.s5 .container .s5_title h1 {
  padding-bottom: 20px;
}
.s5 .container .box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.s5 .container .box .card {
  width: 478px;
  text-align: center;
  line-height: 25px;
  background-color: white;
}
.s5 .container .box .card .img {
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 15px 170px;
}
.s5 .container .box .card .img img {
  width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s5 .container .box .card p {
  color: #737373;
  font-weight: 600;
  padding-bottom: 15px;
}
.s5 .container .box .card .star {
  color: #f3cd03;
  padding-bottom: 20px;
}
.s5 .container .box .card span {
  padding-top: 20px;
  color: #737373;
  font-weight: 700;
  padding-bottom: 50px;
}

.s6 {
  background-color: #26335d;
}
.s6 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 0px;
}
.s6 .container .s6_title {
  text-align: center;
  padding: 50px 100px;
  line-height: 25px;
  padding-bottom: 50px;
  color: white;
}
.s6 .container .s6_title h4 {
  color: #ff6551;
  padding-bottom: 15px;
}
.s6 .container form {
  text-align: center;
  width: 702px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 2px 0px;
  border-radius: 2px;
}
.s6 .container form input {
  width: 100%;
  padding: 15px 20px;
  outline: none;
  border-radius: 5px;
  border: none;
}
.s6 .container form button {
  padding: 16px 20px;
  border-radius: 5px;
  border: none;
  background-color: #ff6551;
  color: white;
}

footer {
  background-color: #26335d;
}
footer .container {
  padding: 50px 0px;
}
footer .container .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container .box ul {
  line-height: 30px;
  color: white;
}
footer .container .box ul li {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
footer .container .box ul li::after {
  content: "";
  position: absolute;
  background-color: #ff6551;
  transition: all 0.6s ease;
  width: 0;
  height: 2px;
  left: 50%;
  transform: translate(-50%);
  bottom: -3px;
}
footer .container .box ul li:hover::after {
  width: 100%;
}
footer .container .bottom {
  margin-top: 50px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
footer .container .bottom ul {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #ff6551;
}
footer .container .bottom p {
  font-weight: 600;
  color: #737373;
}/*# sourceMappingURL=main.css.map */