@import url("https://fonts.googleapis.com/css2?family=Concert+One&family=Montserrat:wght@500;600;700;800;900&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  /* overflow: hidden; */
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

:root {
  --white: #ffffff;
  --main-color: #ef0033;
  --dark-grey: #3f3f3f;
  --oxford-blue: hsl(231, 100%, 8%);
}

body {
  font-family: "poppins", sans-serif;
}

a {
  color: var(--white);
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #fff;
  box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 25%);
  border-radius: 50%;
  padding: 1rem;
}

:root {
  --swiper-navigation-color: #22135a;
  opacity: 1 !important;
  --swiper-navigation-size: 1rem !important;
}

.header {
  position: relative;
  width: fit-content;
  text-align: center;
}

.header::before {
  content: "";
  height: 4px;
  width: 30%;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  position: absolute;
}

/* Navbar Starts */
.main-hero {
  height: 100vh;
  /* background: rgb(2,0,36);
    background: linear-gradient(352deg, rgba(2,0,36,1) 0%, rgba(20,63,107,1) 27%, rgba(146,174,242,1) 75%); */

  /* background-color: var(--dark-grey); */

  /* background: #D3CCE3;
    background: -webkit-linear-gradient(to right, #E9E4F0, #D3CCE3); 
    background: linear-gradient(to right, #E9E4F0, #D3CCE3); */

  background: #8e9eab; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #eef2f3,
    #8e9eab
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #eef2f3,
    #8e9eab
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  overflow-x: hidden;

}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 15%;
  padding: 0rem 4rem;
  padding-top: 0.7rem;
  z-index: 2;
}

.logo img {
  width: 4rem;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  align-items: center;
  z-index: 1;
}

nav ul li {
  margin: 0 0.7rem;
  list-style-type: none;
  padding: 5px 15px;
  border-radius: 3px;
  transition: 0.3s;
  border: 2px solid transparent;
  position: relative;
}

nav ul li::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  background-color: var(--main-color);
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.2s;
}

nav ul li a {
  color: #202040;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
}

#open-nav,
#close-nav {
  display: none;
}

nav ul li:hover {
  color: var(--main-color);
}

nav ul li:hover:after {
  width: 100%;
}

/* Navbar Ends */

/* Hero Section Starts */
.hero {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  height: 80%;
  color: #202040;
}

.helloP {
  font-size: 1.7rem;
  font-weight: 500;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  margin-top: 2rem;
}

.motoP {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
}

.hero img {
  width: 35rem;
}

.scrollDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.scrollDiv a {
  font-size: 1.4rem;
  color: #202040;
  transition: all 0.2s;
}

.scrollDiv a:hover {
  transform: translateY(-10px);
}

.scrollDiv p {
  font-size: 1rem;
}

.socialMedias {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 7.7rem;
  cursor: pointer;
}

.socialMedias i {
  font-size: 1.2rem;
  background-color: var(--dark-grey);
  color: var(--white);
  width: 3rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

/* .hero {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 85%;
    animation: hero 1.3s ease-in-out 1  forwards;
}

.hero .graphics img {
    width: 31rem;
}

.hero .info {
    display: flex;
    flex-direction: column;
}

.hero .info h1 {
    font-size: 3rem;
    letter-spacing: 1.6px;
    text-align: left;
    font-weight: 700;
    margin-top: 5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.audience{
    color: var(--main-color);
    position: relative;
}

.audience::after{
    content: " ";
    width: 0%;
    height: 8px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 100;
    animation: audience 1.3s ease-in-out 1 0.8s forwards;
}

@keyframes audience {
    0%{
        width: 0%;
    }

    100%{
        width: 100%;
    }
}

.hero .info p {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: left;
    color: var(--white);
    width: 88%;
    margin-bottom: 3rem;
}

.hero .info button {
    width: 9.2rem;
    height: 2.9rem;
    border: none;
    border-radius: 5px;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 1rem;
    font-family: 'poppins', sans-serif;
    cursor: pointer;
    transition: 0.2s;
}

.hero .info button:hover {
    background-color: var(--white);
    color: var(--dark-grey);
    border: 2px solid var(--main-color);
    transform: scale(1.03); */

@keyframes hero {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

/* Testimonial */
.testimonial {
  margin-top: 6rem;
  padding: 0rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial h1 {
  font-size: 2rem;
  margin-bottom: 3.5rem;
  color: var(--dark-grey);
  text-align: center;
  font-weight: 700;
}

.testimonial .testimonial-div {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 5rem;
}

.testimonial-div .quotation {
  font-size: 10rem;
  position: absolute;
  top: -20%;
  left: 0;
  color: var(--main-color);
  z-index: -1;
  opacity: 0.1;
}

.testimonial-div .comment {
  font-size: 1.2rem;
  font-size: 600;
  margin-bottom: 3rem;
}

.testimonial-div .profilePhoto {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-div .name {
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-div .position {
  color: #808080;
  font-size: 0.9rem;
  font-weight: 500;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/* What we do section */
.what-we-do {
  padding: 0 4rem;
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.what-we-do .swiper-wrapper {
  padding: 1rem 0.5rem;
}

.what-we-do .swiper-wrapper img {
  width: 100px;
  height: auto;
}

.what-we-do marquee {
  display: flex;
}

.what-we-do h1 {
  font-size: 2rem;
  color: var(--dark-grey);
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 700;
}

.what-we-do .slides {
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 8px 8px 24px 12px rgb(0 0 0 / 5%);
  transition: 0.3s;
  cursor: pointer;
  width: 30rem;
  overflow: hidden;
}

.what-we-do .slides:hover {
  transform: scale(0.96);
  box-shadow: 8px 8px 24px 12px rgba(255, 0, 0, 0.05);
}

.what-we-do .slides i {
  font-size: 3rem;
  color: var(--main-color);
  margin-top: 1rem;
}

.what-we-do .slides .topic {
  color: var(--dark-grey);
  margin: 1rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.what-we-do .slides .description {
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  color: rgb(128, 128, 128);
}

/* About Us section */
.about-us {
  margin-top: 5rem;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  /* background-color: #f5f8fc !important; */
  background-color: #fff7f7 !important;
  /* background-color: var(--dark-grey); */
}

.about-us h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  /* color: var(--white); */
  color: var(--dark-grey);
  font-weight: 700;
  letter-spacing: 1px;
}

.about-us p {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 1rem 0rem;
  letter-spacing: 0.9px;
  width: 90%;
  text-align: center;
  color: #808080;
  /* color: #d1cccc; */
}

/* Partners */
.partners {
  padding: 0 5rem;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners .header {
  font-size: 2rem;
  color: var(--dark-grey);
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 700;
}

.partners marquee img {
  width: 11rem;
  height: 8rem;
  margin: 0 3rem;
  object-fit: contain;
}

/* Contact us section */
.contact {
  margin-top: 5rem;
  position: relative;
}

.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}

.contact .title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "poppins", sans-serif;
}

.contact .title::before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 50%;
  width: 4rem;
  height: 3px;
  background: var(--main-color);
  transform: translateX(-50%);
}

.contact .contact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact .contact-content .column {
  width: calc(50% - 30px);
}

.contact .contact-content .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-content .left p {
  text-align: justify;
}

.contact .contact-content .left .icons {
  margin: 10px 0;
}

.contact .contact-content .row {
  display: flex;
  height: 65px;
  align-items: center;
}

.contact .contact-content .row .info {
  margin-left: 30px;
}

.contact .contact-content .row i {
  font-size: 25px;
  color: var(--main-color);
}

.contact .contact-content .info .head {
  font-weight: 500;
}

.contact .contact-content .info .sub-title {
  color: #333;
}

.contact .contact-content .info .sub-title h1 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact .right form .fields {
  display: flex;
}

.contact .right form .field,
.contact .right form .fields .field {
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
}

.contact .right form .textarea {
  height: 90px;
  width: 100%;
}

.contact .right form .name {
  margin-right: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea {
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 6px;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
  border-color: #b3b3b3;
}

.contact .right form .textarea textarea {
  padding-top: 10px;
  resize: none;
}

.contact .right form .button-area {
  display: flex;
  align-items: center;
}

.right form .button-area button {
  color: #fff;
  display: block;
  width: 160px !important;
  height: 45px;
  outline: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  font-family: "poppins", sans-serif;
  background: var(--main-color);
  border: 2px solid var(--main-color);
  transition: all 0.3s ease;
}

.right form .button-area button:hover {
  color: var(--green);
  background: none;
  transform: scale(1.01);
}

.right form .button-area button a {
  height: 45px;
}

.right form .button-area button a:hover {
  color: var(--green);
}

/* Footer Section */
footer {
  background-color: var(--dark-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  margin-top: 6rem;
}

footer h3 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1rem;
}

footer i {
  color: var(--white);
  font-size: 1.4rem;
  padding: 0 1rem;
}

footer i:hover {
  transform: scale(1.03);
  cursor: pointer;
}

footer p {
  color: #ffffff;
  margin-top: 2rem;
  position: relative;
}

footer p a:hover {
  text-decoration: underline;
}

footer p::before {
  content: "";
  width: 200%;
  height: 3px;
  background-color: #6e6668;
  position: absolute;
  top: -20px;
  left: -50%;
}
@media all and (max-width: 768px) {
  .hero img {
    width: 100%;
  }
}
