/*!
Theme Name: sakthi-pelican
Theme URI: http://underscores.me/
Author: Robert Singh, Chinna
Author URI: https://www.honeycombindia.net/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sakthi-pelican
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

sakthi-pelican is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

:root {
  --font-primary: "aller";
}

body {
  margin: 0;
  font-family: var(--font-primary) !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

img {
  width: 100%;
  height: auto;
}
.container {
  max-width: 95% !important;
}

.container-header {
  max-width: 95% !important;
  max-width: 1600px;
  margin: 0 auto;
}

/* =========================================
   Header
========================================= */

/* =========================================
   Header
========================================= */

.site-header {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.35s ease;
  background: transparent;
  padding: 0;
}

.site-header.header-hidden {
  transform: translateY(-120%);
}

.site-header.header-visible {
  transform: translateY(0);
}

/* Actual header box */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
}

.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: block;

  height: 40px;
  width: auto;
}

.site-logo img {
  display: block;

  height: 100%;
  width: auto;

  object-fit: contain;
}

/* =========================================
   Header Right
========================================= */

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* =========================================
   Navigation
========================================= */

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 0;
  margin: 0;

  list-style: none;
}

.nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;

  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;

  color: #484848;
  text-decoration: none;

  transition: color 0.3s ease;
}

.nav-item .nav-link:hover {
  color: #ef4129 !important;
}

.nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   Hamburger
========================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;
  background: transparent;

  cursor: pointer;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  background-color: #484848;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* =========================================
   Mobile
========================================= */

/* =========================================
   Mobile Navigation
========================================= */

@media (max-width: 991px) {
  .header-right {
    gap: 15px;
  }

  /* Hide desktop button */
  .header-btn {
    display: none;
  }

  /* Hamburger */
  .menu-toggle {
    display: flex;
  }

  /* Mobile Navigation */
  .main-navigation {
    position: absolute;

    top: calc(100% + 10px);
    left: 0;
    right: 0;

    padding: 20px;

    background-color: #ffffff;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    z-index: 100;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s ease;
  }

  /* Open state */
  .main-navigation.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  /* Mobile Menu Items */

  .main-navigation .nav-list {
    display: flex;

    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

  .main-navigation .nav-item {
    width: 100%;

    opacity: 0;
    transform: translateY(-10px);

    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  /* Animate menu items after menu opens */

  .main-navigation.is-open .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation */

  .main-navigation.is-open .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }

  .main-navigation.is-open .nav-item:nth-child(2) {
    transition-delay: 0.15s;
  }

  .main-navigation.is-open .nav-item:nth-child(3) {
    transition-delay: 0.2s;
  }

  .main-navigation.is-open .nav-item:nth-child(4) {
    transition-delay: 0.25s;
  }

  .main-navigation.is-open .nav-item:nth-child(5) {
    transition-delay: 0.3s;
  }

  /* Hamburger to Close Icon */

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* footer  */
footer {
  padding: 46px 0 50px 0;
  background-color: #000000;
  color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.site-logo-footer {
  height: 47px;
  width: auto;
  display: inline-block;
}

.address-text {
  padding-bottom: 20px;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.address {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
}

.footer-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
}

.footer-links {
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-links:hover {
  color: #ef4129 !important;
}

.copyright-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.social-icon {
  width: 24px;
  height: 24px;
}

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

.address-text-container .footer-text p {
  margin: 0;
  padding: 0;
}

.footer-text-2 p {
  margin-bottom: 10px;
}

.footer-text-3 p {
  margin-bottom: 6px;
}

.footer-text-2 p:last-child {
  margin-bottom: 0;
}
.copyright-row {
  border-top: 1px solid #ffffff40;
  padding-top: 30px;
  margin-top: 40px !important;
}

@media (max-width: 991px) {
  footer {
    padding: 40px 0;
  }
  .address-text-container {
    padding-bottom: 40px;
  }
  .copyright-row {
    margin-top: 20px !important;
    padding-top: 20px;
  }
}

/* gloabl styles for point text  */
.text-with-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid #b4bbbf;
  border-radius: 100px;
}

.text-with-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: #ef4129;
}

.text-with-dot p {
  margin: 0;
  font-family: "Aller", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
}

/* Global styles for icon text */
.text-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 10px;
  background-color: #504d501a;
  border-radius: 100px;
  width: fit-content !important;
}

.text-with-icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.text-with-icon .icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.text-with-icon p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}

/* =========================================
   Primary Button 1
========================================= */

.primary-btn-1 {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  text-decoration: none;
  width: fit-content !important;
}

/* Text Button */

.primary-btn-1__text {
  position: relative;
  /* overflow: hidden; */
  overflow: visible;
  isolation: isolate;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;
  padding: 0 15px;

  background-color: #ef4129;
  color: #ffffff;

  border-radius: 100px;

  font-size: 16px;
  font-weight: 700;
  line-height: 100%;

  transition: color 0.4s ease;
}

.primary-btn-1__text > span {
  position: relative;
  z-index: 1;
}

.primary-btn-1__text::before {
  content: "";

  position: absolute;
  inset: 0;

  background-color: #000;
  border-radius: 100px;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.4s ease;

  z-index: 0;
}

.primary-btn-1:hover .primary-btn-1__text::before {
  transform: scaleX(1);
}

.primary-btn-1:hover .primary-btn-1__text {
  color: #fff;
}

/* Arrow */

.primary-btn-1__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  background-color: #ef4129;
  color: #ffffff;
  border-radius: 100px;
}

.primary-btn-1__arrow svg {
  transition: transform 0.4s ease;
}

.primary-btn-1:hover .primary-btn-1__arrow svg {
  transform: rotate(45deg);
}
