@charset "UTF-8";
/*
Theme Name: bhakti
Version: 1.0.0
*/

*,
::before,
::after {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

/*----------------------------------------------------
 logo
----------------------------------------------------*/
.home .logo {
    display: none;
}

/*----------------------------------------------------
 gmenu
----------------------------------------------------*/
.gmenu {
    background: #fff;
    padding-top: 81px;
    top: -1000px;
    width: 100%;
}

.menu-opened .gmenu {
    top: 0;
}

.gmenu li a {
    border-bottom: 1px solid #fff;
    display: block;
    padding: 1rem;
}

/*----------------------------------------------------
 gmenu toggle
----------------------------------------------------*/
.gmenu-toggle {
    margin-top: 3px;
    height: 40px;
    width: 40px;
}

.gmenu-toggle span {
    background: #333;
    display: block;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 6px;
    transition: .2s;
    width: 28px;
}

.gmenu-toggle span::before,
.gmenu-toggle span::after{
    background: #333;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: .3s;
    width: 28px;
}

.gmenu-toggle span::before{
    margin-top: -12px;
}

.gmenu-toggle span::after{
    margin-top: 10px;
}

/* open */
.menu-opened .gmenu-toggle span {
    background: transparent;
}

.menu-opened .gmenu-toggle span::before,
.menu-opened .gmenu-toggle span::after{
    margin-top: 0;
}

.menu-opened .gmenu-toggle span::before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.menu-opened .gmenu-toggle span::after{
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

/*----------------------------------------------------
 bg
----------------------------------------------------*/
.bg {
    background-image: url(img/bg.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 50% auto;
}

/*----------------------------------------------------
 form
----------------------------------------------------*/
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
    width: 100%;
}

.form textarea {
    height: 180px;
    resize: vertical;
    width: 100%;
}

.form input[type="button"],
.form input[type="submit"] {
    background: transparent;
    border: 1px solid #000;
    cursor: pointer;
    margin: 0 5px;
    padding: 20px 40px;
}

.form input[type="button"]:hover,
.form input[type="submit"]:hover {
    opacity: .5;
}

.form input[type="button"]:disabled,
.form input[type="submit"]:disabled {
    cursor: default;
    opacity: .5;
}

.form span.wpcf7-list-item {
    margin-left: 0;
}

@media screen and (max-width: 768px) {
    .form th,
    .form td {
        display: block;
    }

    .form th {
        padding-bottom: 10px;
    }

    .form td {
        padding-bottom: 40px;
    }
}
