@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --blue: #31326f;
  --light-blue: #258aff;
  --color-primary: #9d0191;
  --color-sec: #db2c00;
  --color-grey: #e3eef8;
  --light-grey: #ccc;
  --dark-grey: #222831;
  --pink: #db6400;
  --footer: #09131f;
}


* {
  font-family: 'open Sans', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  border: none;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}


body {
  font-family: "Open Sans", sans-serif;
}

body::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(#e9204f,#2196f3);
  clip-path: circle(20% at 10% 10%);
}


section {
  padding: 3rem 9%;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
 color: #fff;
  background: var(--pink);
  cursor: pointer;
  border-radius: .5rem;
  font-size: 1.7rem;
  box-shadow: 0 4px 10px rgb(75, 73, 73), 0 4px 10px rgb(248, 192, 192);
}

.btn:hover {
 background: var(--color-sec);
  color: #e4f3c6;  
}

.top {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 9%;
  background: #040C18;
}

.top .logo {
    width: 14rem;
    margin-left: -3.8rem;
  }

.top .logo i {
  color: #FF4820;
}

.top .navbar ul {
  list-style: none;
}

.top .navbar ul li {
  position: relative;
  float: left;
}

.top .navbar ul li:hover ul {
  display: block;
}

.top .navbar ul li a {
  padding: 2rem;
  display: block;
  font-size: 1.7rem;
  color: #fff;
}

.top .navbar ul li a:hover {
  background: var(--pink);
}

.top .navbar ul li ul {
  position: absolute;
  left: 0;
  width: 20rem;
  background: #040C18;;
  display: none;
  opacity:85%;
  width: 500px;
  grid-template-rows: repeat(2, 1fr);
}

.top .navbar ul li ul li {
  width: 100%;
}

#menu-btn {
  cursor: pointer;
  color: #fff;
  font-size: 2.5rem;
  display: none;
}


.hamburger,
.close,
.search {
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

.hamburger {
  display: none;
}

.search {
  font-size: 1.8rem;
  margin-left: -1.1rem;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.5rem 3rem 0 0;
  display: none;
}



#intro {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  padding: 0;
  z-index: -2;
}

#intro .container {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: 70%;
  background-attachment: fixed;
  width: 100%;
}
.vid-bg{
    position: absolute;
    right: 0;
    bottom: 0;
    min-height: 100%;
    min-width: 100%;
}
.line {
  position: relative;
  padding-top: 3rem;
}

.line::before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 0;
  width: 5rem;
  height: 3px;
  background-color: var(--pink);
}
.line h1{
  font-size: 3rem;
  font-weight: 300px;
}

.intro-text {
  width: 80%;
  padding: 8rem 0;
}

.intro-text h1 {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5rem;
}

.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--pink);
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
}

.btn-dark {
  background-color: transparent;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 99.5%;
  height: 100%;
  background-color: var(--pink);
  z-index: -1;
  transform: translateX(-100%);
  transition: all 0.4s;
}

.btn:hover::before {
  /* background-color: var(--pink); */
  transform: translateX(0);
}
/* INTRO CARD */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  row-gap: 4rem;
  column-gap: 2rem;
  margin-top: 2rem;
  /* padding-top: 3rem; */
  z-index: 1;
}

.card {
  background-color: var(--dark-grey);
  padding: 6rem 3rem;
}

.card i {
  font-size: 4rem;
  color: var(--pink);
  padding-bottom: 3rem;
}

.heading-3 {
  font-size: 2.3rem;
  font-weight: 700;
}

.card h3 {
  padding-bottom: 4rem;
}

.card .line::before {
  top: 7rem;
}


.btn-one{
  text-align: center;
}

/* bars around the third card */
.card:nth-child(3) {
  position: relative;
  background-color: var(--dark-grey);
}

.card:nth-child(3)::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1.5rem;
  width: 105%;
  height: 7rem;
  background-color: var(--pink);
  z-index: -1;
}

.card:nth-child(3)::after {
  position: absolute;
  content: "";
  right: -5%;
  bottom: -1.5rem;
  width: 5%;
  height: 7rem;
  background-color: var(--pink);
  z-index: 1;
}
/* for card2 */
.intro-cards2{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  row-gap: 4rem;
  column-gap: 2rem;
  margin-top: 2rem;
  /* padding-top: 3rem; */
  z-index: 1;
}
.container .card2{
  position: relative;
  width: 280px;
  height: 450px;
  margin: 30px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(235, 100, 10, 0.5);
  border-left: 1px solid rgba(219, 91, 5, 0.5);
  backdrop-filter: blur(5px);
}

.container .card2 .content{
  padding: 20px;
  text-align: center;
  transform: translateY(100px);
  transition: 0.5s;
}
.container .card2 .content:hover{
  transform: translateY(0px);
}
.container .card2 .content h2{
  position: absolute;
  top: -80px;
  right: 30px;
  font-size: 8em;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.container .card2 .content h3{
  font-size: 1.8em;
  color: #fff;
  z-index: 1;
}
.container .card2 .content p{
  font-size: 1.8em;
  color: #fff;
  z-index: 1;
}
.container .card2 .content a{
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background: var(--pink);
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 15px rgba(136, 78, 3, 0.5);
}

.container .card2 .content a:hover{
  background-color: var(--color-sec);
}


/* Card hover effect */
.card:hover,
.card:first-child {
  background-color: var(--pink);
  color: var(--white);
}
.card:hover i,
.card:first-child i {
  color: var(--white);
}
.card:hover .line::before,
.card:first-child .line::before {
  background-color: var(--white);
}



.footer {
  background:var(--footer);
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  padding: 1rem 0;
  color:var(--blue);
}

.footer .box-container .box a {
  display: block;
  font-size: 1.4rem;
  padding: 1rem 0;
  color: var(--white);
}

.footer .box-container .box a:hover {
  color: var(--pink);
}

.footer .box-container .box a:hover i {
  padding-right: 2rem;
}

.footer .box-container .box a i {
  color:var(--color-grey);
  padding-right: .5rem;
}

.footer .credit {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  color:var(--white);
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.footer .credit span {
  color:var(--pink);
}

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }
  .top {
    padding: 2rem;
  }
  .top .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #031B34;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .top .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .top .navbar ul li {
    width: 100%;
  }

  .top .navbar ul li:hover{
    background-color: #0b290a;
  }
  .top .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 20rem;
    background: var(--footer);
    display: none;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}
/* Services section */
.heading > * {
  padding-bottom: 2rem;
}

.heading h2 {
  font-size: 5rem;
  font-weight: 700;
  margin-top: 4rem;
}

.heading p {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  row-gap: 4rem;
  column-gap: 2rem;
  margin-top: 2rem;
}

.service {
  /* width: 80%; */
  background-color: #eee;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.service i:first-child {
  color: var(--pink);
  font-size: 2rem;
}

.service:hover {
  background-color: var(--pink);
  color: var(--white);
  cursor: pointer;
}

.service:hover i:first-child {
  color: var(--white);
}

/* Horizontal line */
.h-line {
  position: relative;
}

.h-line::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 5rem;
  background-color: var(--pink);
}

/* About section */
/* About section */
/* About section */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2rem;
  row-gap: 1rem;
}

.image1 {
  grid-row: 1/3;
  grid-column: 1/3;
}

.image img {
  filter: grayscale(80%);
}

.image {
  position: relative;
  height: 100%;
  cursor: pointer;
}

.image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.image-text {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--white);
  z-index: 11;
}

.image:hover img {
  filter: grayscale(0);
}

/* About text */
.about-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  row-gap: 4rem;
  column-gap: 2rem;
  margin-top: 2rem;
}

.about-text > * {
  padding: 0 1rem;
}

.about-text h3 {
  padding-bottom: 1rem;
}

.about-text p {
  color: #777;
}

/* Blog section */
/* Blog section */
/* Blog section */
#blog .heading {
  text-align: center;
}

.blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  row-gap: 4rem;
  column-gap: 2rem;
  margin-top: 2rem;
}
/* .blog > div:nth-child(2) {
  margin: 0 1rem;
} */

.blog-item {
  text-align: center;
  position: relative;
  padding: 0 1rem;
  overflow: hidden;
}

.blog i {
  font-size: 1.4rem;
  padding-top: 1.5rem;
}

.blog .blog-text {
  position: absolute;
  bottom: 1rem;
  color: var(--white);
  z-index: 11;
  transform: translateY(2.5rem);
  transition: all 0.3s;
}

.blog-item img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s;
}

.blog-item:hover .blog-text {
  transform: translateY(0);
}
.blog-item:hover img {
  transform: scale(1.1) rotate(2deg);
  /* transform: rotate(20deg); */
}

/* Contact us */
/* Contact us */
/* Contact us */
#contact {
  background-color: var(--dark-grey);
  padding: 10rem 0;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact i {
  color: var(--white);
  font-size: 2.5rem;
  border: 2px solid var(--pink);
  padding: 1rem;
  width: 5rem;
  height: 5rem;
  text-align: center;
  border-radius: 50%;
  margin: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact i:hover {
  transform: translateY(-1rem);
}

.contact h2 {
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
}

/* Newsletter section */
.newsletter {
  background: url(../../images/gt.jfif);
  background-attachment: fixed;
  background-size: cover;
  padding: 100px 40px;
  text-align: center;
  color: #e3eef8;
}
.newsletter p{
  max-width: 600px;
  margin: 40px auto;
  font-size: 15px;
  font-weight: 300;
}
.email-box{
  height: 40px;
  display: flex;
  justify-content: center;
}
.email-box i{
  background: #db2c00;
  width: 40px;
  line-height: 40px;
}
.email-box:hover > .tbox, .tbox:focus{
width: 260px;
padding: 0 10px;
}
.tbox,.btn-news{
  border: none;
  outline: none;
}
.tbox{
  width:0px;
  transition: 0.6s;
  font-size: 20px;
}
.btn-news{
  background: #01ff63;
  color: #db2c00;
  padding: 0 10px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
}
.btn-news:hover{
  background: #db6400;
  color: var(--white);
}

/* Footer section */
/* Footer section */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

/* Modal section */
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.modal-content {
  width: 80%;
  max-width: 60rem;
  margin: 20% auto;
  padding: 2rem;
  position: relative;
  text-align: center;
  animation: slide ease 0.8s;
}

@keyframes slide {
  0% {
    transform: translateY(-30rem);
  }
  100% {
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: var(--white);
  font-size: 5rem;
  cursor: pointer;
}


/* contact ID */
a:hover{
  text-decoration: none;
}
.address{
  padding: 25px;
  padding-left: 20px;
  border-radius: 6px;
  background: #23263a;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
  rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
  rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
  rgba(0, 0, 0, 0.06) 0px 2px 1px, 
  rgba(0, 0, 0, 0.09) 0px 4px 2px, 
  rgba(0, 0, 0, 0.09) 0px 8px 4px, 
  rgba(0, 0, 0, 0.09) 0px 16px 8px, 
  rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.address i{
  font-size: 32px;
  color: var(--color-sec);
}
.address span{
  font-weight: bold;
  position: relative;
  font-size: 16px;
  top: -10px;
  color: var(--white);
  left: 10px;
}
.address p{
  margin-bottom: 0;
  color: var(--white);
  margin-left: 55px;
}
#contact-us{
  padding-top: 120px;
}
.contactForm{
  margin-top: 70px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
  rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
  rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
  rgba(0, 0, 0, 0.06) 0px 2px 1px, 
  rgba(0, 0, 0, 0.09) 0px 4px 2px, 
  rgba(0, 0, 0, 0.09) 0px 8px 4px, 
  rgba(0, 0, 0, 0.09) 0px 16px 8px, 
  rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.contactForm input[type=text],
.contactForm input[type=email]{
  font-size: 20px;
  border: none;
  width: 100%;
  background: #23263a;
  color: var(--white);
  padding: 20px 35px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
  rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
  rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
  rgba(0, 0, 0, 0.06) 0px 2px 1px, 
  rgba(0, 0, 0, 0.09) 0px 4px 2px, 
  rgba(0, 0, 0, 0.09) 0px 8px 4px, 
  rgba(0, 0, 0, 0.09) 0px 16px 8px,
   rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.contactForm textarea{
  font-size: 20px;
  border: none;
  background: #23263a;
  color: var(--white);
  width: 100%;
  padding: 30px 35px;
  margin-bottom: 20px;
  height: 160px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
  rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
  rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
  rgba(0, 0, 0, 0.06) 0px 2px 1px, 
  rgba(0, 0, 0, 0.09) 0px 4px 2px, 
  rgba(0, 0, 0, 0.09) 0px 8px 4px, 
  rgba(0, 0, 0, 0.09) 0px 16px 8px,
   rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.input{
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
  rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
  rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
  rgba(0, 0, 0, 0.06) 0px 2px 1px, 
  rgba(0, 0, 0, 0.09) 0px 4px 2px, 
  rgba(0, 0, 0, 0.09) 0px 8px 4px, 
  rgba(0, 0, 0, 0.09) 0px 16px 8px, 
  rgba(0, 0, 0, 0.09) 0px 32px 16px;
}