/*!
Theme Name: CWW Portfolio
Theme URI: https://codeworkweb.com/themes/cww-portfolio
Author: Code Work Web
Author URI: https://codeworkweb.com/
Description: This is useful theme for personal portfolio sites to pubish your personal websites in an style with easy configuration options.
Version: 1.0.7
Tested up to: 5.8
Requires PHP: 5.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cww-portfolio
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

CWW Portfolio is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/


/* Normalize
--------------------------------------------- */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */


/* Document
	 ========================================================================== */


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}


/* Sections
	 ========================================================================== */


/**
 * Remove the margin in all browsers.
 */


/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/

body {
    margin: 0;
    padding: 0;
    font-family: "Meiryo", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    color: #333;
    background: #fff;
}


/* Typography
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.3;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 28px;
}

h3,
h4 {
    font-size: 20px;
    font-weight: bold;
}

p {
    margin: 10px 0;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
    color: #333;
}


/* Links
--------------------------------------------- */

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #11204d;
}

a:hover,
a:active {
    outline: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header.site-header {
    background: #FFF;
    -webkit-box-shadow: 0 2px 15px 0 rgb(0 0 0 / 3%);
    box-shadow: 0 2px 15px 0 rgb(0 0 0 / 3%);
    padding: 20px 0;
}

.site-branding {
    line-height: 0;
}

.site-branding img {
    max-width: 100%;
}

.main-navigation {
    display: block;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    display: inline-block;
    position: relative;
}

.main-navigation li a {
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    color: #333;
    padding: 0 25px 0 0;
}

.main-navigation li a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: #ff3d4f;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main-navigation li a:hover:after,
.main-navigation li.current a:after {
    width: 30px
}

button#mob-toggle-menu-button {
    display: none;
}

@media only screen and (max-width: 992px) {
    header.site-header {
        position: relative;
    }
    /* ============= Toggle Button =================== */
    button#mob-toggle-menu-button {
        display: block;
        width: 48px;
        height: 48px;
        background-color: #323648;
        border: 0;
        padding: 0;
        margin: 0 0 0 20px;
        transition: background-color 2s ease;
    }
    .button-inner-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    /* Menu toggle button */
    .icon {
        line-height: 0;
    }
    .menu-icon {
        width: 27px;
        text-align: right;
    }
    .menu-icon::after,
    .menu-icon::before {
        display: inline-block;
        content: "";
        width: 27px;
        height: 3px;
        background-color: #fff;
        margin: 3px 0;
        transition-duration: 0.5s;
    }
    .menu-icon::before {
        width: 27px;
    }
    .menu-icon::after {
        width: 18px;
    }
    #mob-toggle-menu-button:hover .menu-icon::before {
        width: 18px;
        transition-duration: 0.5s;
    }
    #mob-toggle-menu-button:hover .menu-icon::after {
        width: 27px;
        transition-duration: 0.5s;
    }
    #mob-toggle-menu-button.is-opened {
        background-color: #ff3d4f;
    }
    #mob-toggle-menu-button.is-opened .menu-icon::before {
        width: 27px;
        transform: rotateZ(135deg) translate(3px, -3px);
    }
    #mob-toggle-menu-button.is-opened .menu-icon::after {
        width: 27px;
        transform: rotateZ(-135deg) translate(3px, 3px);
    }
    /* ===================== Menu show hide =================*/
    header.site-header.is-opened .cww-menu-outer-wrapp {
        display: block;
    }
    .cww-menu-outer-wrapp.cww-flex {
        position: absolute;
        width: 50%;
        height: auto;
        background: #fff !important;
        padding: 20px;
        top: 100%;
        right: 0;
        z-index: 9;
    }
    .cww-nav-container ul li {
        display: block;
        padding: 15px 0;
        border-bottom: solid 1px #f1f1f1;
    }
    .cww-nav-container ul li:last-child {
        border-bottom: none;
    }
    .cww-nav-container ul li a {
        font-size: 16px;
        font-weight: normal;
        color: #333;
        padding: 0;
    }
    .main-navigation li a:after {
        bottom: -15px;
    }
}

@media only screen and (max-width: 425px) {
    .site-branding {
        flex: 1 1 50%;
    }
    .cww-menu-outer-wrapp.cww-flex {
        /*width: 45%;*/
        width: 90%;
    }
}


/*--------------------------------------------------------------
# Main Banner
--------------------------------------------------------------*/

section.cww-main-banner {
    overflow: hidden;
    position: relative;
    height: 58vh;
    background: rgba(249, 86, 79, 0.13);
    z-index: 1;
}

section.cww-main-banner .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 90px;
}

/*section.cww-main-banner .animated-bg {
    display: block;
    position: absolute;
    content: "";
    left: 140px;
    top: 45px;
    width: 35%;
    height: 75%;
    background: #ffdb82;
    border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
    will-change: border-radius, transform, opacity;
    animation: bganimeUltimate 5s linear infinite;
    -webkit-animation: bganimeUltimate 5s linear infinite;
    z-index: 0;
}*/

@-webkit-keyframes bganimeUltimate {
    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    34% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

@keyframes bganimeUltimate {
    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    34% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

section.cww-main-banner .img-wrapp {
    overflow: hidden;
    position: absolute;
    /*width: 60vw;
    height: 100vh;
    border-radius: 10px;*/
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.cww-main-banner .img-wrapp img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

section.cww-main-banner .bottom-style {
    position: absolute;
    width: 400px;
    color: #e67a85;
    bottom: -220px;
    right: -50px;
    will-change: border-radius, transform, opacity;
    animation: bganimeUltimate 5s linear infinite;
    -webkit-animation: bganimeUltimate 5s linear infinite;
}

section.cww-main-banner .social-icon-wrapp {
    position: absolute;
    top: 80px;
    left: 67px;
}

section.cww-main-banner .social-icon-wrapp a {
    display: inline-block;
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

section.cww-main-banner .social-icon-wrapp a:hover {
    background: #333;
    color: #FFF;
}

@media only screen and (max-width: 1366px) {
    section.cww-main-banner .container {
        padding-top: 165px;
    }
}


/*--------------------------------------------------------------
# Categories
--------------------------------------------------------------*/

.cww-about-section {
    padding: 100px 0;
}

.cww-about-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cww-about-section .container>* {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.cww-about-section .left-wrapp {
    margin-right: 40px;
}

.cww-about-section .img-wrapp {
    line-height: 0;
    position: relative;
    padding: 20px 8%;
}

.cww-about-section .img-wrapp:before,
.cww-about-section .img-wrapp:after {
    position: absolute;
    content: "";
    width: 70%;
    height: 70%;
    background: #efebf9;
    border-radius: 12px;
    z-index: -1;
}

.cww-about-section .img-wrapp:before {
    top: 0;
    left: 0;
}

.cww-about-section .img-wrapp:after {
    right: 0;
    bottom: 0;
}

.cww-about-section .img-wrapp img {
    border-radius: 12px;
    background: linear-gradient(90deg, #b2c1c8 0%, #c1c9c4 100%);
    padding-top: 5%;
}

.cww-about-section .right-wrapp {}

.cww-about-section .section-title-wrapp {
    position: relative;
}

.cww-about-section .section-title-wrapp:before {
    display: inline-block;
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    background-color: rgba(51, 231, 175, .1);
    border-radius: 50%;
    top: -15px;
    left: 0;
    z-index: -1;
}

.cww-about-section .section-title-wrapp h2 {
    font-size: 28px;
}

.cww-about-section .desc-wrapp {}

.cww-about-section .desc-wrapp p {}

@media only screen and (max-width: 478px) {
    .cww-about-section .container {
        flex-wrap: wrap;
    }
    .cww-about-section .container>* {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%!important;
        flex: 1 1 100%!important;
    }
    .cww-about-section .left-wrapp {
        margin-right: 0;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .blog-outer-wrapp {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%!important;
        flex: 1 1 100%!important;
        margin-bottom: 80px;
    }
    .cww-service-section .service-wrapper-outer .service-wrapp {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%!important;
        flex: 1 1 100%!important;
        margin-bottom: 30px;
    }
    .cww-about-section {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .cww-about-section .container>* {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
    }
    .cww-about-section .section-title-wrapp h2, 
    .cww-cta-section h2 {
        font-size: 28px!important;
    }
}

@media only screen and (max-width: 1024px) {
    /*.cww-about-section .container {
        gap: 85px;
    }*/
}


/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/

.cww-service-section {
    padding: 0 0 100px;
}

.cww-service-section .service-wrapper-outer .service-wrapp {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33%;
    flex: 1 1 33.33%;
    padding: 15px;
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp {
    position: relative;
    background-color: #FFF;
    background-position: center;
    background-size: cover;
    border: 1px solid #d9dbe3;
    border-radius: 12px;
    padding: 40px;
    -webkit-transform: perspective(1px) translateZ(0);
    -ms-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp:before {
    position: absolute;
    content: "";
    background: #efebf8;
    border-radius: 12px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: -1;
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp:hover:before {
    border-radius: 12px;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    border-radius: 12px;
    top: 0;
    left: 0;
    z-index: -1;
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp:hover:after {
    background: none;
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp:hover .counter {
    top: 30px;
    right: 30px;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

.cww-service-section .service-wrapper-outer .counter {
    position: absolute;
    font-size: 22px;
    color: #ff3d4f;
    top: 20px;
    right: 35px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.cww-service-section .service-wrapper-outer .icon {
    display: inline-block;
    font-size: 32px;
    color: #fff;
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp h4 {}

.cww-service-section .service-wrapper-outer .service-inner-wrapp h4 a {
    color: #fff;
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp p {
    color: #fff;
}

.cww-service-section .service-wrapper-outer .service-inner-wrapp:hover .icon,
.cww-service-section .service-wrapper-outer .service-inner-wrapp:hover h4 a,
.cww-service-section .service-wrapper-outer .service-inner-wrapp:hover p {
    color: #333;
}

@media only screen and (max-width: 478px) {
    .cww-service-section .service-wrapper-outer .service-wrapp {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .cww-service-section .service-wrapper-outer .service-inner-wrapp {
        margin-bottom: 40px;
    }
    .cww-service-section .service-wrapper-outer .service-inner-wrapp.last {
        margin-bottom: 0;
    }
}


/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/

.cww-cta-section {
    position: relative;
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
}

.cww-cta-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(3 54 78 / 45%);
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.cww-cta-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.cww-cta-section .subtitle {}

.cww-cta-section .subtitle p {
    color: #fff;
}

.cww-cta-section .subtitle p a {
    color: #fff;
}

.cww-cta-section .subtitle p a:hover {
    color: #ff3d4f;
}


/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/

.cww-blog-section {
    padding: 50px 0 100px;
}

.blog-outer-wrapp {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33%;
    flex: 1 1 33.33%;
    padding: 0 20px;
}

.blog-inner-wrapp {
    border: 1px solid rgba(17, 32, 77, 0.15);
    border-radius: 10px;
    padding: 10px;
}

.cww-blog-section .img-wrapp {
    margin-top: -50px;
}

.cww-blog-section .img-wrapp a.post-thumbnail {
    overflow: hidden;
    display: block;
}

.cww-blog-section .img-wrapp a.post-thumbnail img {
    display: block;
    border-radius: 10px;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.cww-blog-section .img-wrapp a.post-thumbnail:hover img {
    -webkit-transform: scale(1.05) rotate(-.5deg);
    -moz-transform: scale(1.05) rotate(-.5deg);
    -ms-transform: scale(1.05) rotate(-.5deg);
    -o-transform: scale(1.05) rotate(-.5deg);
    transform: scale(1.05) rotate(-.5deg);
}

.cww-blog-section .post-content {
    padding: 20px;
}

.cww-blog-section .post-content h3 {}

.cww-blog-section .post-content h3 a {
    color: #333;
}

.cww-blog-section .post-content p {}

.read-more-link a {
    position: relative;
    font-size: 12px;
    font-weight: bold;
    color: #ff3d4f;
    padding: 5px 0;
}

.read-more-link a:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background-color: #ff3d4f;
    bottom: 0;
    left: 0;
    -webkit-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

.read-more-link a:hover:before {
    width: 50%;
}

@media only screen and (max-width: 478px) {
    .blog-outer-wrapp {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        padding: 0;
        margin-bottom: 40px;
    }
    .blog-inner-wrapp.last {
        margin-bottom: 0;
    }
}


/*--------------------------------------------------------------
# Single
--------------------------------------------------------------*/

#primary.content-area {}

main {
    margin-top: 70px;
    margin-bottom: 70px;
}

.container.inner-container {
    max-width: 800px;
}

.single article {}

.single article .entry-header {
    text-align: center;
}

.single article .entry-header h1.entry-title {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    font-size: 28px;
    font-weight: normal;
}

.single article .post-thumbnail {
    margin-bottom: 20px;
}

.single article .post-thumbnail img {}

.single article .entry-content {}

.single article .entry-content h2 {
    font-size: 20px;
    font-weight: bold;
    color: #11204d;
}

.single article .entry-content p {}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
    margin: 0;
    padding: 15px 0;
    background: #00171f;
}

.site-footer .social-icon-wrapp a {
    display: inline-block;
    padding: 0 10px;
    color: #fff;
}

.site-footer .social-icon-wrapp a:hover {
    color: #ff3d4f;
}

.site-footer .site-info p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

.site-footer .site-info a {
    color: #ff3d4f;
}


/*--------------------------------------------------------------
# the END
--------------------------------------------------------------*/


/**
 * Render the `main` element consistently in IE.
 */

main {
    display: block;
}


/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */


/* Grouping content
	 ========================================================================== */


/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}


/* Text-level semantics
	 ========================================================================== */


/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
}


/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}


/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}


/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}


/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}


/* Embedded content
	 ========================================================================== */


/**
 * Remove the border on images inside links in IE 10.
 */

img {
    border-style: none;
}


/* Forms
	 ========================================================================== */


/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}


/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
    overflow: visible;
}


/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
    text-transform: none;
}


/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}


/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}


/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}


/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}


/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}


/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    vertical-align: baseline;
}


/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
    overflow: auto;
}


/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}


/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}


/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}


/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}


/* Interactive
	 ========================================================================== */


/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
    display: block;
}


/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}


/* Misc
	 ========================================================================== */


/**
 * Add the correct display in IE 10+.
 */

template {
    display: none;
}


/**
 * Add the correct display in IE 10.
 */

[hidden] {
    display: none;
}


/* Box sizing
--------------------------------------------- */


/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/


/* Typography
--------------------------------------------- */

button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}


/* Elements
--------------------------------------------- */

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

select {
    border: 1px solid #ccc;
}

input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: hsl(0, 0%, 100%);
    border: 1px solid #ccc;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
}

input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus {
    color: var(--theme-color);
    border-color: var(--theme-color);
    outline: none;
}

textarea {
    width: 100%;
    border: 1px solid #ccc;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 15px;
    border-radius: 5px;
}

textarea:focus {
    color: var(--theme-color);
    border-color: var(--theme-color);
    outline: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--theme-color);
    border-radius: none;
    padding: 15px 35px;
    margin: 20px 0;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: var(--dark-color);
    cursor: pointer;
}

label {
    color: #564747;
    display: block;
    font-size: 16px;
    font-weight: 400;
}


/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/


/* Navigation
--------------------------------------------- */


/* Small menu. */

.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
}


/* Posts and pages
--------------------------------------------- */

.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}


/* Comments
--------------------------------------------- */

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}


/* Widgets
--------------------------------------------- */

.widget {
    margin: 0 0 1.5em;
}

.widget select {
    max-width: 100%;
}


/* Media
--------------------------------------------- */

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}


/* Captions
--------------------------------------------- */

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/* Galleries
--------------------------------------------- */

.gallery {
    margin-bottom: 1.5em;
    display: -ms-grid;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    -ms-grid-columns: (1fr)[9];
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}


/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/


/* Jetpack infinite scroll
--------------------------------------------- */


/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}


/* Re-display the Theme Footer when Infinite Scroll has reached its end. */

.infinity-end.neverending .site-footer {
    display: block;
}


/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/


/* Accessibility
--------------------------------------------- */


/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}


/* Do not show the outline on the skip link target. */

#primary[tabindex="-1"]:focus {
    outline: 0;
}


/* Alignments
--------------------------------------------- */

.alignleft {
    /*rtl:ignore*/
    float: left;
    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    /*rtl:ignore*/
    float: right;
    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}


/*
 ===================================
 Theme styles 
 ==================================
 */

.container {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
}

.cww-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


/** ======================== Header ============================= **/

p.site-title,
p.site-description {
    margin: 0;
    padding: 0;
}

.main-navigation ul ul {
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    background: #fff;
    min-width: 255px;
    padding: 10px 0px;
    text-align: left;
}

.main-navigation .sub-menu li {
    display: block;
}

.main-navigation .sub-menu li.menu-item-has-children:hover .sub-menu {
    left: 257px;
}

.main-navigation .sub-menu li a {
    padding: 10px 25px;
}

.main-navigation .sub-menu li:not(:last-child) {
    border-bottom: 1px solid #f1f1f1;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    display: block;
    left: auto;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
    left: auto;
}


/* Button Style*/

.header-cta-wrapp a,
.cww-main-banner .btn-primary a,
.cww-cta-section .btn-wrapper a,
.error-404 .button-wrapp a {
    position: relative;
    text-decoration: none;
    display: block;
    background-color: var(--theme-color);
    color: #fff;
    padding: 12px 30px;
    text-align: center;
}

.header-cta-wrapp a:hover,
.cww-main-banner .btn-primary a:hover,
.cww-cta-section .btn-wrapper a:hover,
.error-404 .button-wrapp a:hover {
    color: #FFF;
}

.header-cta-wrapp a:before,
.cww-main-banner .btn-primary a:before,
.cww-cta-section .btn-wrapper a:before,
.error-404 .button-wrapp a:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #333;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header-cta-wrapp a:hover:before,
.cww-main-banner .btn-primary a:hover:before,
.cww-cta-section .btn-wrapper a:hover:before,
.error-404 .button-wrapp a:hover:before {
    width: 100%;
}

.header-cta-wrapp a span,
.cww-main-banner .btn-primary a span,
.cww-cta-section .btn-wrapper a span,
.error-404 .button-wrapp a span {
    position: relative;
}

.inner-blog-wrapp .sticky {
    background: #f1f1f1;
    padding: 40px 10px;
}

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 .07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.recentcomments a {
    display: inline !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-title,
.site-description {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
}

#jarallax-container-0 {
    clip: rect(0 1519.2000732421875px 411.6000061035156px 0);
    clip: rect(0, 1519.2000732421875px, 411.6000061035156px, 0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}