/*
Theme Name: Elim BLog
Theme URI: https://elim5.com/
Author: Bryan Carballo Soza 
Author URI: https://www.linkedin.com/in/bryan-antonio-carballo-soza-a04733157/
Description: Elim5 Blog
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: https://elim5.com/
*/

/* ========================= */
/* ========================= */
@import url("https://use.typekit.net/gyx3lkx.css");

@font-face {
    font-family: LeagueRegular;
    src: url(./assets/fonts/LeagueGothic-Regular.otf);
    font-weight: 500;
    font-style: normal
}

:root{
    --primary: #71bdf2;
    --orange: #fa921f;
    --rose: #EC709A;
    --lightblue: #96CCEF;
    --black: #4a4a4a;
    --darkred: #20060e;
	--RaisinBlack:#262626;
}

.league {
    font-family: league-gothic, sans-serif;
    font-style: normal;
    font-weight: 400;
}


body{
	font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-style: normal;
	color:var(--black);
	/*font-size:16px;*/
}

.proxima-nova {
    font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.proxima-nova-medium {
    font-family: "proxima-nova", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.proxima-nova-light {
    font-family: "proxima-nova", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.proxima-nova-semibold {
   font-family: "proxima-nova", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.proxima-nova-bold {
   font-family: "proxima-nova", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.proxima-nova-black {
   font-family: "proxima-nova", sans-serif;
	font-weight: 900;
	font-style: normal;
}
.proxima-nova-thin {
    font-family: "proxima-nova", sans-serif;
	font-weight: 100;
	font-style: normal;
}

.proxima-nova-condensed {
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-weight: 900;
    font-style: normal;
}

.title-1 {
    font-size: 7rem;
}

.sub-title-1{
    font-size: 1.2rem;
}

.title-2 {
    font-size: 9.4em
}

.title-3 {
    font-size: 3em
}

.title-4 {
    font-size: 2.4vw
}

.text-button-1 {
    font-size: 2rem
}

.bg-primary {
    background-color: #71bdf2!important
}

.bg-orange {
    background-color: #fa921f!important
}

.bg-orange:hover {
    background-color: #e2831a!important
}

.bg-rose {
    background-color: var(--rose)!important
}

.bg-lightblue {
    background-color: #85cbf7!important
}

.bg-blue {
    background-color: #5ca2d5!important
}

.bg-black {
    background-color: #2d2d2d!important
}

.bg-darkred{
    background-color: var(--darkred);
}

.bg-onyx {
    background-color: #383838 !important;
}

.bg-risin-black {
    background-color: var(--RaisinBlack) !important;
}

.bg-outline-lightblue {
    background-image: url(../images/lightblue-bg-pattern.jpg);
    /* background-image: url(../images/lightblue-bg-pattern.webp); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 102% 102%
}

.primary {
    color: #71bdf2!important
}

.orange {
    color: #fa921f!important
}

.rose {
    color: var(--rose)!important
}

.lightblue {
    color: #85cbf7!important
}
.body-no-scroll {
  position: fixed;
  width: 100%;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.p-relative{
	position:relative;
}
/*Colors*/
.bg-lightblue {
    background-color: #85cbf7 !important;
}

.bg-pattern{
    background-image: url(./assets/images/png/Elim5-pattern.png);
}
/*Menu*/
.overlay-menu.open {
    width: 100%;
    height: 100%;
    visibility: visible;
    transition: visibility 0s, width .5s, height .5s;
}

.overlay-menu {
    z-index: 99;
    position: fixed;
    width: 0%;
    height: 0%;
    top: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    transition: visibility .5s linear .15s, width .5s ease .15s, height .5s ease .15s;
}

.overlay-menu.open .menu-container {
    opacity: 1;
    transition: opacity .5s ease .5s;
}

.menu-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    justify-content: center;
    opacity: 0;
    transition: opacity .15s;
}

.menu-list {
    font-size: 5vh;
	padding-left:0;
}

.menu-list li {
    font-size: 1.3em;
    line-height: 1.5;
}

.menu-list li a {
    text-decoration: none;
	letter-spacing: 0.5px;
}

.sub-menu-container {
    /*background-color: #2d2d2d;*/
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 10%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: visibility 0s linear .5s, opacity .5s linear;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub-menu {
    font-size: 5vh;
}

.sub-menu-container.active {
    opacity: 1;
    visibility: visible;
    transition: opacity .6s;
}

/*Navbar*/
#navbar {
    position: absolute;
    width: 100%;
    z-index: 99;
    
}

.nav-container {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100%;
    max-width: 150px;
}


.logo a img{
    max-width: 150px;
}

.menu__button {
    display: block;
    position: relative;
    z-index: 110;
    height: 60px;
    width: 60px;
    padding: 13px;
    background-color: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: background-color .4s, -webkit-transform .4s ease;
    transition: transform .4s ease, background-color .4s;
    transition: transform .4s ease, background-color .4s, -webkit-transform .4s ease;
}

.menu__icon {
    position: absolute;
    width: 33px;
    height: 24px;
    top: 50%;
    left: 50%;
    margin-left: -17px;
    margin-top: -12px
}

.menu__line {
    position: absolute;
    left: 0;
    z-index: 86;
    background-color: #222;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    pointer-events: none
}

.menu__line.menu-rose {
    background-color: var(--rose);
}

.menu__line-1 {
    top: 0;
    transition: top .2s ease-in-out .3s, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, top .2s ease-in-out .3s;
    transition: transform .3s ease-in-out, top .2s ease-in-out .3s, -webkit-transform .3s ease-in-out
}

.menu__line-1:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 3px;
    background-color: #222;
    border-radius: 3px;
    transition: -webkit-transform .2s ease-in-out .2s;
    transition: transform .2s ease-in-out .2s;
    transition: transform .2s ease-in-out .2s, -webkit-transform .2s ease-in-out .2s
}

.menu__line-1.menu-rose:before {
    background-color: var(--rose)
}

.menu__line-2 {
    top: 0;
    bottom: 0;
    margin: auto;
    transition: opacity 0s ease-in-out .2s
}

.menu__line-3 {
    bottom: 0;
    transition: opacity 0s ease-in-out .2s, bottom .2s ease-in-out .2s
}

.menu__button.open {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.menu__button:hover {
    background-color: var(--rose);
    color: #fff;
    box-shadow: none
}

.menu__button:focus {
    box-shadow: none
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
	border-color:var(--rose);
}
.menu__button.open .menu__line, .menu__button.open .menu__line-1:before, .menu__button:hover .menu__line, .menu__button:hover .menu__line-1:before {
    background-color: #fff
}

.menu__button.open .menu__line-1 {
    top: 10.5px;
    transition: top .2s ease-in-out, -webkit-transform .2s linear .2s;
    transition: top .2s ease-in-out, transform .2s linear .2s;
    transition: top .2s ease-in-out, transform .2s linear .2s, -webkit-transform .2s linear .2s
}

.menu__button.open .menu__line-1:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: -webkit-transform .2s ease-in-out .1s;
    transition: transform .2s ease-in-out .1s;
    transition: transform .2s ease-in-out .1s, -webkit-transform .2s ease-in-out .1s
}

.menu__button.open .menu__line-2 {
    opacity: 0;
    transition: opacity 0s ease-in-out .2s
}

.menu__button.open .menu__line-3 {
    bottom: 10.5px;
    opacity: 0;
    transition: bottom .2s ease-in-out, opacity 0s ease-in-out .2s
}
.menu-list li a:not(.menu-title):hover {
    background-image: url(./assets/images/gif/wave-gif-repet.gif);
    background-repeat: repeat-x;
    background-size: 35px;
    background-position-y: 100%
}
.sub-menu-item:hover .sub-description {
    opacity: 1;
    max-height: 100px;
}
.sub-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  font-size: 1.7rem;
}
/*HeroBanner*/
.hero-banner{
    width: 100%;
}

.arrow-down span {
    position: absolute;
    -webkit-animation: MoveArrowDown 2.5s infinite;
    animation: MoveArrowDown 2.5s infinite;
	color: #EC709A;
	left: 0;
    right: 0;
    bottom: 5%;
}

@-webkit-keyframes MoveArrowDown {
    0%, 100%, 40% {
        transform: translateY(-15px)
    }
    20% {
        transform: translateY(0)
    }
}

@keyframes MoveArrowDown {
    0%, 100%, 40% {
        transform: translateY(-15px)
    }
    20% {
        transform: translateY(0)
    }
}


/*Recent Posts*/
.category-section {
    margin-bottom: 50px;
}
.category-section h2 {
    font-size: 24px;
	text-align:center;
}
.category-section-header{
	position:relative;
	padding: 1rem;
    border-bottom: 1px solid #4a4a4a;
}
.view-more {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 20px;
    transform: translateY(-50%);
	font-size:16px;
	width:148px;
}

.view-more svg {
    width: .875rem;
    height: .875rem;
    margin-inline-start: .5rem;
}

.view-more:hover{
    color: var(--rose);
}
.main-posts-grid{
	padding-top:1rem;
}

.recent-posts{
    padding-top: 100px;
}
.recent-posts-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 3rem;
	padding-top:100px;'
}

.main-posts-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 3rem;
}

/*POST GRID*/

.post-grid {
    position: relative;
    background-color: #fff;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 1);
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    flex: 1 1 0%;
}

.post-grid .post-thumbnail img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    max-width: 100%;
    height: auto;
}

.post-grid .post-content {
    text-align: left;
    padding: 3rem 2rem;
    width: 100%;
    display: flex;
	flex-direction:column;
    justify-content: center;
	align-items:center;
}

.post-grid .post-date{
	font-size:20px;
	margin-bottom:.75rem;
}

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

.post-grid .post-title{
    letter-spacing: -.025em;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.post-grid .post-excerpt{
    text-align: left;
    margin-bottom: 3.5rem;
	font-size:20px;
}

.post-grid .post-read-more {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 3rem;
    width: 220px;
    font-size: 16px;
    line-height: 1.5rem;
    text-align: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    padding-right: .75rem;
    background-color: transparent;
    border-radius: .5rem;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    color: var(--rose);
}

.arrow {
  cursor: pointer;
  display: inline-block;
  height: 12px;
  margin-left: 0.5em;
  position: relative;
  transition: width 0.2s ease;
  vertical-align: middle;
  width: 15px;
}

.arrow::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
}

.arrow::before {
  border-bottom: 2px solid currentColor;
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

a:hover .arrow {
  width: 20px;
}

.post-categories {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
	margin-bottom: .75rem;
	justify-content:center;
    flex-wrap: wrap; /* Permite que las etiquetas se ajusten en varias líneas */
}

.category-tag {
	font-size:16px;
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: #4a4a4a; 
    color: #ffffff; 
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-tag:hover {
    background-color: #2D2D2D; /* Color de fondo al pasar el mouse */
    color: #ffffff; /* Asegura que el texto siga siendo legible */
}

/*POST LIST*/
.post-list {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    width: 100%;
    height: 100%;
    flex: 1 1 0%;
	color:#707070;
}
.post-list .post-item{
	padding: 2.5rem;
	border-bottom:1px solid #8E7E81;
}
.post-list .post-title{
	text-transform:uppercase;
	font-size:30px;
}

.post-list .post-excerpt{
	max-width:50%;
}

/*SINGLE POST*/
.container.single-post{
	padding-top:150px;	
}
.single-post .post-title{
	font-size: 32px;
}

.single-post .post-date{
	font-size: 20px;
}

.single-post .post-content{
	font-size: 22px;
	font-weight:400;
}

.post-content h3{
	font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 600;
	font-size: 26px;
}

.single-post h4{
	font-family: "proxima-nova", sans-serif;
	font-style: normal;
	font-size: 22px;
	font-weight: 600;
}
.post-content .wp-block-image{
	padding-top:30px;	
}

.content-heading__author-bio-and-meta-info{
	display:flex;
	justify-content:center;
}

.content-heading__author-bio {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.content-heading__author-bio .avatar {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin: 0px 16px 0px 0px;
}

.content-heading__author-name-publish-date-and-read-time {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	font-size:16px;
    height: 100%;
}

.content-heading__meta-info {
    display: flex;
    flex-direction: row;
}

.content-heading__separator {
    color: #707070 !important;
}

#st-1 .st-btn{
	background-color: transparent!important;
    border-radius: 50%!important;
    border: 1px solid #4a4a4a!important;
    color: #4a4a4a!important;
}
#st-1 .st-btn img {
    filter: invert(75%) sepia(0%) saturate(2637%) hue-rotate(317deg) brightness(99%) contrast(83%)!important;
}
li {
    list-style:inherit!important;
}
.wp-block-list {
    padding-inline-start: 40px;
	list-style:inherit!important;
    list-style-image: url(./assets/images/svg/Elim5_Bullet_v2.svg)!important;
}
.wp-block-table thead {
    border-bottom: 3px solid var(--rose);
}
.wp-block-table {
    overflow: visible;
}
.wp-block-table .has-fixed-layout {
    border-collapse: collapse;
    border-radius: 15px;
    border-style: hidden;
    box-shadow: 0 0 0 1px #ced4da;
}
.wp-block-table td, .wp-block-table th {
    border: 1px solid #ced4da;
    padding: .5em;
}
.wp-block-group.is-layout-grid .wp-block-image img {
    border-radius: 8px;
}
.wp-block-group.is-layout-grid .wp-block-image .wp-element-caption {
    text-align:center;
	color:var(--rose)
}
/*Pagination*/
.pagination{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 70px;
	padding-bottom: 70px;
	
}

.page-numbers{
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: var(--black);
    border-radius: 5px;
    font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size:16px;
}

.page-numbers svg{
    width: 1rem;
    height: 1rem;
}

.page-numbers:hover{
    background-color: var(--lightblue);
    color: white;
    fill:white;
}

.current{
    background-color: var(--lightblue);
    color: white;
}

.next:hover{
    background-color: var(--lightblue);
    color: white;
}

.nav-next, .nav-previous{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--rose);
    border-radius: 5px;
}

.nav-next svg, .nav-previous svg{
    width: 1rem;
    height: 1rem;
    fill: var(--rose);
}

.nav-next svg{
    margin-left: 10px;
}

.nav-previous svg{
    margin-right: 10px;
}

.nav-next a, .nav-previous a{
    display: flex;
    justify-content: center;
    align-items: center;
	font-size:16px;
}

/*News Letters*/
.newsletter {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.suscribe-btn{
    color: white;
    font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-style: normal;
    border: 1px solid var(--rose);
	border-radius:0;
}


.suscribe-btn:hover{
    color: var(--rose);
    background-color: white!important;
    border: 1px solid var(--rose);
}

.newsletter-button:hover {
    background-color: #4fd0f0;
}

.newsletter-title {
    font-size: 36px;
    color: white;
    font-weight: 400!important;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-input {
    width: 500px;
    padding: 10px;
    border: 2px solid white;
    border-radius: 0px;
    font-size: 1rem;
    color: #555;
}

.newsletter-button {
    background-color: #82e9ff;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

/*Footer*/
footer{
    background-color: white;
    text-align: center;
}

.footer-container{
    width: 100%;
    padding: 1rem;
    margin: auto;
	font-size:20px;
}

/* Comments Style */
.comment-respond {
    padding: 20px;
    border-radius: 8px;
    max-width: 650px;
    margin: auto;
	margin-top:3rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.comment-heading {
    display: flex;
    align-items: center;
}

.comment-heading .avatar {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin: 0px 16px 0px 0px;
}

.comment-heading .comment-metadata {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
	font-size:16px;
}
.comment-content{
	font-size:16px;
}
.comment-text{
	margin-top:min(1.5rem, 2vw);
	margin-bottom:min(1.5rem, 2vw);
}

.comment-list .children{
	padding-left: 2rem;
}

.comments-title{
	font-size: 35px;
}

.comments-area{
	padding-bottom:70px;
}

.comment-reply-title{
	font-family: "proxima-nova", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:30px;
}

.comment-reply-title small{
	float: right;
}

.comment-reply-title small a{
	color: var(--rose);
    font-size: 16px;
}

.logged-in-as, .comment-notes{
	margin: 1em 0;	
	font-size:16px;
}
.comment-form-group{
	display:flex;
	gap:15px;
}
.comment-form-group p{
	width:50%;
}
.comment-form-group label,.comment-form-group label, .comment-form-url label, .comment-form-comment label{
	display:none;
}
.comment-form-group p input, .comment-form-url input, .comment-form-comment textarea{
    border: 0;
    border: 1px solid #D7D7DB;
    width: 100%;
    background: none;
	font-family: inherit;
    font-size: 1em;
    padding: 20px 20px;
    outline: none;
    font-size: 16px;
    font-family: 'proxima-nova';
}

.comment-form-cookies-consent{
	padding-bottom:1rem;
	display: flex;
    justify-content: flex-start;
    align-items: center;
}
.comment-form-cookies-consent label{
	padding-left:10px;
}
.form-submit button{
	background-color: transparent;
	border-style:solid;
    border-radius: .33rem;
    border-color: var(--rose);
    border-width: 1px;
    color: var(--rose);
    font-family: inherit;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
    line-height: inherit;
    padding-top: 0.6rem;
    padding-right: 1rem;
    padding-bottom: 0.6rem;
    padding-left: 1rem;
	margin-top: 1rem;
    text-decoration: none;
	text-transform: uppercase;
}

.bounce-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    /* border-radius: 0;
    border: none; */
    /* border-bottom: 3px solid #ec709a; */
    border: 3px solid var(--primary-color);
    border-radius: .33rem;
    box-shadow: none;
	
}

.bounce-to-top:hover{
	color:#ffffff;
	border-color: white;
}

.bounce-to-top:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}

.bounce-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--rose);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 0.5rem;
    color: var(--primary-color) !important;

}


/*NEWSLETTER WIDGET*/
.newletter-widget{
	display: block;
    border: none;
    position: fixed;
    inset: auto 9px 35px auto;
    width: 332px;
    height: 94px;
    opacity: 1;
    color-scheme: none;
    background: none transparent !important;
    margin: 0px;
    max-height: 100%;
    max-width: 100vw;
    transform: translateY(0px);
    transition: none !important;
    visibility: visible;
    z-index: 999999999 !important;
    border-radius: 47px 30px 47px 47px;
}
.widget-label{
	position: absolute;
    height: 42px;
    bottom: 61px;
    z-index: 0;
    white-space: nowrap;
    font-size: 17px;
    line-height: 17px;
	border: 0px;
    border-radius: 16px;
	transition-property: opacity;
    padding: 10px 15px;
    box-shadow: rgba(0, 18, 46, 0.24) 0px 6px 32px 0px;
    background: rgb(255, 255, 255);
	bottom:26px;
	right:91px;
}
.widget-button{
	position: absolute;
    width: 94px;
    height: 94px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    right: 0px;
}

.widget-button-body{
	width: 60px;
    height: 60px;
	border: 0px;
    border-radius: 28px;
    display: inherit;
    align-items: center;
    justify-content: center;
    pointer-events: initial;
    background-size: 130% 130%;
    transition: 0.2s ease-in-out;
    position: relative;
    color: rgb(255, 255, 255);
	background: var(--rose);
    box-shadow: rgba(2, 6, 16, 0.2) 0px 2px 16px;
}

.widget-button-body i {
    height: 26px;
    width: 26px;
    position: absolute;
    opacity: 0;
    transition: 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.widget-button-body i.active {
    opacity: 1;
}
.widget-button-body i.type1 svg {
    fill: currentcolor;
	width: 32px;
    height: 32px;
}
.widget-button-body i.type2 svg {
    width: 32px;
    height: 32px;
    fill: var(--rose);
    transform: scale(0);
}
.widget-button-body i.type1 svg, .widget-button-body i.type2 svg {
    transition: 0.2s ease-in-out;
}

.widget-button-body i.type1::after {
    content: "";
    position: absolute;
    width: 68px;
    height: 68px;
    border-radius: 32px;
    background: rgb(255, 255, 255);
    transition: 0.2s ease-in-out;
    transform: scale(0);
}
.widget-button-body:hover i.type1::after{
    transform: scale(1);
}
.widget-button-body:hover i.type2 svg{
    transform: scale(1);
}

.widget-button-body i.for-closed {
    transform: translateX(0px);
}
.widget-form{
    width: 372px;
    position: absolute;
    bottom: 26px;
    border-radius: 16px;
    pointer-events: auto;
	background:white;
    box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 22px 0px;
    overflow: hidden;
    z-index: 1;
    right: 48px;
    left: auto;
	opacity:0;
	display:none;
}

.widget-form .widget-header{
	position:relative;
	background: var(--rose);
	color:white;
    padding: 24px 35px 24px 35px;
}
.widget-header::after {
    content: "";
    position: absolute;
    width: calc(100% + 10px);
    bottom: -8px;
    left: -5px;
    border-image-source: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNzIgMTUiPgogIDxwYXRoIGQ9Ik0zNDkuOCAxLjRDMzM0LjUuNCAzMTguNSAwIDMwMiAwaC0yLjVjLTkuMSAwLTE4LjQuMS0yNy44LjQtMzQuNSAxLTY4LjMgMy0xMDIuMyA0LjctMTQgLjUtMjggMS4yLTQxLjUgMS42Qzg0IDcuNyA0MS42IDUuMyAwIDIuMnY4LjRjNDEuNiAzIDg0IDUuMyAxMjguMiA0LjEgMTMuNS0uNCAyNy41LTEuMSA0MS41LTEuNiAzMy45LTEuNyA2Ny44LTMuNiAxMDIuMy00LjcgOS40LS4zIDE4LjctLjQgMjcuOC0uNGgyLjVjMTYuNSAwIDMyLjQuNCA0Ny44IDEuNCA4LjQuMyAxNS42LjcgMjIgMS4yVjIuMmMtNi41LS41LTEzLjgtLjUtMjIuMy0uOHoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
    border-image-slice: 0 0 100%;
    border-image-width: 0 0 15px;
    border-image-repeat: stretch;
    border-width: 0px 0px 15px;
    border-bottom-style: solid;
    border-color: initial;
    border-top-style: initial;
    border-left-style: initial;
    border-right-style: initial;
}
.widget-form .widget-footer{
    padding: 35px 35px 35px 35px;
}
.widget-form .input-banner {
    border: 0;
    border: 1px solid #D7D7DB;
    width: 100%;
    background: none;
    font-family: inherit;
    font-size: 1em;
    padding: 20px 20px;
    outline: none;
    font-size: 16px;
    font-family: 'proxima-nova';
}
.h2-banner{
	font-size:25px;
	padding-bottom:1rem;
}
.widget-close{
	position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    font-size: 37px;
    color: white;
}

.animate__animated {
    -webkit-animation-duration: 0.5s;
    animation-duration:0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

/* Responsive */
/*@media (min-width:576px) {
    .fade-effect.fullpage-wrapper {
        width: 100%!important;
        transform: none!important
    }
    .fade-effect .fp-section {
        width: 100%!important;
        height: 100%!important;
        position: absolute;
        left: 0;
        top: 0;
        visibility: hidden;
        opacity: 0;
        z-index: 0;
        transition: all .7s ease-in-out
    }
    .fade-effect .fp-section.active {
        visibility: visible;
        opacity: 1;
        z-index: 1
    }
}*/
@media screen and (min-width: 600px) and (max-width: 960px) {
	.recent-posts-gird {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 4rem;
	}
}

/*XS*/
@media screen and (max-width: 576px){
	.recent-posts-grid {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 4rem;
	}
	
	.main-posts-grid{
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 3rem;
	}
  	
	.category-section h2 {
		text-align: left;
	}
	.hero-banner{
		padding-top:100px;
	}
	.xs\:text-center{
        text-align:center;
    }
	
	.xs\:py-5{
       padding: 3rem 0 3rem 0!important;
    }
	/*HOME*/
	.sub-description {
        font-size: 1.2rem;
    }
	.menu-list li {
		font-size: 30px;
	}
	.title-1 {
		font-size: 4rem;
	}
	.xs\:h-50{
       height:50%!important;
    }
	.xs\:justify-content-start{
       justify-content: start!important;
    }
	.arrow-down span {
		bottom: 0%;
	}
	/*MAIN POST*/
	.post-grid .post-date {
		font-size: 16px;
	}
	.post-grid .post-excerpt {
		font-size: 16px;
	}
	.category-tag {
    	font-size: 16px;
    }
	
	/*SINGLE POST*/
	.content-heading__author-bio-and-meta-info {
		flex-direction: column;
	}
	.content-heading__author-bio-and-meta-info {
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}
	.content-heading__author-bio {
		margin-right: 0;
	}
	.container.single-post{
		padding-top:100px;	
	}
	.single-post .post-title {
		font-size: 35px;
	}
	
	.single-post .post-content {
		font-size: 16px;
	}
	.single-post h4 {
    	font-size: 16px;
	}
	.post-content h3 {
		font-size: 20px;
	}
	.comment-form-group {
		flex-direction: column;
	}
	.comment-form-group p {
		width: 100%;
	}
	/*Banner*/
	.newsletter {
		flex-direction: column;
	}
	.newsletter-form {
		flex-direction: column;
	}
	.newsletter-input {
		width: 300px;
	}
}

/*SM*/
@media screen and (min-width: 576px) and (max-width: 768px){
	
	.sm\:text-center{
        text-align:center;
    }
	.recent-posts-grid {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 4rem;
	}
	.main-posts-grid{
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 3rem;
	}
	/*Banner*/
	.newsletter-input {
		width: 300px;
	}
	/*HOME*/
	.title-1 {
		font-size: 4.5rem;
	}
	.hero-banner{
		padding-top:100px;
		padding-bottom:100px;
	}
}


/*MD*/
@media screen and (min-width: 768px) and (max-width: 992px){
	.md\:text-center{
        text-align:center;
    }
	.sub-description {
        font-size: 1.7rem;
    }
	.menu-list li {
		font-size: 1em;
	}
	.recent-posts-grid {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 4rem;
	}
	
	.main-posts-grid{
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 3rem;
	}
	/*Banner*/
	.newsletter-input {
		width: 300px;
	}
	/*HOME*/
	.title-1 {
		font-size: 6.5rem;
	}
	.sub-title-1 {
		font-size: 1.5rem;
	}
	.hero-banner{
		padding-top:100px;
	}
}
@media screen and (min-width: 768px) and (max-width: 992px) and (orientation:landscape){
	.hero-banner {
        padding-top: 100px;
		padding-bottom: 100px;
    }
	#lottie{
		width:70%;
	}
}

/*LG*/
@media screen and (min-width: 992px) and (max-width: 1200px){
	.lg\:text-center{
        text-align:center;
    }
	.sub-description {
        font-size: 1.7rem;
    }
	.menu-list li {
		font-size: 1em;
	}
	.recent-posts-grid {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 4rem;
	}
	.main-posts-grid {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 4rem;
	}
	/*Banner*/
	.newsletter-input {
		width: 300px;
	}
	/*HOME*/
	.hero-banner {
        padding-top: 100px;
    }
	.title-1 {
		font-size: 8.5rem;
	}
	.sub-title-1 {
		font-size: 2rem;
	}
}
@media screen and (min-width: 992px) and (max-width: 1200px) and (orientation:landscape){
	.hero-banner {
        padding-top: 100px;
		padding-bottom: 100px;
    }
	.title-1 {
		font-size: 6rem;
	}
	.sub-title-1 {
		font-size: 1rem;
	}
	#lottie{
		width:60%;
	}
}
/*XL*/
@media screen and (min-width: 1200px){
	.lg\:text-left{
        text-align:left!important;
	}
}
