html,
body {
  padding: 0;
  margin: 0;
  font-family: "Hind Madurai", sans-serif;
  background: url(../images/about-us-texture.png);
  width: 100%;
  height: 100%;
  background-position: center !important;
  background-size: cover !important;
  color: #656565;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  font-size: 20px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans", sans-serif;
}

figcaption {
  font-size: 12px;
  font-weight: 300;
  margin: 5px 0;
}

.landing_content {
  width: 100%;
  height: 100vh;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
}
.landing_content.margin-top .text {
  top: 20px;
  transform: translate(-50%, 0);
}
.landing_content.margin-top .text .two_div {
  margin-top: 20px;
}
.landing_content::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.landing_content .text {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #656565;
  max-width: 100%;
}
.landing_content .text p {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.45;
  font-weight: 500;
}
.landing_content .text .two_div {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
.landing_content .text .two_div a {
  text-transform: none;
  margin-right: 40px;
}
.landing_content .text a {
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
.landing_content .text a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.landing_content .text a svg {
  width: 125px;
  margin-top: 20px;
}
.landing_content .js-loader-svg-group {
  -webkit-animation: rotation 8s infinite linear;
          animation: rotation 8s infinite linear;
  transform-origin: center;
}

.heading_text {
  margin-bottom: 25px;
}
.heading_text h2 {
  font-family: "Rochester", cursive;
  font-size: 112px;
  font-style: italic;
  color: #f28224;
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
}
.heading_text h3 {
  font-size: 84px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1.2px;
  line-height: 1;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 500px) {
  .heading_text h2 {
    font-size: 56px;
    margin-bottom: 0px;
  }
  .heading_text h3 {
    font-size: 58px;
  }
}

header {
  position: absolute;
  width: 100%;
  z-index: 9;
}
header .mb_btn {
  position: relative;
  z-index: 4;
  cursor: pointer;
  display: none;
}
header .mb_btn.close span {
  background: #111111;
}
header .mb_btn.close span:first-child {
  transform: rotate(45deg);
}
header .mb_btn.close span:last-child {
  transform: rotate(-45deg) translate(5px, -10px);
}
header .mb_btn span {
  display: block;
  width: 35px;
  background: #fff;
  height: 1px;
  margin: 10px 0;
  margin-left: auto;
  transition: 0.5s;
}
header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav .logo img {
  width: 135px;
}
header .nav ul {
  display: flex;
}
header .nav ul li {
  margin: 0 30px;
}
header .nav ul li:last-child {
  margin-right: 0;
}
header .nav ul li a {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}
header .nav ul li a:hover {
  color: #f28224;
}
@media (max-width: 800px) {
  header .mb_btn {
    display: block;
  }
  header .nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 3;
    display: block;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    visibility: hidden;
    transition: 0.5s;
    color: #fff !important;
    background: url(../images/about-us-texture.png);
    background-position: center !important;
    background-size: cover !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header .nav ul li {
    display: block;
    margin: 15px 0 !important;
  }
  header .nav ul li a {
    color: #111111;
    text-align: center;
  }
  header .nav ul.show {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}

.banner .item {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center !important;
  background-size: cover !important;
}
.banner .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  z-index: 2;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform-origin: center;
  }
  to {
    -webkit-transform: rotate(359deg);
    transform-origin: center;
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform-origin: center;
  }
  to {
    -webkit-transform: rotate(359deg);
    transform-origin: center;
  }
}
.home_intro {
  padding: 60px 0;
}
.home_intro .img-wrapper {
  padding-right: 20px;
}
.home_intro .img-wrapper .img-flex {
  display: flex;
  justify-content: space-between;
}
.home_intro .img-wrapper .img-flex.top, .home_intro .img-wrapper .img-flex.bottom {
  justify-content: center;
}
.home_intro .img-wrapper figure {
  width: 33.33%;
  position: relative;
  text-align: center;
}
.home_intro .img-wrapper figure:nth-child(even)::before {
  display: none;
}
.home_intro .img-wrapper figure::before {
  content: "";
  background-image: url(../images/mandala.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  opacity: 0.5;
  width: 140%;
  height: 140%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: spin 55s infinite linear;
          animation: spin 55s infinite linear;
  z-index: 1;
}
.home_intro .img-wrapper img {
  border-radius: 50%;
  width: 100%;
  width: 211px;
  height: 211px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
@media (max-width: 500px) {
  .home_intro .img-wrapper img {
    width: 110px;
    height: 110px;
  }
}
.home_intro .text {
  padding-left: 60px;
}
@media (max-width: 500px) {
  .home_intro .text {
    padding-left: 0;
  }
}

.quote {
  width: 100%;
  height: 80vh;
  background-size: cover !important;
  background-position: center !important;
  margin: 60px 0;
  color: #fff;
  position: relative;
}
.quote::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.15);
  top: 0;
  left: 0;
}
.quote .heading_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 60%;
}
.quote .heading_text h3 {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}
.quote .heading_text h5 {
  font-size: 42px;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
  font-family: "Hind Madurai", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media (max-width: 500px) {
  .quote .heading_text {
    width: 95%;
  }
  .quote .heading_text h3 {
    font-size: 62px;
  }
}

.our_story {
  position: relative;
  padding: 60px 0;
}
.our_story .absolute_img {
  position: absolute;
  top: 30px;
  right: 0;
}
.our_story .absolute_img img {
  height: 100vh;
}
@media (max-width: 500px) {
  .our_story .absolute_img img {
    max-width: 100%;
  }
}
.our_story .img {
  position: relative;
  text-align: right;
  padding-right: 60px;
}
.our_story .img img {
  width: 100%;
  margin-right: auto;
}
.our_story .text {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.timeline {
  margin: 60px 0 0;
  position: relative;
}
.timeline .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0px 10px;
  display: flex;
}
.timeline .owl-dots .owl-dot {
  width: 60px;
  text-align: center;
  margin: 0 15px;
}
.timeline .pagi-btn::before {
  content: "";
  width: 100%;
  height: 5px;
  background: #fff;
  display: table;
  margin: 0px 0px 5px 0px;
}
.timeline .owl-dot.active .pagi-btn::before {
  background: #f28224;
}
.timeline .owl-dot.active .pagi-btn {
  color: #f28224;
}
.timeline .pagi-btn {
  position: relative;
  width: 100%;
  background: transparent !important;
  text-align: center;
  border: none;
  cursor: pointer;
  padding-top: 0px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
}
.timeline .heading_text {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  color: #fff;
}
@media (max-width: 500px) {
  .timeline .heading_text {
    width: 100%;
  }
}
.timeline .item {
  width: 100%;
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.timeline .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center !important;
  background-size: cover !important;
}
.timeline .item .bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: saturate(150%) blur(5px);
          backdrop-filter: saturate(150%) blur(5px);
}
@media (max-width: 500px) {
  .timeline .item {
    height: auto;
    padding-bottom: 100px;
  }
}
.timeline .content {
  position: relative;
  z-index: 4;
  max-width: 65%;
  margin: auto;
  background-color: #fff;
  margin-top: 300px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.timeline .content img {
  width: 100%;
  height: 438px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 10px;
}
.timeline .content .text {
  padding: 40px 40px 40px 0;
}
.timeline .content .date {
  color: #f28224;
  line-height: 1;
  margin-bottom: 15px;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 700;
}
.timeline .content h4 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 800;
}
@media (max-width: 500px) {
  .timeline .content {
    max-width: 95%;
  }
  .timeline .content .text {
    padding: 40px;
  }
}

footer {
  background: #111111;
  padding: 40px 0 0;
}
footer .footer_links {
  margin-bottom: 15px;
}
footer .footer_top {
  text-align: center;
}
footer .footer_top .footer_logo img {
  width: 180px;
}
footer .footer_top .social_link a {
  margin: 0 8px;
  display: inline-flex;
  color: #a5a5a5;
  border: 1px solid #a5a5a5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
footer .footer_top .social_link a:hover {
  color: #f28224;
  border: 1px solid #f28224;
}
footer .footer_middle {
  max-width: 1110px;
  padding: 30px 0;
  border-top: 1px solid #f28224;
  border-bottom: 1px solid #f28224;
  margin: 30px auto;
}
footer .footer_middle a {
  display: block;
  margin: 5px 0;
  color: #fff;
  font-size: 20px;
  max-width: 180px;
}
footer .footer_middle a:hover {
  color: #f28224;
}
@media (max-width: 500px) {
  footer .footer_middle .suscribe {
    margin-top: 50px;
  }
}
footer .footer_middle .suscribe p {
  color: #fff;
}
footer .footer_middle .suscribe .form_newsletter {
  position: relative;
}
footer .footer_middle .suscribe .form_newsletter input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 40px;
}
footer .footer_middle .suscribe .form_newsletter button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #f28224;
  border-radius: 50%;
  border: 0;
  color: #fff;
}
footer .footer_bottom {
  padding-bottom: 10px;
}
footer .footer_bottom p {
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.inner_banner {
  width: 100%;
  height: 60vh;
  position: relative;
  background-position: center !important;
  background-size: cover !important;
}
.inner_banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.inner_banner .sasa-breadcrumb {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 2;
  text-align: center;
  transform: translateX(-50%);
}
.inner_banner .sasa-breadcrumb h1 {
  font-size: 62px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
}
.inner_banner .sasa-breadcrumb ul {
  display: flex;
  justify-content: center;
}
.inner_banner .sasa-breadcrumb ul li:last-child span {
  display: none;
}
.inner_banner .sasa-breadcrumb ul a {
  color: #fff;
  text-transform: uppercase;
  margin: 0 10px;
}
.inner_banner .sasa-breadcrumb ul a i {
  color: #f28224;
}
.inner_banner .sasa-breadcrumb ul span {
  margin: 0 5px;
  display: inline-block;
  color: #fff;
}

.about_us {
  padding: 80px 0;
}
.about_us .heading_text {
  text-align: center;
  margin: 0 auto 50px;
  position: relative;
  width: 820px;
  max-width: 100%;
}
.about_us .heading_text .heading_img {
  position: absolute;
  left: 0;
  top: -50px;
  width: 170px;
}
@media (max-width: 500px) {
  .about_us .heading_text .heading_img {
    width: 80px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.about_us .heading_text .heading_img.right {
  left: auto;
  right: 0;
}
.about_us .img img {
  width: 95%;
  height: 675px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  .about_us .img img {
    width: 100%;
    margin-bottom: 40px;
  }
}
.about_us .text h4 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
}

.about_gallery {
  background: #f2eee0;
}
.about_gallery .text {
  padding-left: 100px;
  padding-right: 10px;
  position: relative;
  z-index: 3;
}
.about_gallery .text .bg_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.about_gallery .text .bg_img img {
  width: 500px;
  opacity: 0.4;
}
@media (max-width: 500px) {
  .about_gallery .text {
    padding-left: 0;
  }
}
.about_gallery .text h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.about_gallery .img_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.about_gallery .img_grid img {
  width: 33.33%;
  height: 282px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 5px;
}
@media (max-width: 500px) {
  .about_gallery .img_grid img {
    height: 154px;
  }
}

.event_card {
  position: relative;
  padding: 60px 0;
}
.event_card:nth-child(even) .row {
  flex-direction: row-reverse;
}
.event_card:nth-child(even) .event_bg_img {
  right: auto;
  left: 0;
}
.event_card:nth-child(even) .event_img_slider {
  right: 0;
  left: auto;
}
.event_card:nth-child(even) .event_img_slider .item img {
  margin-left: auto;
}
.event_card .event_bg_img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}
.event_card .event_bg_img img {
  height: 100%;
}
@media (max-width: 500px) {
  .event_card .event_bg_img {
    height: auto;
    bottom: 0;
    top: auto;
  }
  .event_card .event_bg_img img {
    width: 100%;
    height: auto;
  }
}
.event_card .text {
  position: relative;
  z-index: 2;
}
.event_card .event_img_slider {
  position: absolute;
  width: 50vw;
  left: 0;
}
.event_card .event_img_slider .item {
  width: 100%;
  overflow: hidden;
}
.event_card .event_img_slider .item img {
  width: 90%;
  height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  .event_card .event_img_slider {
    position: relative;
    width: 100%;
  }
  .event_card .event_img_slider .item img {
    width: 100%;
    height: 450px;
    margin-bottom: 40px;
  }
}

.gallery_links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.gallery_links button {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  border: 0;
  outline: none !important;
  margin: 0 15px;
  color: #656565;
}
.gallery_links button.active {
  color: #f28224;
}
@media (max-width: 500px) {
  .gallery_links {
    display: inline;
    max-width: 30px 0;
  }
}

.gallery_product {
  margin: 15px 0;
}
.gallery_product img {
  width: 100%;
  height: 312px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact_wrap {
  padding-right: 100px;
}
@media (max-width: 500px) {
  .contact_wrap {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.contact_wrap h5 {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 800;
}
.contact_wrap .social {
  margin-top: 40px;
}
.contact_wrap .social a {
  font-size: 18px;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  border: 1px solid #f28224;
  color: #f28224;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact_wrap ul li {
  margin: 25px 0;
}
.contact_wrap ul a {
  font-size: 20px;
  display: flex;
  align-items: center;
}
.contact_wrap ul a span {
  display: inline-flex;
  background: #f28224;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  position: relative;
}
.contact_wrap ul a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  border-radius: 50%;
  content: "";
  border: 1px solid #f28224;
}

.contact_form {
  background: #faf7f3;
  padding: 40px;
  border-radius: 10px;
}
.contact_form input,
.contact_form textarea {
  padding: 10px;
  width: 100%;
  margin: 16px 0;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #cdcdcd;
}
.contact_form textarea {
  height: 184px;
}
.contact_form button {
  background: #f28224;
  border: 1px solid #f28224;
  color: #fff;
  display: inline-flex;
  text-transform: uppercase;
  width: 150px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  margin-top: 20px;
}

.map_frame {
  background: #fff;
  padding: 10px;
}
.map_frame iframe {
  width: 100%;
  height: 550px;
}

.career {
  padding: 80px 0;
}
.career .heading_text {
  text-align: center;
}
.career .hiring_text {
  text-align: center;
  max-width: 100%;
  width: 760px;
  margin: auto;
}
.career .hiring_text p a {
  color: #f28224;
  font-weight: 600;
}

.hiring_post {
  margin-top: 50px;
}
.hiring_post .accordion-button {
  background: transparent !important;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 25px 20px;
  color: #656565;
  outline: none !important;
  box-shadow: none !important;
}
.hiring_post .accordion-item {
  background: #faf7f3;
}
.hiring_post .hiring_description {
  font-size: 20px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 15px;
}
.hiring_post .hiring_description h2 {
  font-weight: 800;
  margin-bottom: 20px;
}
.hiring_post .hiring_description h5 {
  margin-top: 30px;
  font-weight: 600;
}
.hiring_post .hiring_description ul {
  margin-bottom: 40px;
}
.hiring_post .hiring_description ul li {
  margin-bottom: 15px;
  list-style: inside;
}
.hiring_post .hiring_description strong {
  font-weight: 700;
}
.hiring_post .hiring_description a {
  color: #f28224;
  text-decoration: underline;
}

.blog_post {
  padding: 80px 0;
}
.blog_post .blog_card {
  margin: 15px 0;
}
.blog_post .blog_card a:hover h4 {
  color: #f28224;
}
.blog_post .blog_card img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_post .blog_card h4 {
  font-size: 24px;
  font-weight: 800;
  margin: 20px 0;
  max-width: 90%;
}
.blog_post .blog_card p i {
  margin-right: 5px;
}

.blog_detail {
  padding: 80px 0;
  width: 880px;
  max-width: 100%;
  margin: auto;
}
.blog_detail .blog_head h3 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 800;
}
.blog_detail p i {
  margin-right: 5px;
}
.blog_detail .text {
  margin-top: 25px;
}/*# sourceMappingURL=style.css.map */