/**
Theme Name: Testing theme
Author: Johnny Jurak
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: testing-theme
Template: astra
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.header.section.one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px;
}

.logofirma {
    flex-basis: 70%;
}

.header.section.two {
    display: none;
}

.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
	text-decoration: none;
}

@keyframes dropdownAnim {
    0% {
        display: none;
    }
    1% {
        display: flex;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.header.section.two.open {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c3bebe;
    animation-name: dropdownAnim;
    animation-duration: .5s;
}

.headerLogo {
    width: 60%;
    animation: headerImgSlide 1.5s;
}

.menuBtn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    animation: menuBtnSlide 1.5s;
}

.menuBtn-burger {
    width: 50px;
    height: 2px;
    background: black;
    border-radius: 5px;
    transition: all .2s ease-in-out;
}

.menuBtn-burger::before,
.menuBtn-burger::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: black;
    border-radius: 5px;
    transition: all .2s ease-in-out;
}

.menuBtn-burger::before {
    transform: translateY(-10px);
}

.menuBtn-burger::after {
    transform: translateY(10px);
}

.menuBtn.open .menuBtn-burger {
    transform: translateX(-50px);
    background: transparent;
}

.menuBtn.open .menuBtn-burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.menuBtn.open .menuBtn-burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

.dropdown ul li {
    list-style: none;
    text-align: center;
    padding: 10px;
    translate: -20px 10px;
}

.dropdown ul li a {
    color: white;
}

.desktopnav {
    display: none;
    padding-top: 10px;
}

.desktopnav ul li {
    display: inline;
    list-style: none;
    text-align: center;
    padding: 20px;
}

.desktopnav ul li a {
    color: black;
    transition: all .13s ease-in-out;
}

.desktopnav ul li a:hover {
    color: red;
    font-size: 140%;
}

@media (min-width: 700px) {
    header div a img {
        width: 40%;
        animation: headerImgSlide 1.5s;
    }
	
	.logofirma {
    	flex-basis: 50%;
	}
}

@media (min-width: 1024px) {
    header div a img {
        width: 25%;
        animation: headerImgSlide 1.5s;
    }

    .menuBtn {
        display: none;
    }

    .desktopnav {
        display: flex;
        animation: deskNavSlide 1.5s;
    }
	
	.logofirma {
    	flex-basis: 70%;
	}

}

/* Header animations Animations */

@keyframes headerImgSlide {
    from {
        translate: -120%;
    }
    to {
        translate: 0;
    }
}

@keyframes menuBtnSlide {
    from {
        translate: 120%;
    }
    to {
        translate: 0;
    }
}

@keyframes deskNavSlide {
    from {
        translate: 100%;
    }
    to {
        translate: 0;
    }
}

/* End Header animations */