/*
Theme Name: Grupo APPS
Author: Daniel Enrique Gracia
Author URI: https://daniel-enrique.com/
Description: Template of Grupo APPS
Version: 1.2000001
License: GNU General Public License v2 or later
Text Domain: grupoapps.com
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@font-face {
    font-family: "OpenSans-Bold";
    src: url(https://grupoinfrabidalide.org/wp-content/themes/grupoapps/fonts/OpenSans-Bold.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body, html{
    height: 100%;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(58,58,58,.3);
    padding: 0px 7%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 1000;
    color: #626262;
    height: 128px;
    font-family: "Open Sans";
}
header .logo{
    font-weight: bolder;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
header .logo a{
    display: block;
    display: flex;
    align-items: center;
}
header .logo a img{
    width: 220px;
}
.lang-picker{
    position:  absolute;
    top: 5px;
    right: 130px;
}
.lang-picker span:not(.lang){
    font-size: 5px;
    height: 100%;
    color: #57bc18;
    vertical-align: middle;
    margin: 0 3px;
}
.lang-picker span.lang{
    vertical-align: middle;
    font-size: 14px;
    cursor: pointer;
}
.lang-picker span.lang.active{
    font-weight: 700;
}
header .navbar ul{
    list-style: none;
}
header .navbar ul li{
    position: relative;
    float: left;
    height: 67px;
}
header .navbar ul li a{
    font-size: 20px;
    padding: 20px;
    display: block;
    color: #626262;
}
header .navbar ul li a:hover{
    color: #2c2b2b;
}

header .navbar ul li:nth-child(1) ul li a:hover{
    color: #02a2c4;
}
header .navbar ul li:nth-child(2) ul li a:hover{
    color: #f44d19;
}
header .navbar ul li:nth-child(3) ul li a:hover{
    color: #57bc18;
}
.navbar ul li .arrow-down{
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #f00;
    display: inline-block;
    transition: .4s all;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-left: 5px;
}
.navbar ul li:nth-child(1) .arrow-down{
    border-top-color: #02a2c4;
}
.navbar ul li:nth-child(2) .arrow-down{
    border-top-color: #f44d19;
}
.navbar ul li:nth-child(3) .arrow-down{
    border-top-color: #57bc18;
}
.navbar ul li ul{
    position: absolute;
    left: 0;
    min-width: 100%;
    background: rgba(255,255,255,.75);
    transition: .4s;
    visibility: hidden;
    opacity: 0;
}
header .navbar ul li ul li{
    width: 100%;
    border-bottom: 1px solid;
    display: flex;
    align-items: center;
    height: 50px;
}
header .navbar ul li ul li a{
    padding: 10px 20px;
    font-size: 17px;
}
header .navbar ul li:nth-child(1) ul li{
    border-bottom-color: #02a2c4;
}
header .navbar ul li:nth-child(2) ul li{
    border-bottom-color: #f44d19;
}
header .navbar ul li:nth-child(3) ul li{
    border-bottom-color: #57bc18;
}
header .navbar ul li:hover > ul
/* header .navbar ul li:focus-within > ul */
{
    visibility: visible;
    opacity: 1;
}
header .navbar ul li:hover > .arrow-down{
    transform: rotate(180deg);
}
.arrow-down.rotated{
    transform: rotate(180deg);
}
header .navbar > ul > li:last-child{
    color: #1e6eb7;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .navbar > ul li:last-child i{
    padding: 0 20px;
    cursor: pointer;
}
header .menu-btn{
    font-size: 46px;
    position: absolute;
    right: 45px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
    align-items: center;
}


.pagination-cont-list{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align:  center;
    font-family: "Open Sans";
    margin-bottom: 25px;
}
.pagination-cont-list a{
    color: #737475;
    text-decoration: underline;
}
.pagination-cont-list a i{
    color: #f89b2d;
    font-size: 40px;
    vertical-align: middle;
}
.page-numbers.current{
    font-weight: 700;
}
/* SLIDESHOW */
.main-container{
    margin-top: 128px;
    width: 100%;
    height: calc(100% - 128px);
    font-family: "Open Sans";
}
.main-container.page{
    height: unset;
}
ul.slider,  ul.slider li{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.slider{
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
}
ul.slider li{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: inherit;
    height: inherit;
    background: #fff;
    transition: opacity 1s;
    overflow: hidden;
}
ul.slider li.active{
    opacity: 1;
}
ul.slider li .slide-image{
    width: 100%;
    object-fit: cover;
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
ul.slider li .slide-image.zoomed{
    animation: zoom 25s;
    animation-timing-function: linear;
    animation-fill-mode:  forwards;
}
ul.slider .arrow-left{
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 100px;
    cursor: pointer;
    transition: .2s;
    opacity: .5;
    transition-timing-function: ease;
}
ul.slider .arrow-right{
    position: absolute;
    right: 150px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 100px;
    cursor: pointer;
    transition: .2s;
    opacity: .5;
    transition-timing-function: ease;
}
ul.slider .arrow-left:hover, ul.slider .arrow-right:hover{
    transform: scale(1.1);
    opacity: 1;
}
ul.slider li .slide-text{
    position: absolute;
    z-index: 10;
    bottom: 60px;
    right: 15%;
    width: 600px;
    color: #fff;
    font-size: 27px;
    font-weight: 600;
    text-align: right;
    line-height: 34px;
    font-family: "Open Sans" !important;
}
ul.slider li .slide-text span{
    display:block;
    font-size: 200px;
    line-height: 0px;
    text-align: left;
    padding: 0 30px;
}

.home-section{
    width: 100%;
    height: 500px;
}
.home-section.two{
    background-image: url(img/s2bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    justify-content: flex-start;
}
.home-section.middle-title{
    height: unset;
    padding: 10px 0;
}
.home-section.grid{
    height: unset;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
}
.section-inner{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: auto;
    padding: 25px 0;
}
.section-inner.two{
    align-items: flex-end;
}
.home-section.middle-title .section-inner{
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
.home-section.middle-title .section-inner .text{
    width: 800px;
    text-align: center;
    font-size: 20px;
}
.home-section.middle-title .section-inner .text h2{
    font-weight: 600;
    font-size: 38px;
}
.home-section.middle-title .section-inner .text p{
    line-height: 32px;
}
.section-inner .section-text{
    width: 500px;
    max-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
    padding-right: 50px;
}

.section-inner .section-text h2.section-title{
    color: #1e63b7;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    /* text-align: justify; */
}
.section-inner .section-text p{
    margin: 15px 0;
    color: #737475;
    line-height: 25px;
    font-size: 20px;
}
.section-inner .section-text .section-button{
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 50px;
    color: #1e63b7;
    text-decoration: none;
    margin-top: 30px;
    font-size: 20px;
}
.section-inner .section-image{
    width: 800px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-inner .section-image img{
    width: 800px;
}
.white{
    color: #fff !important;
}

/* middle title */
.middle-title{
    background: #23a9b9;
}
.middle-title .inner{

}

/* grid */
.home-section.grid .grid-item{
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.home-section.grid .grid-item .grid-image{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .6s;
}
.home-section.grid .grid-item a{
    position: relative;
    transition: .5s;
    /* position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0px 0px 5px #000;
    font-size: 38px;
    line-height: 38px;
    opacity: 0;
    transition: .3s opacity ease; */
    display: block;
    width: 100%;
    height: 100%;
}
.home-section.grid .grid-item a div{
    padding: 30px;
    position: absolute;
    width: 85%; 
    bottom: 0;
    left: 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0px 0px 5px #000;
    font-size: 26px;
    line-height: 38px;
    opacity: 0;
    transition: .3s opacity ease;
}
.home-section.grid .grid-item:hover > .grid-image{
    transform: scale(1.1);
}
.home-section.grid .grid-item:hover:nth-child(1) > a{
    background-color: rgba(211, 84, 39, .6);
}
.home-section.grid .grid-item:hover:nth-child(2) > a{
    background-color: rgba(2, 162, 196, .6);
}
.home-section.grid .grid-item:hover:nth-child(3) > a{
    background-color: rgba(87, 188, 24, .6);
}
.home-section.grid .grid-item:hover:nth-child(4) > a{
    background-color: rgba(255, 237, 0, .6);
}
.home-section.grid .grid-item:hover:nth-child(5) > a{
    background-color: rgba(224, 24, 18, .6);
}
.home-section.grid .grid-item:hover:nth-child(6) > a{
    background-color: rgba(14, 107, 190, .6);
}
.home-section.grid .grid-item:hover > a div{
    opacity: 1;
    text-decoration: underline;
}
.home-section.grid .grid-item:nth-child(1) .grid-image{
    background-image: url(img/grid-01.jpg);
}
.home-section.grid .grid-item:nth-child(2) .grid-image{
    background-image: url(img/grid-02.jpg);
}
.home-section.grid .grid-item:nth-child(3) .grid-image{
    background-image: url(img/grid-03.jpg);
}
.home-section.grid .grid-item:nth-child(4) .grid-image{
    background-image: url(img/grid-04.jpg);
}
.home-section.grid .grid-item:nth-child(5) .grid-image{
    background-image: url(img/grid-05.jpg);
}
.home-section.grid .grid-item:nth-child(6) .grid-image{
    background-image: url(img/grid-06.jpg);
}

/* Footer*/
.footer-logos img{
    width: 300px;
}
.footer{
    background-image: url(img/footer-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
}
.np-msg{
    width: 100%;
    font-family: "Open Sans";
    color: #626262;
    font-size: 24px;
    text-align: center;
}
.footer-inner{
    width: 100%;
    max-width: 1600px;
    margin: auto;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}
.footer-inner .footer-logo{
    background-image: url(img/footer-logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 408px;
    height: 190px;
    float: left;
}
.footer-inner .footer-text{
    display: flex;
    flex-direction: column;
    color: #626262;
    font-size: 20px;
    width: 712px;
    font-family: "Open Sans";
}
.footer-inner .footer-text h2{
    font-size: 33px;
}
.footer-inner .footer-text a{
    text-decoration: underline;
    color: inherit;
}
.footer-inner .footer-text .social-container{
    font-size: 30px;
}

/* Page */
.page-banner{
    height: 628px;
    width: 100%;
    position: relative;
    line-height: 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    margin: auto;
}
.page-title{
    position: absolute;
    right: 20%;
    bottom: 80px;
    color: #fff;
    font-size: 70px;
    font-family: "OpenSans-Bold";
}
.page-header{
    position: absolute;
    right: 15%;
    bottom: 80px;
    color: #fff;
    font-size: 70px;
    font-family: "OpenSans-Bold";
}
.page-id-33 .page-header{
    color: #3e7dbf; 
}
.page-section{
    /* border: 1px solid; */
    width: 100%;
    max-width: 1600px;
    margin: auto;
    font-family: "Open Sans";
    padding: 0 180px;
}
.page-section.full{
    width: 100%;
    background: #f89f36;
}
.page-section p{
    font-size: 20px;
    color: #737475;
    text-align: justify;
}
.page-section p.logos-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
}
.page-section p.logos-box-aligned img{
    margin-right: 30px;
}
.page-section a{
    text-decoration: underline;
    color: #737475;
}
.page-section h2{
    color: #3e7dbf;
    font-size: 28px;
    font-weight: 600;
    padding: 0;
    text-align: center;
}
.page-section h3.underlined-header{
    border-bottom: 3px solid #59bd18;
    font-size: 25px;
    font-weight: 600; 
    padding: 5px 0;
    color: #3e7dbf;
    margin: 30px auto;
}
.page-section-box{
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 0;
}
.page-section-box .box-item{
    display: grid;
    grid-template-columns: 2fr 11fr;
    align-items: center;
    color: #fff;
    gap: 25px;
}
.page-section-box .box-item h3{
    border-right: 3px solid #fff;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 24px;
}
.page-section-box .box-item p{
    color: #fff;
}
.wp-block-image{
    margin: 0;
}
.page-section img{
    width: 100%;
}
.reduced{
    width: 75%;
    margin: auto;
}
.counter-box{
    width: 100%;
    max-width: 1600px;
    height: 197px;
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
    margin: auto;
}
.count{
    width: 171px;
    height: 90px;
}
.count .count-data{
    display: flex;
}
.count .count-data .number{
    flex: 1 1;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans";
    font-size: 40px;
    font-weight: 700;
}
.count .count-data .icon{
    flex: 1 1;
    height: 90px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.count.pub .number, .count.pub .count-title{
    color: #28c728;
}
.count.not .number, .count.not .count-title{
    color: #ffa52d;
}
.count.gui .number, .count.gui .count-title{
    color: #09a6c9;
}
.count.not .number{
    color: #ffa52d;
}
.count.gui .number{
    color: #09a6c9;
}
.count.pub .icon{
    background-image: url(img/publicaciones_icon.png);
}
.count.not .icon{
    background-image: url(img/noticias_icon.png);
}
.count.gui .icon{
    background-image: url(img/guias_icon.png);
}
.count .count-title{
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/* search */
.search-box{
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-box input{
    border: 1px solid #1e63b7;
    border-radius: 100px;
    text-align: center;
    font-family: "Open Sans";
    font-size: 20px;
    padding: 5px 10px;
    width: 400px;
    outline: none;
}
.search-modal-container{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    background: rgba(0,0,0,.87);
    transform: scale(0);
    opacity: 0;
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.search-modal-container.visible{
    opacity: 1;
    transform: scale(1);
}
.search-modal-container input{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    padding: 10px;
    font-size: 32px;
    text-align: center;
    /* border-radius: 100px; */
    outline: none;
    font-family: "Open Sans";
    color: #fff;
}
.search-modal-container .close-modal{
    color: #fff;
    padding: 20px;
    margin: 25px;
    font-size: 40px;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}
/* posts cards */
.posts-cards-box{
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding: 40px 0;
}
.card-headers{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
    gap: 25px;
}
.card-headers .card-header{
    padding: 20px;
    text-align: center;
    color: #626262;
    border-bottom: 3px solid;
    font-family: "Open Sans";
    font-size: 22px;
    font-weight: 600;
    opacity: .4;
}
.card-headers .card-header span{
    cursor: pointer;
}
.card-headers .card-header.active{
    opacity: 1;
}
.card-headers .card-header.pub{
    border-color: #28c728;
}
.card-headers .card-header.not{
    border-color: #09a6c9;
}
.card-headers .card-header.gui{
    border-color: #ffa52d;
}
.card-headers .card-header.otr{
    border-color: #f44d19;
}
.card-items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 25px;
    font-family: "Open Sans";
    margin-bottom: 10vh;
    display: none;
}
.page-id-26 .card-items, .page-id-26 .card-headers{
    grid-template-columns: repeat(4, 1fr);
}
.card-items.active{
    display: grid;
}
.card-items .post-card .card-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

.card-items .post-card .card-image img{
    width: 100% !important;
    height: auto !important;
    object-fit: contain;

}
.card-items .post-card .card-title{
    font-weight: 700;
    font-size: 25px;
    font-family: "Open Sans";
    color: #1e63b7;
    padding: 20px 0;
}
.card-items .post-card .card-title a{
    color: inherit;
}
.card-items .post-card .card-title a:hover{
    text-decoration: underline;
}
.card-items .post-card .card-text{
    color: #737475;
    font-size: 20px;
}
.card-items .post-card{
    position: relative;
    /* border-bottom: 1px solid #e1e1e1; */
    padding-bottom: 25px;
}
.card-items .post-card .card-link{
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 50px;
    color: #1e63b7;
    text-decoration: none;
    margin-top: 30px;
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
}
.card-items .post-card .card-link a{
    color: #1e63b7;
    display: block;
    width: 100%;
    height: 100%;
}
.card-items.animated{
    animation: fadeIn 1s;
    animation-fill-mode: forwards;
}

/* single post */
.post-cont{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin: 80px auto;
    border-top: 3px solid #57bc18;
    padding-top: 10px;
}
.post-image{
    width: 100%;
    /* border: 1px solid #e1e1e1; */
    overflow: hidden;
    line-height: 0;
}
article .post-image img{
    transition: 10s;
}
article .post-image:hover > img{
    transform: scale(1.2);
}
h2.post-title{
    font-family: "Open Sans";
    font-size: 25px;
    color: #1e63b7;
    margin-top: 25px;
}
h2.post-title a{
    color: inherit;
}
h2.post-title a:hover{
    text-decoration: underline;
}
.post-content{
    margin-top: 25px;
    font-family: "Open Sans";
    color: #737475;
    line-height: 25px;
    font-size: 20px;
}
a.read-more-link{
    text-decoration: underline;
    font-weight: 700;
    font-family: "Open Sans";
    color: inherit;
    display: inline-block;
    margin: 10px 0;
    color: #737475;
}
.date-cont{
    font-family: "Open Sans";
    padding: 5px 10px;
    background-color: rgba(167, 167, 168, 1);
    color: #fff;
}
.post-cont hr{
    margin: 25px 0;
    color: #fff;
}
.pagination-cont{
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    font-family: "Open Sans";
}
.prev-page-cont a, .next-page-cont a{
    text-decoration: underline;
    color: #737475;
}
.prev-page-cont:hover i, .next-page-cont:hover i{
    transform: scale(1.2);
    transition: .3s;
}
.prev-page-cont i, .next-page-cont i{
    color: #f89b2d;
    font-size: 40px;
    vertical-align: middle;
}
.np-txt{
    font-family: "Open Sans";
    text-align: center;
    margin: 25px 0;
    font-size: 28px;
    font-weight: 600;
    color: #737475;
}

/* form */
.form-container{
    width: 100%;
    text-align: center;
    margin: 40px 0;
}
.form-container p{
    display: inline-block;
    margin: 10px 0;
}
.form-container input{
    height: 45px;
}
.form-container input, .form-container textarea{
    width: 800px;
    padding: 10px;
    border: 1px solid #626262;
    border-radius: 5px;
    margin: auto;
    resize: vertical;
    font-family: "Open Sans";
    font-size: 20px;
    outline-color: transparent;
    transition: .3s;
}
.form-container input:focus, .form-container textarea:focus{
    outline-color: #02a2c4;
}
.form-container input[type="submit"]{
    background-color: #02a2c4;
    border: none;
    font-size: 20px;
}
.results-title{
    text-align: center;
    padding-top: 25px;
    font-size: 40px;
    color: #737475;
}
.clients-logos{
    border: 1px solid red;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
@keyframes zoom {
    0% { transform: initial; }
    100% { transform: scale(1.4); }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@media(max-width: 1110px){
    ul.slider li .slide-text{
        right: 0;
        left: 0;
        margin: auto;
    }
    .section-inner .section-image{
        width: 50%;
    }
    .section-inner .section-image img{
        width: 100%;
    }
    .section-inner .section-text{
        width: 50%;
    }
    .page-section{
        width: 100%;
    }
    .page-banner{
        background-position: center;
    }
    .page-section-box .box-item{
        grid-template-columns: 4fr 11fr;
    }
    .page-section-box.reduced{
        width: 100%;
    }
}
@media(max-width: 992px){
    header .menu-btn{
        display: flex;
    }
    .lang-picker{
        right: 0;
        left: 0;
        top: unset;
        bottom: 25px;
        margin: auto;
        text-align: center;
        margin: 25px 0;
        font-family: "Open Sans";
        color: #626262;
    }
    .lang{
        font-size: 20px !important;
    }
    header{
        z-index: 3000;
    }
    header .logo a img{
        width: 185px;
    }
    nav.main-menu{
        height: calc(100% - 126px);
        position: fixed;
        left: -100%;
        top: 126px;
        z-index: 2999;
        width: 100%;
        background: #fff;
        padding-top: 50px;
        transition: .3s;
    }
    .navbar ul li ul{
        position: unset;
        min-width: none;
        visibility: visible;
        opacity: 1;
    }
    .navbar ul li{
        text-align: center;
    }
    .navbar ul li i{
        font-size: 34px;
        color: #1e6eb7;
    }
    .navbar > ul > li > a{
        display: inline-block;
        padding: 10px;
        color: #626262;
        font-family: "Open Sans";
        font-size: 22px;
        text-align: center;
        font-weight: 600;
    }
    .navbar ul li ul{
        background-color: #e1e1e1;
        display: none;
    }
    .navbar > ul > li ul a{
        display: block;
        padding: 10px;
        color: #626262;
        font-family: "Open Sans";
        font-size: 20px;
        text-align: center;
        font-weight: 300;
    }
    .navbar ul li .arrow-down{
        position: unset;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 15px solid #f00;
        margin-left: 5px;
    }
    .navbar ul li:nth-child(2) .arrow-down{
        border-top-color: #02a2c4;
    }
    .navbar ul li:nth-child(3) .arrow-down{
        border-top-color: #f44d19;
    }
    .navbar ul li:nth-child(4) .arrow-down{
        border-top-color: #57bc18;
    }
    .navbar ul li:nth-child(2) ul li a{
        color: #02a2c4;
    }
    .navbar ul li:nth-child(3) ul li a{
        color: #f44d19;
    }
    .navbar ul li:nth-child(4) ul li a{
        color: #57bc18;
    }
    .form-container input, .form-container textarea{
        width: 100%;
    }
    .main-container{
        margin-top: 128px;
    }
    .slider{
        /* display: none; */
        height: 400px !important;
        overflow: hidden;
    }
    ul.slider li .slide-text{
        font-size: 23px;
        padding: 0 25px;
        width: 100%;
        bottom: 25px;
        line-height: 28px;
        height: 100%;
        display: flex;
        align-items: flex-end;
        display: none;
    }
    ul.slider li .slide-text span{
        /* padding: 0 65px; */
    }
    ul.slider .arrow-left{
        left: 45px;
        font-size: 60px;
        top: -79px;
        z-index: 2000;
    }
    ul.slider .arrow-right{
        right: 45px;
        font-size: 60px;
        top: -70px;
        z-index: 2000;
    }
    .section-inner{
        display: block;
    }
    .section-inner .section-text h2.section-title{
        font-size: 30px;
        line-height: 36px;
    }
    .section-inner .section-text{
        width: 100%;
        padding: unset;
        box-sizing: border-box;
    }
    .section-inner .section-text h2, .section-inner .section-text p{
        padding: 0 25px;
    }
    .section-inner .section-text .section-button{
        margin: auto;
        margin-top: 25px;
    }
    .section-inner .section-image{
        width: 100%;
    }
    .home-section{
        height: unset;
    }
    .home-section.middle-title .section-inner .text{
        width: 100%;
    }
    .home-section.grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .home-section.grid .grid-item a div{
        opacity: 1;
        font-size: 22px;
        line-height: 26px;
    }
    .home-section.middle-title{
        padding: 25px 0;
    }
    .footer{
        height: unset;
    }
    .footer-inner{
        flex-direction: column;
        justify-content: center;
        padding: 25px 0;
    }
    .footer-inner .footer-logo{
        width: 250px;
        height: 117px;
        margin: auto;
    }
    .footer-inner .footer-text{
        padding: 0 25px;
        width: 100%;
        text-align: center;
        

    }
    .search-modal-container input{
        width: 75%;
    }
    .search-modal-container .close-modal{
        padding: 0;
    }
    .page-section{
        padding: 0 25px;
    }
    .page-title{
        font-size: 40px;
        right: 0;
        left: 0;
        bottom: -65px;
        margin:auto;
        text-align: center;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .page-header{
        font-size: 36px;
        right: 0;
        left: 0;
        bottom: 25px;
        text-align: center;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: helvetica;
    }
    .page-id-33 .page-header{
        bottom: -65px;
    }
    .reduced{
        width: 90%;
    }
    .page-section-box .box-item{
        display: block;
    }
    .page-section-box .box-item h3{
        font-size: 28px;
        border-right: none;
        margin-bottom: 25px;
        text-decoration: underline;
    }
    .page-banner{
        background-position: center;
        height: 190px;
    }
    .card-headers{
        /* display: flex;
        justify-content: space-around; */
        grid-template-columns: repeat(2, 1fr) !important;
        width: 90%;
        margin: auto;
    }
    .card-headers .card-header{
        padding: 0 0 10px 0;
        font-size: 20px;
    }
    .card-items{
        grid-template-columns:  1fr !important;
        width: 90%;
        margin: auto;
        margin-top: 25px;
    }
    .counter-box{
        width: 88%;
        /* flex-wrap: wrap; */
        gap: 25px;
        /* height: 500px; */
    }
    .count .count-data .icon{
        height: 42px;
    }
    .count .count-data{
        align-items: center;
    }
    .count .count-data .number{
        font-size: 22px;
    }
    .count .count-title{
        font-size: 17px;
    }
    .search-box{
        padding: 0;
    }
    .post-cont{
        margin: 25px auto;
    }
    .post-content, .post-title{
        padding: 5px 25px;
        margin: 0;
        margin-top: 0 !important;
    }
    .read-more-link{
        padding: 0 25px;
    }
    .pagination-cont{
        justify-content: space-around;
    }
}
