/* ------- Global styles start ------- */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', sans-serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 27px;
}

h4 {
    font-size: 24px;
}
h5 {
    font-size: 18px;
}

a {
    text-decoration: none;
    transition: all .3s;
}

a:hover {
    text-decoration: none;
}

.button, button {
    text-transform: uppercase;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    transition: all .3s;
}

.button:hover, button:hover {
    text-decoration: none;
    cursor: pointer;
}

.container {
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-full {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.hd-content-box {
    box-shadow: 0 2px 8px 0 rgba(16,7,104,.1),0 1px 2px 0 rgba(83,51,237,.06);
	border-radius: 5px;
    background-color: #ffffff;
    padding: 30px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-name {
    font-family: 'Playfair Display', sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #1D1660;
}

.contact-phones {
    font-size: 16px;
    letter-spacing: 1px;
}

.contact-phones li {
    margin-bottom: 4px;
}


/* ------- Global styles end ------- */

/* ------- Header Menu styles start ------- */
.site-header {
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
    padding:8px 0;
}

.site-branding img {
    max-width: 86px;
    width: 100%;
    height: auto;
}

.header-menu-container {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
    display: flex;
    align-items: center;
}

.header-menu li {
    display: inline-block;
    position: relative;
}

.header-menu .menu-item-has-children {
    padding-right: 5px;
}

.header-menu li a {
    color: #292929;
    text-decoration: none;
    padding: 15px;
    display: block;
}

.header-menu .sub-menu {
    position: absolute;
    min-width: 200px;
    padding: 0px;
    /* background: lightgrey; */
    display: none;
}

.header-menu .menu-item-has-children::after {
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    content: '\f078';
    vertical-align: middle;
    position: absolute;
    top: 17px;
    right: 1px;
    -webkit-font-smoothing: antialiased;
    font-size: 10px;
}

.header-menu .sub-menu li {
    display: block;
    /* background: #e3e3e3; */
}

.header-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

.main-navigation .menu-link {
    background: lightgrey;
    color: #292929;
    font-size: 24px;
    padding: 0.6em;
    cursor: pointer;
    display: none;
}

.menu-link {
    display: block;
    height: 50px;
    width: 50px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9;
}

.menu-link span,
.menu-link span:before,
.menu-link span:after {
    display: block;
    height: 2px;
    width: 16px;
    background-color: #333;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -1px;
}

.menu-link span:before {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    content: '';
    margin-top: -6px;
}

.menu-link span:after {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    content: '';
    margin-top: 4px;
}

.menu-link_active span {
    background-color: transparent;
}

.menu-link_active span:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: 0;
}

.menu-link_active span:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: 0;
}

.social-networks {
    list-style: none;
    display: flex;
}

.social-networks li {
    padding: 0 5px;
}

.woocommerce-header-links a {
    margin: 0 5px;
}

/* ---------------- For sticky header: class="float-panel"  ------------------*/
.float-panel {
    width:100%;
    background:white;
    z-index:300;
    transform: translateZ(0);
    transition:all 0.5s; /* Effect for switching from .fixed to static */
}

/* when class="float-panel fixed" */
.fixed {
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
    padding:4px 0;
    animation:slide-down 0.7s;
    opacity:0.9;
}

.fixed .fa-gg {
    transform: rotate(360deg); 
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}

/* ---------------- For Animation on Scroll ---------------- */
.slideanim {
    visibility:hidden;
    visibility:visible\9;/*For old IE browsers IE6-8 */
}

.slideanim.slide {
    visibility: visible; animation:slide 1s;
}

.slideanim::after {
    /* useful when its child elements are float:left; */
    content: "";
    display: table;
    clear: both;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(50%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}

/* ------- Header & Menu styles end ------- */

/* ------- Home Page styles start ------- */
#page-banner {
    position: relative;
    height: 350px;
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-attachment: fixed;
    z-index: 1;
}

.white-overlay {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: .85;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.page-title {
    color: #1d1660;
    margin-bottom: 10px;
}

.page-descr {
    font-size: 18px;
    margin-bottom: 25px;
}

.page-content {
    padding: 45px 0;
}

.section-title {
    color: #1d1660;
    text-transform: uppercase;
    position: relative;
}


.section-descr {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hd-content-box {
    background: linear-gradient(120.6deg, #FFFFFF 78.31%, rgba(242, 241, 245, 0.91674) 123.26%, rgba(240, 239, 244, 0.933674) 105.71%, rgba(232, 231, 238, 0.896875) 105.71%, rgba(30, 23, 92, 0.01) 105.71%);
}

#services {
    position: relative;
    padding: 70px 0;
}

.service-item--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service-title {
    flex-basis: 100%;
    font-weight: 500;
    font-size: 24px;
}

.service-price {
    flex-basis: 100%;
    font-size: 16px;
}

#call-to-action {
    position: relative;
    height: 200px;
    background-repeat: no-repeat; 
}

.get-the-call-wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 200px;
}

#contacts {
    position: relative;
    padding: 70px 0;
}

.address-info-list {
    padding: 0;
    list-style: none;
}

.address-info-list i {
    color: #1d1660;
    margin-right: 10px;
}

.address-info-list li {
    margin-bottom: 15px;
}

.social-networks.contacts-list {
    padding: 0;
}

.social-networks.contacts-list li {
    margin-right: 10px;
    margin-left: 0;
    padding-left: 0;
}

#hd-last-posts {
    position: relative;
    background: #fcfcfc;
    padding: 70px 0;
}

.read-more-link {
    font-weight: 500;
}
/* ------- Home Page styles end ------- */

/* ------- Archive Blog styles start ------- */
/* ------- Archive Blog styles end ------- */

/* ------- Single Post styles start ------- */
#post-content {
    background: #fcfcfc;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}
/* ------- Single Post styles end ------- */

/* ------- Archive CPT styles start ------- */
/* ------- Archive CPT styles end ------- */

/* ------- Single CPT styles start ------- */
/* ------- Single CPT styles end ------- */

/* ------- About Page styles start ------- */
/* ------- About Page styles end ------- */

/* ------- Contact Page styles start ------- */
/* ------- Contact Page styles end ------- */

/* ------- Footer styles start ------- */
.site-footer {
    background: #262424;
    color: #fff;
    padding: 15px 0;
}

.site-footer a,
.site-footer i{
    color: #fff;
}

.site-footer a:hover {
    color: rgb(238, 234, 234);
}

.footer-copyright {
    font-size: 14px;
}

.footer-copyright p {
    margin: 0;
}
/* ------- Footer styles end ------- */

/* ------- Social Networks styles start ------- */
.social-networks i {
    font-size: 24px;
}

.site-footer .social-networks {
    justify-content: flex-end;
}

.site-footer .contact-phones {
    padding: 0;
}

.social-networks li {
    margin: 0 3px;
}
/* ------- Social Networks styles end ------- */