* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Pacifico";
  src: url("../fonts/Pacifico.ttf");
}
@font-face {
  font-family: "GraphikRegular";
  src: url("../fonts/GraphikRegular.otf");
}
body {
  font-family: "GraphikRegular" !important;
}
body a {
  text-decoration: none !important;
}

h1 {
  font-size: 55px !important;
  font-family: "Pacifico";
  font-weight: bold !important;
}

h2,
h3,
h4 {
  font-size: 40px !important;
  font-family: "Pacifico";
  font-weight: 500 !important;
}

.btn1 {
  z-index: 1;
  position: relative;
  color: #000;
  padding: 8px 25px;
  outline: none;
  border: none;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.btn1::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #008000;
  border-radius: 5px;
  transform-origin: center right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.btn1:hover {
  color: #fff;
}
.btn1:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
}

.btn2 {
  z-index: 1;
  position: relative;
  color: #000;
  padding: 0.5em 1em;
  outline: none;
  border: none;
  display: inline-block;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.btn2::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #008000;
  border-radius: 5px;
  transform-origin: center right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.btn2:hover {
  color: #fff;
  letter-spacing: 2px;
}
.btn2:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
}

/* <========== WHATSAPP-ICONS ============ */
.whatsapp-icon {
  position: fixed;
  bottom: 20px !important;
  right: 20px !important;
  background: #25d366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  z-index: 99999999999999 !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.whatsapp-icon i {
  font-size: 30px;
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.76);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999 !important;
  padding: 0;
  box-shadow: 0px 0px 5px gainsboro;
  width: 100%;
  background-color: rgba(22, 22, 22, 0.568627451) !important;
  animation-name: example;
  color: #000;
  animation-duration: 1s;
  transition: top 500ms ease-in;
  box-shadow: 0px 0px 5px gainsboro;
}

@keyframes example {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}
.navbar .nav-item {
  padding-right: 8px;
}
.navbar .nav-item .nav-link {
  color: #fff !important;
}

.navbar-brand img {
  height: 35px;
}

.main_banner {
  background: url("../images/main__banner.jpg") bottom no-repeat;
  width: 100%;
  height: 90vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6235294118);
}

.text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 100px;
}

.bigTitle-container {
  font-weight: 600;
  background-color: #008000 !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 15px;
}

.banner_content {
  color: #fff;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
}

.banner_btn {
  padding-top: 15px;
}
.banner_btn a {
  color: #fff;
  letter-spacing: 5px;
  font-weight: bold;
}

.sec_bg {
  background: url("../images/sec-banner.jpg") center no-repeat;
  width: 100%;
  background-size: cover;
}
.sec_bg .service_content {
  background-color: #008000;
  text-align: start;
  color: #fff;
  padding: 40px;
}
.sec_bg .service_content h2 {
  padding-bottom: 30px;
}
.sec_bg .service_content .service_list ul {
  padding-left: 0 !important;
}
.sec_bg .service_content .service_list ul li {
  list-style: none;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.sec_bg2 {
  background: url("../images/sec-banner2.jpg") bottom no-repeat;
  width: 100%;
  background-size: cover;
  height: 90vh;
}
.sec_bg2 .video-section {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 80vh;
  color: #fff;
}

.sec_bg3 {
  background-color: #1A1A1A;
}

.sec_bg4 {
  background: url("../images/sec-banner3.jpg") center no-repeat;
  width: 100%;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3098039216);
}
.sec_bg4 .form-group .form-control {
  border: none !important;
  background: transparent;
  border-bottom: 1px solid #fff !important;
  border-radius: 0;
  color: #fff;
}
.sec_bg4 .form-group .form-control::-moz-placeholder {
  color: #fff;
}
.sec_bg4 .form-group .form-control::placeholder {
  color: #fff;
}

.footer_logo img {
  height: 35px;
}

.new__logo img {
  height: 80px;
}

.footer_nav {
  color: #fff;
}
.footer_nav .pro_name {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: normal;
}
.footer_nav h5 {
  padding-bottom: 15px;
}
.footer_nav p {
  display: flex;
}
.footer_nav p a {
  color: #fff;
}
.footer_nav p span {
  padding-right: 10px;
}

.copy_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.copy_right p {
  margin-bottom: 0 !important;
}
.copy_right a {
  color: #000;
}

.banner {
  background: url("../images/banner-img.jpg") center no-repeat;
  width: 100%;
  height: 70vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6235294118);
}

.banner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45vh;
  color: #fff;
  background-color: #008000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 15px;
}

.contnet_title {
  font-size: 30px !important;
  text-align: center;
  padding-bottom: 20px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.services_bg {
  background: url("../images/services-img.jpg") center no-repeat;
  background-size: cover;
}

.story-contnet {
  background-color: #008000;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  line-height: 30px;
}
.story-contnet p {
  padding-top: 20px;
  text-align: center;
  color: #fff;
}
.story-contnet ul {
  padding-top: 15px;
}
.story-contnet ul li {
  margin-bottom: 15px;
  color: #fff;
  padding-left: 15px;
  border-bottom: 1px solid #fff;
  text-transform: capitalize;
}
.story-contnet ul li::marker {
  content: "\ec62";
  font-family: "remixicon";
  font-size: 20px;
}

.creative_bg {
  background: url("../images/creative-img.jpg") center no-repeat;
  background-size: cover;
}

.contact_info {
  background: url("../images/contact-img.jpg") bottom no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.form-title h2 {
  padding-bottom: 25px;
}

.conatctus_form {
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 25px;
  border-radius: 5px;
  margin-right: 15%;
  height: 100%;
}
.conatctus_form .form-group .form-control {
  border: none !important;
  background: transparent;
  border-bottom: 1px solid rgba(59, 54, 54, 0.9176470588) !important;
  border-radius: 0 !important;
  color: rgba(59, 54, 54, 0.9176470588);
}
.conatctus_form .form-group .form-control::-moz-placeholder {
  color: rgba(59, 54, 54, 0.9176470588);
}
.conatctus_form .form-group .form-control::placeholder {
  color: rgba(59, 54, 54, 0.9176470588);
}
.conatctus_form .btn1 {
  background-color: #90b33d;
  color: #fff;
}

.container_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact_card {
  background-color: #90b33d;
  width: 100%;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}
.contact_card:hover {
  background-color: #90b33d;
}
.contact_card p {
  margin-bottom: 0 !important;
}
.contact_card p a {
  color: #fff;
}
.contact_card .card_img {
  padding-bottom: 15px;
}
.contact_card .card_img i {
  font-size: 30px;
}

.client_title {
  text-align: center;
  font-size: 25px;
  color: #000;
  font-weight: bold;
}

.clients_bg .clinet_img {
  border: 1px solid rgba(97, 93, 93, 0.6862745098);
  padding: 10px;
  margin-top: 20px;
  text-align: center;
  background-color: rgba(144, 238, 144, 0.6117647059);
}
.clients_bg .clinet_img img {
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}

.items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #fff;
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  border: 1px solid #90b33d;
  margin: 15px 0;
}
.items:before {
  content: "";
  background: url("../images/icons/icon2.png") center;
  background-repeat: no-repeat;
  background-size: 60px 60px;
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #8EB33E;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  left: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
}
.items .artist_img i {
  font-size: 25px;
}
.items h5 {
  margin-bottom: 0 !important;
}

.guiter_img {
  background: url("../images/guiter.png") center no-repeat;
  width: 100%;
  background-size: contain;
  height: 100vh;
}

.card-image {
  height: 200px;
}
.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */