*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --blue-color: darkgoldenrod;
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

.carousel-inner {
    position: relative;
    width: 100%;
    padding-top: 90px;
    overflow: hidden;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid darkgoldenrod;
    background-color: var(--blue-color);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__data img{
    width: 75px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__toggle2{
    left: 300px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
    #carouselExampleSlidesOnly{
        padding-top: 60px;
    }
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    /* padding-top: 1rem; */
  }

    .nav__data img{
        width: 40px;
    }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--blue-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: background-color .3s;
}

.dropdown__item a {
    text-decoration: none;
    font-size: 11px;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--blue-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

    .dropdown__sublink {
    background-color: var(--black-color-lighten);
    }

    #about-us .about-row{
        padding: 30px;
        background: black;
        color: darkgoldenrod;
        margin: 5px 0;
        border: 2px solid darkgoldenrod;
        border-radius: 15px;
    }

    #about-us .about-content h1{
        font-size: 28px;
        padding-bottom: 20px;
    }

    #about-us .about-content p{
        text-align: justify;
        font-size: 14px;
    }

    #about-us .about-image{
        padding-right: 40px;
    }

    #about-us .about-image {
        padding-right: 0;
    }

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }

  .nav__data img{
        width: 40px;
    }
}

/* For large devices */
@media screen and (min-width: 1118px) {

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
  }

  .nav__list ul li{
    padding: 0 20px;
  }

  .dropdown__item a{
    text-decoration: none;
  }
      .nav__link {
        height: 100%;
        padding: 0;
        text-decoration: none;
        justify-content: initial;
        column-gap: 0;
        font-size: 11px;
        padding: 0 12px;
        color: #000;
    }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

marquee {
    border-top: 2px solid darkgoldenrod;
    padding: 90px 0 5px 0;
    margin: 5px 0;
    background: black;
    color: darkgoldenrod;
    font-size: 18px;
}

.showreel h1 {
    color: black;
    padding-bottom: 30px;
 }
/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* .active, .dot:hover {
  background-color: #717171;
} */

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

.showreel {
    text-align: center;
    padding: 40px 30px;
    margin: 5px;
    background: black;
    border: 2px solid darkgoldenrod;
    border-radius: 15px;
}

.showreel h1, .showreel h3{
    color: darkgoldenrod;
}

.showreel h1{
    padding-bottom: 30px;
}

.showreel h3{
    padding-bottom: 20px;
}

.showreel video{
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid darkgoldenrod;
}

.header .nav{
    max-width: 1200px;
}

.header .nav2{
    max-width: 1340px;
    padding: 0 30px;
}

#heading h1{
    padding: 20px 0;
    text-align: center;
    color: darkgoldenrod;
    background: black;
    margin: 0 5px;
    border-radius: 15px;
    border: 2px solid darkgoldenrod;
}

#about-us {
    padding: 0;
}

#about {
    display: flex;
    align-items: center;
    padding: 40px;
    background: black;
    border: 2px solid darkgoldenrod;
    margin: 5px;
    border-radius: 15px;
}

#services {
    text-align: center;
    color: darkgoldenrod;
    border: 2px solid darkgoldenrod;
    background: black;
    margin: 5px;
    border-radius: 15px;
}

#about h1 {
    text-align: center;
}

#about h1, #gallery h1, #extra h1 {
    font-size: 36px;
    font-weight: 700;
    color: darkgoldenrod;
}

#about p {
    font-size: 13px;
    line-height: 23px;
    font-weight: 500;
    padding: 13px 0;
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
    color: darkgoldenrod;
}

.about-img {
    text-align: center;
    color: darkgoldenrod;
}

.about-img img {
    width: 500px;
    height: 450px;
    border-radius: 10px;
    border: 2px solid darkgoldenrod;
}

.about-img i {
    font-size: 25px;
    padding-top: 20px;
    color: goldenrod;
}

#about-us .about-row h1 {
    padding: 0 0 40px;
    text-align: center;
}

#about-us .about-row .metro-image img {
    width: 100%;
    box-shadow: 0 0 8px 0 rgb(184, 134, 11), 0 6px 20px 0 rgb(184, 134, 11);
    border-radius: 10px;
}

#about-us .about-row .metro-image2 {
    text-align: right;
}

#about-us .about-row .metro-image2 img {
    box-shadow: 0 0 8px 0 rgb(184, 134, 11), 0 6px 20px 0 rgb(184, 134, 11);
    border-radius: 10px;
    width: 100%;
}

#about-us .about-row .metro-content {
    padding: 0 20px;
}

#about-us .about-row .metro-content2 {
    padding: 0 50px 0 0;
}

#about-us .about-row .metro-content h4, 
#about-us .about-row .metro-content2 h4 {
    font-size: 28px;
}

#about-us .about-row .metro-content .benefits, 
#about-us .about-row .metro-content2 .benefits {
    padding: 20px 0;
}

#about-us .about-row .metro-content p, 
#about-us .about-row .metro-content2 p {
    font-size: 15px;
    text-align: justify;
}

.content-1{
    padding-bottom: 50px;
    text-align: center;
}

.content-1 p{
    padding-bottom: 50px;
}

.content-1 button{
    padding: 15px;
    margin: 40px 0;
    border: none;
    background-color: darkgoldenrod;
    transition: all ease-in .5s;
    border-radius: 5px;
}

.content-1 button:hover{
    background-color: goldenrod;
}

.content-1 button a{
    color: white;
    font-size: 14px;
}

.last-content p{
    text-align: justify;
} 

.services{
    background-color: lightgoldenrodyellow;
    padding: 40px 30px;
    margin-bottom: 0;
    border-radius: 15px;
}

.services h1{
    padding-bottom: 40px;
    font-size: 38px;
    color: darkgoldenrod;
}

#services h2{
    font-size: 36px;
    font-weight: 700;
    padding: 15px 0;
}

#services h3{
    font-size: 16px;
    padding-bottom: 40px;
}

#gallery h1{
    padding: 30px 0;
}

.testimonials{
    display: flex;
    text-align: center;
    justify-content: center;
}

.testimonial-1{
    background-image: url(img/services/1.jpeg);
    min-height: 160px;
    background-size: cover;
    border-radius: 10px;
}

.testimonial-1:hover{
    background-image: url(img/services/1_\(1\).jpeg);
    transition: all .8s ease-in;
}

.testimonial-2{
    background-image: url(img/services/2.jpeg);
    min-height: 160px;
    background-size: cover;
    border-radius: 10px;
}

.testimonial-2:hover{
    background-image: url(img/services/2_\(2\).jpg);
    transition: all .8s ease-in;
}

.testimonial-3{
    background-image: url(img/services/3.jpeg);
    min-height: 160px;
    background-size: cover;
    border-radius: 10px;
}

.testimonial-3:hover{
    background-image: url(img/services/3_\(3\).jpg);
    transition: all .8s ease-in;
}

.testimonial-4{
    background-image: url(img/services/4.jpeg);
    min-height: 160px;
    background-size: cover;
    border-radius: 10px;
}

.testimonial-4:hover{
    background-image: url(img/services/4_\(4\).jpg);
    transition: all .8s ease-in;
}

.testimonial-5{
    background-image: url(img/services/5.jpeg);
    min-height: 160px;
    background-size: cover;
    border-radius: 10px;
}

.testimonial-5:hover{
    background-image: url(img/services/5_\(5\).jpg);
    transition: all .8s ease-in;
}

.testimonials .testimonial{
    padding: 0 30px;
    width: 100%;
}

.testimonials .testimonial img{
    width: 140px;
    border-radius: 50%;
}

.testimonials .testimonial img:hover{
    background-image: url(img/1.png);
}

.testimonials .testimonial p{
    padding: 30px 0;
    font-weight: 600;
    font-size: 13px;
    color: darkgoldenrod;
}

.testimonials .testimonial button {
    padding: 4px 10px;
    border: none;
    color: goldenrod;
    font-size: 12px;
    cursor: pointer;
    background: darkgoldenrod;
    border-radius: 5px;
}

.testimonials .testimonial button a{
    text-decoration: none;
    color: #001665;
}

.testimonials .testimonial button a:hover{
    color: black;
    transition: 0.5s;
}

#gallery{
    text-align: center;
    background-color: #000;
    margin: 5px;
    border: 2px solid darkgoldenrod;
    border-radius: 15px;
}

#gallery .gallery{
    padding: 40px 30px;
    background-color: lightgoldenrodyellow;
    border-radius: 0 0 15px 15px;
}

#gallery .gallery button{
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    background-color: darkgoldenrod;
    transition: all ease-in 0.5s;
}
#gallery .gallery button a{
    color: lightgoldenrodyellow;
}

.img-1{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-1:hover{
    scale: 1.1;
    transition: .3s;
}

.img-2{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-2:hover{
    scale: 1.1;
    transition: .3s;
}

.img-3{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-3:hover{
    scale: 1.1;
    transition: .3s;
}

.img-4{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-4:hover{
    scale: 1.1;
    transition: .3s;
}

.img-5{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-5:hover{
    scale: 1.1;
    transition: .3s;
}

.img-6{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-6:hover{
    scale: 1.1;
    transition: .3s;
}

.img-7{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-7:hover{
    scale: 1.1;
    transition: .3s;
}

.img-8{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-8:hover{
    scale: 1.1;
    transition: .3s;
}

.img-9{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-9:hover{
    scale: 1.1;
    transition: .3s;
}

.img-10{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-10:hover{
    scale: 1.1;
    transition: .3s;
}

.img-11{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-11:hover{
    scale: 1.1;
    transition: .3s;
}

.img-12{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img-12:hover{
    scale: 1.1;
    transition: .3s;
}

.gallery-row{
    display: flex;
}

.gallery-row img {
    width: 25%;
    background: darkgoldenrod;
    padding: 2px;
    margin: 0 10px;
}

.client-heading, .celebrity-heading{
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    padding: 30px 0;
    color: darkgoldenrod;
    background-color: black;
    margin: 5px 5px 0;
    border-radius: 15px 15px 0 0;
}

.hot-testimonial{
    min-height: 300px;
    background-size: cover;
    border-radius: 20px
}

.hot-testimonial-1{
    background-image: url(img/kbc.jpeg);
}

.hot-testimonial-2{
    background-image: url(img/kapil.jpeg);
}

.hot-testimonial-3{
    background-image: url(img/tarak-mehta.jpeg);
}

.hot-testimonial-4{
    background-image: url(img/bhabhi-ji.jpeg);
}

.awards-heading {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: darkgoldenrod;
    margin: 5px 5px 0 5px;
    background-color: black;
    padding: 30px 0;
    border: 2px solid #000;
    border-radius: 15px 15px 0 0;
}

#client-testimonial{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: darkgoldenrod;
    margin: 0 5px 30px;
    border: 2px solid black;
    border-radius: 0 0 15px 15px;
}

.awards-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    min-height: 60vh;
    background-color: darkgoldenrod;
    margin: 0px 5px 5px 5px;
    border-radius: 0 0 15px 15px;
}

.awards-testimonial img{
    width: 100%;
    border-radius: 10px;
    border: 3px solid black;
}

.swiper {
    background-color: darkgoldenrod !important;
    border-radius: 0 0 15px 15px;
}

.slider-wrapper{
    overflow: hidden;
    max-width: 1200px;
    margin: 50px 70px;
}

.card-list .card-item{
    height: 530px;
}

.card-list .card-item{
    user-select: none;
    background: rgba(255, 255, 255, 0.2);
    width: 400px;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: 30px;
}

.card-list .card-item .user-image{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 40px;
    border: 3px solid #fff;
    padding: 4px;
}

.card-list .card-item .user-name{
    text-align: justify;
}

.card-list .card-item .user-profession{
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin: 14px 0 40px;
    text-align: justify;
}

.card-list .card-item .message-button{
    font-size: 1.25rem;
    padding: 10px 35px;
    color: #030728;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    background-color: white;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.card-list .card-item .message-button:hover{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    color: #011665;
}

.slider-wrapper .swiper-pagination-bullet{
    background: #fff;
    height: 15px;
    width: 15px;
}

.slider-wrapper .swiper-slide-button{
    color: #000;
    margin-top: -50px;
    transition: 0.2s ease;
}

.awards-slide-button{
    color: #000 !important;
}

.celebrity-heading{
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin: 5px 5px 0 5px;
    border-radius: 15px 15px 0 0;
}


.celebrity-item{
    border: 0px !important;
    background-color: darkgoldenrod !important;
}

.celebrity-item img{
    width: 380px;
    height: 100%;
    border-radius: 10px;
    border: 2px solid black;
}

#extra{
    background-color: darkgoldenrod;
    text-align: center;
}

#extra h1{
    color: #000;
    font-size: 36px;
    font-weight: 700;
    padding: 40px 0px 20px 0;
}

.extra-column .details{
    display: flex;
    justify-content: center;
}

.extra-column .details p {
    border: solid #000;
    border-width: 4px 2px;
    padding: 15px 20px;
    color: #000;
    font-weight: 500;
    font-size: 15px;
}

.details button {
    background-color: #000;
    color: darkgoldenrod;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
}

.social-icons{
    padding: 40px 0;
    border-bottom: 2px solid #000;
}

.icons a{
    text-decoration: none;
}

.icons a i{
    font-size: 30px;
    padding: 0 10px;
    color: #000;
}

#footer{
    background-color: darkgoldenrod;
    color: #000;
    padding: 50px 80px 10px;
}

footer{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer .col{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 20px;
}

footer h4{
	font-size: 15px;
	padding-bottom: 15px;
}

footer p{
	font-size: 13px;
	margin: 0 0 15px 0;
    text-align: left;
    color: #000;
}

footer a{
	font-size: 13px;
	text-decoration: none;
	color: #000;
	margin-bottom: 15px;
    font-weight: 400;
}

footer .install img{
	margin: 10px 0 15px 0;
}

footer .copyright{
	width: 100%;
	text-align: center;
	font-size: 16px;
}

footer .copyright p{
    color: #000;
}

#google-forms{
    padding: 50px;
    background-color: darkgoldenrod;
    display: flex;
}

.col-1{
    width: 40%
}

.col-2{
    width: 60%;
}

.col-2 h1{
    text-align: center;
}

.contact-title{
	margin-top: 15%;
	color: #fff;
	text-transform: uppercase;
	transition: all 5s ease-in-out;
}

.contact-title h1{
	font-size: 32px;
	line-height: 10px;
}

.contact-title h2{
	font-size: 16px;
}

form{
    text-align: center;
	margin-top: 40px;
	transition: all 5s ease-in-out;
}

.form-control {
    width: 450px;
    background: #000;
    border: none;
    outline: none;
    padding: 15px;
    border-bottom: 1px solid #fff;
    color: darkgoldenrod;
    font-size: 18px;
    margin-bottom: 16px;
}

input{
	height: 45px;
}

form .submit {
    background: black;
    border-color: transparent;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    height: 50px;
    margin-top: 20px;
    border-radius: 50px;
}

form .submit:hover{
	background-color: rgb(36, 33, 31);
	cursor: pointer;
    transition: 0.5s ease-in;
}

.company-details{
    padding: 40px;
    margin: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: start;
    border-radius: 15px;
}

.company-details .icon{
    display: flex;
}

.company-details .icon i {
    width: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    padding: 15px;
    background-color: darkgoldenrod;
    margin-right: 20px;
}

.company-details h5{
    font-size: 18px;
    padding-bottom: 10px;
}

.company-details p{
    font-size: 13px;
}

#google-forms .company-details{
    background-color: #000;
}

.map iframe{
    width: 100%;
    height: 90vh;
}

.services-heading h1{
    text-align: center;
    padding: 30px 0;
    font-size: 30px;
}

.gallery-row{
    display: flex;

}

.image{
    padding-right: 50px;
}

.image img{
    width: 500px;
    height: 80vh;
}

.about-row{
    align-items: center;
}

.about-row .about-content{
    padding: 0 20px;
}

.about-image img{
    width: 100%;
    border-radius: 5px;
}

.content{
    padding-right: 80px;
    color: darkgoldenrod;
}

.content h1{
    font-size: 28px;
    padding-bottom: 20px;
    font-weight: 700;
}

.content p{
    font-size: 13px;
    line-height: 1.1rem;
    padding-bottom: 10px;
}

.content p span, .last-row span{
    font-weight: 800;
}

.last-row{
    padding: 20px 180px;
}

.last-row h4{
    padding: 20px 0;
}

.last-row-content{
    text-align: center;
}

.last-row h1{
    font-size: 32px;
    padding-bottom: 30px;
}

.last-row h3{
    padding-bottom: 30px;
}

.last-row p{
    font-size: 18px;
    padding-bottom: 30px;
}

.last-point{
    padding-bottom: 30px;
}

.cards{
    display: flex;
}

.service-1{
    background-image: url(img/services/1_\(1\).jpeg);
    height: 150px;
    width: 100%;
    background-size: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-1:hover{
    background-image: url(img/services/1.jpeg);
    transition: all .5s ease-in;
}

.service-2{
    background-image: url(img/services/2_\(2\).jpg);
    height: 150px;
    width: 100%;
    background-size: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-2:hover{
    background-image: url(img/services/2.jpeg);
    transition: all .5s ease-in;
}

.service-3{
    background-image: url(img/services/3_\(3\).jpg);
    height: 150px;
    width: 100%;
    background-size: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-3:hover{
    background-image: url(img/services/3.jpeg);
    transition: all .5s ease-in;
}

.service-4{
    background-image: url(img/services/4_\(4\).jpg);
    height: 150px;
    width: 100%;
    background-size: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-4:hover{
    background-image: url(img/services/4.jpeg);
    transition: all .5s ease-in;
}

.service-5{
    background-image: url(img/services/5_\(5\).jpg);
    height: 150px;
    width: 100%;
    background-size: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-5:hover{
    background-image: url(img/services/5.jpeg);
    transition: all .5s ease-in;
}

#services-card{
    padding: 40px 80px;
    background-color: black;
}

#services-card .services-heading, #our-work .work-heading{
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    padding: 30px 0;
    color: darkgoldenrod;
}

.cards .card{
  box-shadow: 0 0px 8px 0 rgb(184 134 11), 0 6px 20px 0 rgb(184 134 11);;
    padding: 10px;
    margin: 0 12px;
    width: 25%;
    background-color: black;
    color: darkgoldenrod;
}

.cards .card-2 p, .cards .card-3 p, .cards .card-4 p{
    padding-bottom: 60px;
}

.card img{
    width: 150px;
    padding-bottom: 20px;
    border-radius: 50%;
}

.card h1{
    font-size: 15px;
    font-weight: 700;
}

.card p{
    padding: 20px 0;
    font-size: 13px;
    line-height: 1.2rem;
}

.card button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: darkgoldenrod;
}

.card button a{
    text-decoration: none;
    color: white;
    font-size: 17px;
}

.card button a:hover{
    text-decoration: underline;
}

.cards .package-card{
    width: 33.33% !important;
    text-align: center;
}

.package-card .package-img{
    width: 100%;
}

#our-work {
    padding: 25px 20px;
    background: darkgoldenrod;
    margin-bottom: 30px;
}

.work-heading h1{
    padding-bottom: 20px;
    font-size: 40px;
    font-weight: 700;
    color: black;
}

.work-img .img-gallery{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-img .img-gallery iframe{
    margin: 12px;
    border: 4px solid black;
    border-radius: 10px;
    width: 100%;
    height: 400px;
}

.work-img .img-gallery img {
    width: 31.33%;
    height: 400px;
    padding: 0px;
    border-radius: 10px;
    border: 4px solid black;
    margin: 10px;
}

#celebrity-endorsement .celebrity-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 0;
}

#celebrity-endorsement .celebrity-row .celebrity-img img {
    border: 1px solid darkgoldenrod;
    border-radius: 10px;
    margin-right: 50px;
    box-shadow: 0 0px 8px 0 rgb(184 134 11), 0 6px 20px 0 rgb(184 134 11);
}

#packages{
    background-attachment: fixed;
    background-color: darkgoldenrod;
    background-size: cover;
    padding: 50px 0;
    margin: 30px 0;
}

.cards-box{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.package-card{
    width: 350px;
    padding: 15px;
    background: black;
    color: darkgoldenrod;
    border-radius: 5px;
    margin: auto;
}

.cards-box h2{
    color: darkgoldenrod;
    font-size: 45px;
    margin: 0;
    padding: 0;
    padding-bottom: 15px;
}

.description{
    padding-top: 5px;
    padding-bottom: 5px;
}

.cards-box h3{
    font-size: 35px;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.cards-box h6{
    margin-top: 0;
}

.package-card h4{
    padding-bottom: 20px;
} 

.features{
    margin-top: 0;
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 20px;
    text-align: initial;
    font-size: 15px;
}

.package-card .btn{
    width: 150px;
    height: 40px;
    border-radius: 5px;
    background: grey;
    font-weight: bold;
    margin: 20px 0;
    transition: all ease-in-out .2s;
    border: 2px solid #8bc34a;
    background-color: white;
    color: black;
    font-size: 18px;
    cursor: pointer;
}

.package-card .effect{
    border-color: darkgoldenrod;
}

.package-card .effect:hover{
    background-color: darkgoldenrod;
    color: white;
}

#package{
    padding: 40px 40px 30px;
    background-color: black;
    color: darkgoldenrod;
}

#package .package-content{
    text-align: center;
}

#package .package-content h1{
    padding-bottom: 30px;
}

#package .package-content p{
    font-size: 17px;
    line-height: 1.4rem;
    text-align: justify;
    font-weight: 300;
}

.package-content .benefits{
    text-align: left;
    padding-bottom: 20px !important;
}

@keyframes slide{
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

#logos{
    color: darkgoldenrod;
    background-color: black;
    border-top: 2px dotted darkgoldenrod;
    padding: 30px 0;
}

.logos{
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
    border-radius: 0 0 15px 15px;
}

.logos:before,
.logos:after{
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: '';
    z-index: 2;
}

.logos:before{
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos-color:before{
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), black) !important;
}

.logos:after{
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-color:after{
    right: 0!important;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), black);
}

.logos:hover .logos-slide{
    animation-play-state: paused;
}

.logos-slide{
    animation: 25s slide infinite linear;
    display: inline-block;
}

.logos-slide img{
    width: 200px;
    height: 100px;
    background-color: darkgoldenrod;
    border-radius: 5px;
    padding: 15px;
    margin: 0 40px;
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
}

.logos-content .logos-heading{
    text-align: center;
    font-size: 20px;
    padding: 40px 0px 0;
}

#celebrity-endorsement {
    padding: 30px;
    background: black;
    color: darkgoldenrod;
}

#celebrity-endorsement h1 {
    font-size: 28px;
    text-align: center;
    padding: 20px;
}

.celebrity-images .celebrity-images-column{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.celebrity-images .celebrity-images-column img {
    width: 33%;
    height: 100%;
    padding: 5px;
    margin: 3px 0;
    border-radius: 5px;
    border: 2px solid darkgoldenrod;
}

.celebrity-content h2{
    padding-bottom: 20px;
    font-size: 24px;
    text-align: left;
}

.celebrity-content p{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3rem;
    text-align: justify;
}

.celebrity-content p span{
    font-size: 17px;
    font-weight: 800;
}

.celebrity-container {
  position: relative;
}

.founder-container {
    padding: 50px 0;
    background: black;
    color: darkgoldenrod;
}

.founder-container h1{
    text-align: center;
}

.founder-container .founder-row{
    padding: 50px 30px;
    border-top: 2px dotted darkgoldenrod;
}

.founder-container .founder-row2{
    border-bottom: 0px !important;
}

.founder-row2 .founder-image2{
    padding: 0 !important;
}

.founder-row .about-founder{
    padding: 0 40px;
}

.founder-container .about-founder h1{
    border: 2px solid darkgoldenrod;
    padding: 20px;
    border-radius: 20px;
    background: darkgoldenrod;
    color: black;
    margin: 20px 0;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.founder-container .about-founder p{
    text-align: justify;
    font-size: 17px;
}

.founder-image img {
    border: 1px solid darkgoldenrod;
    width: 100%;
    box-shadow: 0 0px 8px 0 rgb(184 134 11), 0 6px 20px 0 rgb(184 134 11);
    border-radius: 20px;
}

.founder-row{
    padding: 0 30px;
}

.legal-row{
    text-align: center;
    border: 0 !important;
}

.legal-row h1{
    font-size: 19px !important;
}

.legal-row img{
    width: 60%;
}

#advertising {
    border: 2px solid darkgoldenrod;
    padding: 0px 0 30px;
    border-radius: 15px;
    margin: 5px;
    background-color: #fafad2;
}

#advertising .advertising-inner{
    padding: 0px !important;
}

#advertising .advertising-inner img{
    border-radius: 12px 12px 0 0;
}

#advertising .advertising-testimonials{
    padding: 40px 20px 20px;
}

#advertising .advertising-testimonials .advertising-testimonial{
    padding: 0 15px;
}

#advertising .advertising-testimonials .advertising-testimonial p{
    font-size: 10px;
    padding: 20px 0;
}

#advertising .advertising-testimonials .advertising-testimonial-1{
    background-image: url(img/Advertising/ipl-cricket-ground.jpeg);
    min-height: 155px;
    background-size: cover;
    border-radius: 10px;
}

#advertising .advertising-testimonials .advertising-testimonial-1:hover{
    background-image: url(img/Advertising/ipl-cricket-ground-2.jpeg);
}

#advertising .advertising-testimonials .advertising-testimonial-2{
    background-image: url(img/Advertising/ipl-silver-screens.jpeg);
    min-height: 155px;
    background-size: cover;
    border-radius: 10px;
}

#advertising .advertising-testimonials .advertising-testimonial-2:hover{
    background-image: url(img/Advertising/ipl-silver-screens-2.jpeg);
    min-height: 155px;
    background-size: cover;
    border-radius: 10px;
}

#advertising .advertising-testimonials .advertising-testimonial-3{
    background-image: url(img/Advertising/ipl-team.jpeg);
    min-height: 155px;
    background-size: cover;
    border-radius: 10px;
}

#advertising .advertising-testimonials .advertising-testimonial-3:hover{
    background-image: url(img/Advertising/ipl-team-2.jpeg);
}

#advertising .advertising-testimonials .advertising-testimonial-4{
    background-image: url(img/Advertising/ipl-tv-spot.jpeg);
    min-height: 155px;
    background-size: cover;
    border-radius: 10px;
}

#advertising .advertising-testimonials .advertising-testimonial-4:hover{
    background-image: url(img/Advertising/ipl-tv-spot-2.jpeg);
}

#advertising .advertising-testimonials .advertising-testimonial-5{
    background-image: url(img/Advertising/ipl-ott.jpeg);
    min-height: 155px;
    background-size: cover;
    border-radius: 10px;
}

#advertising .advertising-testimonials .advertising-testimonial-5:hover{
    background-image: url(img/Advertising/ipl-ott-2.jpeg);
}

#advertising .advertising-testimonials .advertising-testimonial-6{
    background-image: url(img/Advertising/ipl-cricket-bats-branding.jpeg);
    min-height: 155px;
    background-size: cover;
    border-radius: 10px;
    transition: all .8s ease-in;
}

#advertising .advertising-testimonials .advertising-testimonial-6:hover{
    background-image: url(img/Advertising/ipl-cricket-bats-branding-2.jpeg);
}

#advertising .advertising-testimonials .advertising-testimonial-7{
    background-image: url(img/Advertising/ipl-players-tshirts-branding.jpeg);
    min-height: 155px;
    background-size: cover;
    border-radius: 10px;
    transition: all .8s ease-in;
}

#advertising .advertising-testimonials .advertising-testimonial-7:hover{
    background-image: url(img/Advertising/ipl-players-tshirts-branding-2.jpeg);
}

.home-logos-content{
    background: lightgoldenrodyellow;
    margin: 5px;
    border: 2px solid darkgoldenrod;
    border-radius: 15px;
}

.imp-content{
    padding: 100px 0 20px !important;
}

.imp-paragraph .benefits{
    text-align: center !important;
}

.imp-content p{
    text-align: center !important;
    padding: 0 50px !important;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 60%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.gallery-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


@media only screen and (max-width:415px){

    .header .nav2 {
        padding: 0px 30px;
    }
    .showreel h1 {
        padding-bottom: 30px;
    }

    #google-forms {
    background-color: rgb(216 216 216);
    display: block; 
    }

    .col-2 h1 {
        color: black;
        text-align: center;
    }

    .form-control {
        width: 300px;
    }

    form .submit {
        font-size: 16px;
    }

    #about {
        display: block;
        padding: 20px;
    }

    .slideshow-container {
        padding-top: 0px;
    }

    .prev, .next {
        top: 70%;
    }

    .nav__toggle2{
        left: 270px;
    }

    marquee {
        padding: 60px 0 5px 0;
    }

    .showreel {
        text-align: center;
        padding: 30px 0px;
    }

    .header .nav {
        padding: 0 15px;
    }

    .content {
        padding-right: 0px;
    }

    #about h1, #gallery h1, #extra h1 {
        font-size: 20px;
        font-weight: 700;
    }

    .about-img {
        padding: 20px 0;
    }

    .about-img img {
        width: 100%;
        height: 100%;
    }

    .about-image img{
        padding: 30px 5px 0;
    } 

    #heading h1 {
        font-size: 11px;
        font-weight: bold;
    }

    .content-1 {
        padding-bottom: 0px;
        text-align: center;
    }

    .content-1 button{
        margin: 20px 0;
    }

    #services h3 {
        font-size: 13px;
        padding-bottom: 30px;
    }

    #services h2 {
        font-size: 20px;
        font-weight: 700;
        padding: 15px 0;
    }

    .about-img i {
        padding-top: 0px;
    }

    .about-img h2{
        padding: 20px 0;
    }

    .testimonial-1 {
        min-height: 250px;
    }

    .testimonial-2 {
        min-height: 250px;
    }

    .testimonial-3 {
        min-height: 250px;
    }

    .testimonial-4 {
        min-height: 250px;
    }

    .testimonial-5 {
        min-height: 250px;
    }

    .testimonials {
        display: block;
        text-align: center;
    }

    .testimonials .testimonial p {
        padding: 20px 0;
        font-size: 14px;
    }

    .testimonials .testimonial {
        padding: 20px;
    }

    .testimonials .testimonial button {
        padding: 10px;
        font-size: 14px;
    }

    .services h1 {
        padding: 20px 0;
        font-size: 23px;
    }

    .gallery-row img {
        width: 100%;
        padding: 5px;
    }

    .gallery-row {
        display: block;
    }

    .services {
        padding: 0px;
        margin-bottom: 30px;
    }

    .company-details .icon {
        padding-bottom: 20px;
    }

    .slider-wrapper {
        margin: 30px 10px;
    }

    #gallery .gallery {
        padding: 20px 15px 50px;
    }

    .awards-heading {
        padding: 30px 0;
    }

    .awards-heading h1{
        font-size: 40px;
    }

    .awards-testimonial {
        min-height: 50vh;
    }

    .client-heading, .celebrity-heading{
        font-size: 14px;
    }

    #client-testimonial {
        min-height: 70vh;
    }

    .social-icons {
        padding: 30px 0;
    }

    .celebrity-item img {
        height: 450px;
    }

    #google-forms {
        padding: 20px;
        background-color: #b8860b;
    }

    .company-details {
        padding: 20px;
        margin: 30px 0px;
        display: block;
    }

    .col-1 {
        width: 100%;
        padding: 0 0 30px;
    }

    #footer {
        padding: 40px 30px;
    }

    .carousel-inner {
        padding-top: 0px;
    }

    .about-content{
        padding-bottom: 30px;
    }

    #about-us {
        padding: 20px 0px;
    }

    #about-us .about-image {
        padding-bottom: 30px;
    }

    #about-us .about-row{
        padding: 0;
    }

    #about-us .about-row h1 {
        padding: 30px 0;
    }

    #about-us .about-row .metro-content {
        padding: 20px 0;
    }

    .about-row .about-content {
        padding: 0 5px 30px;
    }

    #about-us .about-content h1 {
        font-size: 24px;
        text-align: center;
    }

    .about-row .last-content h1{
        font-size: 23px;
    }

    .about-row .last-content p{
        font-size: 14px;
    }

    #services-card {
        padding: 20px;
    }

    #services-card .services-heading, #our-work .work-heading {
        padding: 0 0 30px;
    }

    .cards {
        display: block;
    }

    .cards .card {
        width: 100%;
        margin-bottom: 30px;
        margin: 0 0 30px;
    }

    .service-1, .service-2, .service-3, .service-4, .service-5{
        height: 250px;
        border-radius: 10px;
    }

    .card img {
        width: 90%;
        text-align: center;
        padding: 0 0 20px 20px;
        border-radius: 50%;
    }

    .card h1 {
        font-size: 18px;
    }

    .card p {
        padding: 12px 0;
        font-size: 15px;
        line-height: 1.4rem;
    }

    .package-card {
        margin-bottom: 20px;
    }

    .work-heading h1 {
        padding-bottom: 0px;
        font-size: 21px;
    }

    .work-img .img-gallery {
        display: block;
    }

    .work-img .img-gallery img {
        width: 100%;
        height: 100%;
        margin: 0px;
        margin-bottom: 20px;
    }


    .founder-container {
        padding: 30px 0;
        background: black;
        color: darkgoldenrod;
    }

    .founder-row .about-founder {
        padding: 0;
    }

    .founder-container .founder-row {
        padding: 0px 10px;
        border-bottom: 0px dotted darkgoldenrod;
    }

    .founder-container .about-founder h1 {
        padding: 15px 20px;
        font-size: 15px;
    }

    .founder-container .founder-row .founder-image{
        padding: 20px 0 30px;
    }

    .founder-container .founder-row .founder-image2{
        padding-bottom: 20px;
    }

    #advertising {
        padding: 0px;
    }

    .advertising-carousel{
        padding: 0 !important;
    }

    #advertising .advertising-testimonials {
        padding: 20px;
    }

    #advertising .advertising-testimonials .advertising-testimonial {
        padding: 25px 15px;
    }

    #advertising .advertising-testimonials .advertising-testimonial p {
        font-size: 16px;
        padding: 20px 0;
    }

    #advertising .advertising-testimonials .advertising-testimonial-1, 
    #advertising .advertising-testimonials .advertising-testimonial-2, 
    #advertising .advertising-testimonials .advertising-testimonial-3, 
    #advertising .advertising-testimonials .advertising-testimonial-4, 
    #advertising .advertising-testimonials .advertising-testimonial-5, 
    #advertising .advertising-testimonials .advertising-testimonial-6, 
    #advertising .advertising-testimonials .advertising-testimonial-7 {
        min-height: 250px !important;
    }

    #celebrity-endorsement {
        padding: 30px 15px;
    }

    #celebrity-endorsement .celebrity-row {
        display: block;
    }

    #celebrity-endorsement .celebrity-row .celebrity-img img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    #celebrity-endorsement h1 {
        font-size: 16px;
        padding: 0px 0 30px;
        font-weight: 800;
    }
    
    .celebrity-content h2 {
        padding-bottom: 20px;
        font-size: 17px;
    }

    .celebrity-images .celebrity-images-column {
        display: block;
    }

    .celebrity-images .celebrity-images-column img {
        width: 100%;
        height: 100%;
        padding: 15px 0;
        margin: 5px 0;
    }

    #package {
        padding: 30px 15px;
    } 

    #package .package-content h1 {
        padding-bottom: 15px;
    }

    #package .package-content p {
        padding-bottom: 0;
    }

    #package-heading {
        text-align: center;
        padding: 0;
    }
}

@media only screen and (min-width:416px) and (max-width:1024px) {

    .header .nav2 {
        padding: 0 50px;
    }

    .nav__toggle2 {
        left: 630px;
    }

    marquee {
        padding: 60px 0 5px 0;
    }

    .showreel h1 {
        padding-bottom: 30px;
    }

    .showreel {
        text-align: center;
        padding: 15px 10px;
    }

    .header .nav{
        padding: 0 30px;
    }

    #about {
        display: block;
        padding: 30px;
    }

    .content {
        padding-right: 0;
    }

    .content-2{
        padding: 30px 0;
    }

    #about p {
        font-size: 20px;
        line-height: 1.9rem;
        font-weight: 500;
        padding: 13px 0;
        text-align: justify;
        font-family: Arial, Helvetica, sans-serif;
    }

    .about-img img {
        width: 100%;
        height: 750px;
        padding-bottom: 30px;
    }

    #services h3 {
        font-size: 19px;
    }

    .testimonials .testimonial {
        padding: 0 15px;
    }

    .testimonial-1 {
        min-height: 110px;
    }

    .testimonial-2 {
        min-height: 110px;
    }

    .testimonial-3 {
        min-height: 110px;
    }

    .testimonial-4 {
        min-height: 110px;
    }

    .testimonial-5 {
        min-height: 110px;
    }

    .testimonials .testimonial {
        padding: 0 12px;
    }

    .testimonials .testimonial p {
        font-size: 17px;
        padding: 20px 0;
    }

    .hot-testimonial {
        min-height: 200px;
        border-radius: 10px;
    }

    .services {
        padding: 35px;
        margin-bottom: 40px;
    }

    .awards-heading {
        padding-top: 0px;
    }

    .awards-testimonial {
        min-height: 40vh;
    }

    #client-testimonial {
        min-height: 70vh;
        background-color: #b8860b;
    }

    .extra-heading{
        padding-top: 30px;
    }

    .social-icons {
        padding: 30px 0;
    }

    #google-forms {
        padding: 0px;
        padding-bottom: 30px;
        align-items: center;
    }

    .company-details {
        padding: 20px;
        text-align: center;
        margin: 20px;
        display: block;
        border-radius: 15px;
    }

    .company-details .icon {
        display: block;
        padding: 20px 0;
    }

    .form-control {
        width: 400px;
    }

    .package-card {
        margin: 15px;
    }

    .work-heading h1 {
        padding-bottom: 0;
        font-size: 35px;
        font-weight: 700;
    }

    .work-img .img-gallery img {
        height: 100%;
        margin: 10px 0;
    }

    .carousel-inner {
        padding-top: 0px;
    }

    #celebrity-endorsement {
        padding: 50px 20px;
    }

    #celebrity-endorsement .celebrity-row {
        display: block;
    }

    #celebrity-endorsement .celebrity-row .celebrity-img{
        text-align: center;
    }

    #celebrity-endorsement .celebrity-row .celebrity-img img {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .celebrity-item img {
        width: 290px;
    }

    #celebrity-endorsement h1 {
        font-size: 28px;
        padding: 20px 0;
    }

    .celebrity-content p {
        font-size: 18px;
    }

    .celebrity-images .celebrity-images-column img {
        height: 100%;
    }
}