/* GLOBAL SETTING */
@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");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}

body {
  margin: 40px 35px 35px 35px;
}

.main-nav {
  margin-bottom: 20px;
}

.hero-section-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.register-now-button button,
.pricing-amount button,
.hero-button,
.nav-item>button {
  cursor: pointer;
  padding: 12px 20px;
  background-color: transparent;
  color: #2b94f1;
  border: 1px solid #2b94f1;
  border-radius: 10px;
  font-size: 15px;
}

.hero-button:hover,
.pricing-amount button:hover,
.nav-item>button:hover {
  background-color: #2b94f1;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* MOBILE+TABLET */
@media screen and (max-width: 768px) {
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .register-now-message h1,
  .testimonial-heading h1,
  .pricing-table-heading h1,
  .service .heading h3,
  .service-provide-heading h1,
  .hero-section-content h1 {
    font-size: 27px;
    text-align: left;
    margin-bottom: 10px;
  }

  .register-now-message p,
  .testimonial-heading p,
  .content .paragraph p,
  .service-provide-content p,
  .hero-section-content p {
    text-align: justify;
    margin-bottom: 20px;
  }

  .service .icon i {
    padding: 20px;
    color: #2b94f1;
    font-size: 60px;
  }

  .pricing-table {
    margin: 40px 0 50px 0;
    background-image: linear-gradient(#09c3f9 60%, #0461ea 100%);
    padding: 20px 22px 35px 22px;
    border-radius: 6px;
  }

  .pricing-table h1 {
    padding: 10px 0 30px 0;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.06em;
  }

  .pricing-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .pricing-items .pricing-item {
    background-color: #ffffff;
    border-radius: 6px;
  }

  .pricing-package {
    margin-bottom: 30px;
    padding: 15px 30px;
  }

  .pricing-item .active {
    background-color: #353535;
  }

  .pricing-package.active h2,
  .pricing-package.active p {
    color: #ffffff;
  }

  .pricing-package h2 {
    margin-bottom: 15px;
    font-size: 23px;
  }

  .pricing-package p {
    font-weight: 300;
    color: #8a8a8a;
  }

  .pricing-features {
    margin-bottom: 40px;
    padding: 0 30px;
  }

  .pricing-features ul li {
    list-style: none;
    margin-bottom: 18px;
  }

  .pricing-features ul li i {
    color: #0ed7a3;
    padding-right: 10px;
  }

  .pricing-amount {
    margin: 15px 0;
    padding: 0 40px;
    text-align: left;
  }

  .pricing-amount h2 {
    margin-bottom: 14px;
  }

  .pricing-amount span {
    color: #8a8a8a;
  }

  .pricing-amount p {
    margin: 10px 0 40px 0;
    color: #8a8a8a;
  }

  .pricing-amount button {
    padding: 11px 30px;
  }

  .testimonial {
    margin-bottom: 30px;
  }

  .testimonial-heading p {
    color: #9ca2b2;
  }

  .testomonial-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-item {
    padding: 20px 25px;
    box-sizing: border-box;
    flex: 0 1 calc(100% - 20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
  }

  .testimonial-item-details {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 15px;
  }

  .testimonial-item-details .item-img i {
    font-size: 60px;
    color: #9ca2b2;
  }

  .register-now {
    background-image: linear-gradient(#0db8ec 60%, #045ada 100%);
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .register-now-message h1 {
    color: #ffffff;
  }

  .register-now-message p {
    color: #ffffff;
    font-weight: 300;
    text-align: left;
  }

  .register-now-button button {
    background-color: #ffffff;
  }

  ul li p {
    text-align: justify;
  }
}

/* NAVIGATION (Mobile + Tablet + Till 940px) for ALL */
@media screen and (max-width: 940px) {
  .main-nav .nav-items {
    display: none;
  }

  .main-nav .logo img,
  .footer-item img {
    width: 106px;
  }

  .main-nav .menu-icon i {
    font-size: 33px;
  }

  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* NAVIGATION (Above 941px + Laptop + Monitor) */
@media screen and (min-width: 941px) {
  .main-nav .menu-icon i {
    display: none;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .logo>img {
    width: 100px;
  }

  .nav-items {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    list-style-type: none;
  }

  .nav-items li:not(:last-child) {
    margin-right: 40px;
  }

  li>a:hover,
  .nav-items .active a {
    color: #000000;
  }

  li>a {
    text-decoration: none;
    color: #8a8a8a;
    font-weight: 500;
  }
}

/* FOOTER-SECTION (768px + 1024px) */
@media screen and (max-width: 1024px) {
  .footer-items {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-item {
    flex: 1 1 auto;
    margin-bottom: 30px;
  }

  .footer-item:nth-child(1) {
    flex-basis: 100%;
  }

  .footer-item:nth-child(2),
  .footer-item:nth-child(3) {
    flex-basis: 50%;
  }

  .footer-item:nth-child(4),
  .footer-item:nth-child(5) {
    flex-basis: 50%;
  }

  .footer-item img,
  .footer-item h3 {
    margin-bottom: 13px;
  }

  .footer-item ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-item .special-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

  .footer-item .special-list li i {
    font-size: 25px;
  }

  footer ul li {
    list-style: none;
  }
}

/* LABPOT+MONITOR */
@media screen and (min-width: 769px) {

  .register-now-message h1,
  .testimonial-heading h1,
  .pricing-table-heading h1,
  .service .heading h3,
  .service-provide-heading h1,
  .hero-section-content h1 {
    font-size: 27px;
    text-align: left;
    margin-bottom: 10px;
  }

  .register-now-message p,
  .testimonial-heading p,
  .service-provide-content p,
  .hero-section-content p {
    text-align: justify;
    margin-bottom: 20px;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
  }

  .hero-section-3,
  .hero-section-2,
  .hero-section-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .hero-section-item {
    flex: 1;
  }

  .pricing-table {
    margin: 65px 0 65px 0;
    background-image: linear-gradient(#09c3f9 60%, #0461ea 100%);
    padding: 40px 0 50px 0;
  }

  .pricing-table h1 {
    padding: 10px 0 30px 0;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.06em;
  }

  .pricing-items {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0 10px;
    gap: 10px;
  }

  .pricing-items .pricing-item {
    background-color: #ffffff;
    border-radius: 6px;
  }

  .pricing-package {
    margin-bottom: 40px;
    padding: 15px 40px;
  }

  .pricing-item .active {
    background-color: #353535;
  }

  .pricing-package.active h2,
  .pricing-package.active p {
    color: #ffffff;
  }

  .pricing-package h2 {
    margin-bottom: 15px;
    font-size: 23px;
  }

  .pricing-package p {
    font-weight: 300;
    color: #8a8a8a;
  }

  .pricing-features {
    margin-bottom: 40px;
    padding: 0 40px;
  }

  .pricing-features ul li {
    list-style: none;
    margin-bottom: 18px;
  }

  .pricing-features ul li i {
    color: #0ed7a3;
    padding-right: 10px;
  }

  .pricing-amount {
    margin: 15px 0;
    padding: 0 40px;
    text-align: center;
  }

  .pricing-amount h2 {
    margin-bottom: 14px;
  }

  .pricing-amount span {
    color: #8a8a8a;
  }

  .pricing-amount p {
    margin: 10px 0 40px 0;
    color: #8a8a8a;
  }

  .pricing-amount button {
    padding: 11px 30px;
  }

  .testimonial {
    background-color: #fdfeff;
    margin: 0 65px;
    padding: 55px 0 55px 0;
  }

  .testimonial-heading h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #1d2b4f;
  }

  .testimonial-heading>p {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 20px;
    color: #9ca2b2;
    margin-bottom: 30px;
  }

  .testomonial-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-item {
    margin: 10px;
    padding: 20px 25px;
    box-sizing: border-box;
    flex: 0 1 calc(48% - 20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .testimonial-item-details {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .testimonial-item-details .item-img i {
    font-size: 60px;
    color: #9ca2b2;
  }

  .register-now {
    background-image: linear-gradient(#0db8ec 60%, #045ada 100%);
    margin-bottom: 50px;
    padding: 70px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .register-now-message {
    margin-left: 65px;
  }

  .register-now-message h1 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 40px;
  }

  .register-now-button {
    margin-right: 65px;
  }

  .register-now-message p {
    color: #ffffff;
    font-weight: 300;
  }

  .register-now-button button {
    color: #ffffff;
    border: 1px solid #edf6fd;
    font-size: 17px;
    font-weight: 600;
  }

  .register-now-button button:hover {
    background: linear-gradient(45deg, #0db8ec, #045ada);
  }
}

/* MOBILE-VIEW */
@media screen and (max-width: 425px) {

  .register-now-button button,
  .hero-button {
    padding: 8px 12px;
  }

  .footer-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

/* ONLY-HERO-SECTION  [426px - 980px]*/
@media screen and (min-width: 426px) and (max-width: 980px) {

  .hero-section-3,
  .hero-section-2,
  .hero-section-1 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
  }

}


/* TABLET-VIEW */
@media screen and (min-width: 426px) and (max-width: 768px) {

  .register-now-button button,
  .hero-button {
    padding: 10px 14px;
  }

  .service-section-1,
  .service-provide {
    margin-top: 30px;
  }

  .service-section-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .service-section-item {
    flex: 1;
  }

  .service {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .all-services .service:nth-child(even) {
    flex-direction: row-reverse;
  }

  .pricing-items .pricing-item {
    width: 90%;
  }
}

/* SMALL-SCREEN-SIZE-LAPTOP-VIEW */
@media screen and (min-width: 769px) {

  .service-section-1,
  .service-provide {
    margin-top: 30px;
  }

  .service-section-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .service-section-item {
    flex: 1;
  }

  .all-services {
    display: flex;
    flex-wrap: wrap;
    margin: 25px 0;
  }

  .all-services .icon i {
    margin-bottom: 25px;
    font-size: 55px;
    color: #2b94f1;
  }

  .all-services .heading h3 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 22px;
  }

  .all-services .content p {
    font-weight: 300;
  }

  .service {
    flex: 0 0 33.3333%;
    margin-bottom: 30px;
  }

}

/* MONITOR-VIEW */
@media screen and (min-width: 1025px) {

  .hero-section-content h1 {
    font-size: 40px;
  }

  .hero-section-content p {
    font-size: 20px;
  }

  .hero-section-2 {
    flex-direction: row-reverse;
  }

  footer {
    display: flex;
  }

  .footer-item {
    flex: 1;
  }

  footer img {
    width: 115px;
  }

  .footer-item ul {
    list-style-type: none;
  }

  .footer-item li {
    margin: 15px 0;
  }

  .footer-item:last-child ul {
    font-size: 23px;
  }
}