/*
Theme Name: Immense Tailwind Theme
Theme URI: https://example.com/
Author: Immense
Author URI: https://example.com/
Description: Minimal WordPress theme with Tailwind CSS, GSAP, ScrollMagic and Swiper slider.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: immense-tailwind
*/

/* Custom base styles - you can extend Tailwind utility classes with your own here */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background-color:#f5f5f5 !important;
}
body.open{
	overflow-y:hidden
}
.bg-main{
	background-color:#cdd3dc
}

.wp-block-heading{
	font-size:25px;
	margin-top:20px;
	margin-bottom:7px
	
}
.mobile {
    /* align-items: center; */
    /* justify-items: center; */
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    border-radius: 100px;
}
#mobile-menu-toggle {
    /* display: block; */
    width: 50%;
    height: 50%;
    /* padding: 10px; */
    /* cursor: pointer; */
    margin: auto;
    position: relative;
}

#mobile-menu-toggle span {
    z-index: 999;
    display: block;
    position: absolute;
    height: 1px;
    margin: auto;
    width: 100%;
    background: rgb(0, 0, 0) !important;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.45s ease-in-out;
    transition: 0.45s ease-in-out;
}
#mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}

#mobile-menu-toggle span:nth-child(2) {
  top: 8px;
}

#mobile-menu-toggle span:nth-child(3) {
  top: 16px;
}
#mobile-menu-toggle.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
}

#mobile-menu-toggle.open span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
} /*MOBILE*/
header{
	background:#f5f5f5
}
.img-work-single{
	height:350px
}
.hero-global{
		min-height:auto
	}
@media screen and (min-width: 768px) {
	.mobile {
		display:none !important
	}
.img-work {
	height:320px;
	width:100%
}
	.wp-block-heading{
	font-size:35px;
	margin-top:20px;
	margin-bottom:7px
}
	.img-work-single{
	height:600px
}
	.hero-global{
		min-height:80vh
	}

}

.bg-red{
	background:#e52d34 !important;
}


.logo{
	width:200px
}

a {
  text-decoration: none;
}

.menu-item a {
  position: relative;
}

.menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.25s ease-out;
}

.menu-item a:hover::after,
.menu-item.current-menu-item a::after {
  width: 100%;
}