@charset "UTF-8";
/*
Theme Name: Shrachi New Theme
Author: Dharmah
Author URI: https://wordpress.org/
Description: Custom wordpress theme
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Purti
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/


* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

::selection {
    color: #E2ECF8;
    background: #14a651;
}

* {
    transition: 0.4s ease;
}

figure {
    margin: 0;
}

p {
    margin-bottom: 0;
    font-family: var(--inter-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
}

.no-margin {
    margin: 0 !important;
}

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

.z-ind {
    z-index: 100;
}


ul {
    margin-bottom: 0;
    padding-inline-start: 0;
    list-style-type: none;
}

.max-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: #291F79;
    border-radius: 10px;
}

.comm-padd {
    padding: 50px 0;
}

.sticky-menu {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    animation-name: fadeInDown;
    animation-direction: normal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    background: #ffffff;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.click-to-top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    background: #F68114;
    width: 50px;
    height: 50px;
    color: #ffffff;
    border-radius: 100%;
    cursor: pointer;
    text-align: center;
    font-size: 1.8em;
    transform: scale(0)rotate(-90deg);
    z-index: 9990;
}

.click-to-top:hover {
    opacity: 0.8;
}


.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.ml-4 {
    margin-left: 40px;
}

.ml-5 {
    margin-left: 50px;
}

.pl-1 {
    padding-left: 10px;
}

.pl-2 {
    padding-left: 20px;
}

.pl-3 {
    padding-left: 30px;
}

.pl-4 {
    padding-left: 40px;
}

.pl-5 {
    padding-left: 50px;
}

*:root {
    --Inter: "Inter", sans-serif;
    --Mulish: "Mulish", sans-serif;
    --Kalnia: "Kalnia", serif;

    --theme-color-green: #14a651;
    --theme-color-blue: #28a9e0;
}

body {
    font-family: var(--Inter);
}


.bg-menu-section {
    background-color: #fff;
    padding: 15px 5px;
    border-radius: 0px 0px 60px 0px;
    /* box-shadow: 5px 5px 5px 5px #000; */
    position: absolute;
    z-index: 99;
    width: 100%;
}

.main-menu-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 640px;
    max-width: 100%;
}

.menu-ul {
    list-style: none;
    margin: 0;
}

.menu-ul li {
    display: inline-block;
    padding: 5px 10px;
}

.menu-ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.btn-enq {
    background-color: #fff;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
    height: 50px;
    width: 150px;
}

.btn-enq::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    transition: top 0.3s;
    z-index: 0;
}

.btn-enq:hover::before {
    top: 0;
}

.btn-enq>span {
    z-index: 999999;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    bottom: 50%;
    color: #000000;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-enq:hover>span {
    color: #ffffff;
}

.mob-none {
    display: block;
}

.dsk-none {
    display: none;
}

.mobile-header .main-menu-box-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 100%;
    margin: auto;
    padding: 20px;
}

.banner-sec img
{
    width: 100%;
    height: 100vh;
}

#banner-carousel .owl-dots
{
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#banner-carousel .owl-dots .owl-dot
{
    display: block;
    width: 100%;
    margin: 0 1px;
    position: relative;
}

#banner-carousel .counter
{
    font-family: var(--Kalnia);
    font-size: 75px;
    line-height: 75px;
    font-weight: 700;
    color: #303030;
    position: absolute;
    top:-40px;
    opacity: 0.7;
    left: 0;
    display: none;
}

#banner-carousel .active .counter{
  opacity: 1;
  top:-60px;
}

#banner-carousel .owl-dots .owl-dot button
{
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    font-family: var(--Mulish);
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    padding: 10px 25px;
    border: none;
    position: absolute;
    top:-40px;
}

#banner-carousel .owl-dots .active
{
    background: rgba(0, 0, 0, 1);
    width: 3700px;
}

#banner-carousel .owl-dots .active button
{
    font-family: var(--Kalnia);
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    padding: 10px 25px;
    border-radius: 0 50px 0 0;
    background: rgba(0, 0, 0, 1);
    position: absolute;
    top:-150px;
    height: 150px;
    left: 0;
    text-align: left;
}

#banner-carousel .owl-dots .owl-dot button small
{
    display: none;
    font-family: var(--Mulish);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    text-align: left;
}

#banner-carousel .owl-dots .active button small{
    display: block;
    margin-bottom: 15px;
}

#banner-carousel .owl-dots .owl-dot button a
{
    display: none;
    font-family: var(--Mulish);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    text-align: left;
}

#banner-carousel .owl-dots .active button a{
    display: block;
    margin-top: 5px;
}

#banner-carousel .owl-prev
{ 
    width:50px;
    height:50px;
    font-size:2.5em!important;
    color:#ffffff!important;
    border-radius: 100%;
    line-height: 0;
    position: absolute;
    bottom: 50px;
    left: 10px;
}

#banner-carousel .owl-next
{ 
    width:50px;
    height:50px;
    font-size:2.5em!important;
    color:#ffffff!important;
    border-radius: 100%;
    line-height: 0;
    position: absolute;
    bottom: 50px;
    right: 10px;
}

.about-sec .commercial
{
  position: absolute;
  top:50px;
  right: 0px;
  background: #000;
  font-family: var(--Mulish);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  text-align: left;
  padding: 8px 25px 8px 5px;
  text-transform: uppercase;
}

.line{
  width:100px;
  height: 1px;
  background: #000;
  margin: 30px 0;
}

.comm-header-small
{
  font-family: var(--mulish-font);
  font-size: 20px;
  font-weight: 500;
  color: #010101;
}

.comm-header-large
{
  font-family: var(--Kalnia);
  font-size: 35px;
  font-weight: 500;
  color: #010101;
}

.about-sec .counter-block{display: flex;}

.counter-block .counter-block-item span
{
  font-family: var(--Kalnia);
  font-size: 50px;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(40,169,224,1) 0%, rgba(20,166,81,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 20px;
}

.counter-block .counter-block-item p
{
  font-family: var(--Kalnia);
  font-size: 25px;
  font-weight: 500;
  color: #010101;
} 

.counter-block .counter-block-item small
{
  font-family: var(--Mulish);
  font-size: 15px;
  font-weight: 500;
  color: #010101;
  text-transform: uppercase;
} 