/*
Theme Name: Poghosyan
Theme URI: https://wordpress.org/themes/poghosyan/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.3
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: poghosyan
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

* {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    -webkit-overflow-scrolling: touch;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}


section {
    margin-bottom: 50px;
}

.button-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: none;
    border: none;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.button-top.show {
    opacity: 1;
    visibility: visible;
}


h1 {
    position: relative;
    color: #000;
    font-size: 42px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 1.4em !important;
    margin-bottom: 30px !important;
    padding-bottom: 30px;
    text-align: center;
    max-width: 100%;
}

h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 570px;
    width: 100%;
    height: 5px;
    background-color: #283762;
}


h2 {
    position: relative;
    color: #000;
    font-size: 36px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 1.4em !important;
    margin-bottom: 30px !important;
    padding-bottom: 30px;
    text-align: center;
}

h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 570px;
    width: 100%;
    height: 5px;
    background-color: #283762;
}

h3 {
    color: #fff;
    font-size: 35px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal !important;
    margin-bottom: 0 !important;
}

h4 {
    color: #000;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 32px !important;
    margin-bottom: 20px !important;
    text-align: center;
}


p {
    color: #211F1F;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0 !important;
}

header {
    position: relative;
    /*transition: margin-bottom 0.8s ease;*/
    background-color: white;
    height: 115px;
}

.header-social {
    background-color: #0e0e0e;
    padding: 8px 0;
    /*transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;*/
    /*opacity: 1;*/
    /*transform: translateY(0);*/
    transition: opacity 0.4s ease,
    height 0.4s ease,
    padding 0.4s ease,
    visibility 0.4s ease;

}


.header-social.hidden {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.social-icons-div {
    display: flex;
    gap: 0 14px;
    text-decoration: none;
}

.social-icons-div a {
    color: white;
}

.social-icons-div a:hover {
    color: white;
}

.header-main {
    padding: 10px 0;
    /*transition: bottom 0.4s ease-in-out;*/
    z-index: 999;
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 1px 4px #c1c1c1;
}

.header-logo {
    max-width: 250px;
    width: 100%;
}


.mobile-header-menu {
    display: none !important;
}

.header-menu nav .menu {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0 30px;
    flex-direction: row;
    list-style-type: none;
    align-items: center;
    position: relative;
}

header .nav-item {
    position: relative;
}

header .nav-item a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 0 10px;
}

header .nav-item a:hover {
    border-bottom: 2px solid #283762;

}

header .nav-item:first-child a {
    padding-left: 0;
    border-left: none;
}

header .nav-item:last-child a {
    padding-right: 0;
    border-right: none;
}


header > li {
    position: relative;
}

header .sub-menu {
    display: none;
    position: absolute;
    top: 34px;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    list-style: none;
    padding: 6px 0;

}

header .sub-menu li {
    padding: 0;
}

header .sub-menu li a {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

header .sub-menu li a:hover {
    color: white;
    background-color: #283762;
}

header nav .menu-item-has-children:hover .sub-menu {
    display: block;
}


.mobile-menu > li {
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 34px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #283762;
    position: absolute;
    height: 3px;
    width: 34px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    z-index: 150;
}

.menu-button::before {
    content: '';
    margin-top: -10px;
}

.menu-button::after {
    content: '';
    margin-top: 10px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}


.header-logo-a {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 150;
    position: relative;

}

.head-phone {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: end;
    gap: 0 10px;
    font-size: 15px !important;
    text-decoration: none;
    color: white;
    font-style: normal;
    font-weight: 400;
    line-height: normal !important;
}

.head-phone:hover {
    color: white;
}

.custom-button {
    display: block;
    padding: 20px;
    background-color: #283762;
    max-width: fit-content;
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    border: none;
    border-radius: 10px;
}

.custom-button:hover {
    color: #fff;
}

.custom-button.black {
    background-color: #000;
    max-width: 100%;
}

.custom-button.black:hover {
    background-color: #283762;
}

.video-head {
    width: 100%;
    margin-bottom: 30px;
}

.text-p {
    display: grid;
    gap: 15px 0;
}

.text-p img {
    width: 100%;
}

.right-now {
    background-color: #000000;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 50px;
}

#review-slide {
    padding-bottom: 80px;
}

#review-slide .review {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    width: 100%;
    margin: 0 auto;
}

#review-slide .review svg {
    margin: 0 auto;
}

#review-slide h5 {
    color: #000;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
}

#review-slide h6 {
    color: #181818;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
}

#review-slide .slick-arrow {
    top: 90%;
    width: 50px;
    height: 50px
}

#review-slide .slick-arrow.slick-next {
    right: 44%;
}

#review-slide .slick-arrow.slick-prev {
    left: 44%;
}

#review-slide .slick-arrow:hover svg path {
    stroke: #283762;
}

#review-slide .slick-arrow:before {
    display: none;
}


.tab-content-row {
    gap: 20px 0;
}

.tab-content-row label {
    color: #211F1F;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.tab-content-row label span {
    color: #ff0000;
    font-weight: 400;
    margin-left: 4px;
}

.tab-content-row input,
.tab-content-row select,
.tab-content-row textarea {
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #FFF;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    padding: 6px 10px;
    outline: none;
    width: 100%;
}

.tab-content-row .custom-button {
    font-size: 14px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    background-color: #eee;
    border-radius: unset;
    color: #333;
}


#error-message {
    margin-top: 10px;
    text-align: center;
    color: red;
    font-size: 16px;
    font-weight: 700;
}

#thank-you {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

footer .head {
    background-color: #000000;
    padding: 40px 0;
}

.footer-logo img {
    max-width: 210px;
}

footer .head p {
    color: #FFF;
}

footer .head p.strong {
    font-weight: 700;
}

footer .head p a {
    color: #FFF;
}

footer .head h6 {
    color: #FFF;
    font-size: 13px;
    line-height: 26px;
    margin-bottom: 10px !important;
}

footer .foot {
    padding: 20px 0;
}

footer .foot p {
    font-weight: 700;
}

footer .foot p a {
    font-size: 18px;
    color: #283762;
    text-decoration: none;
}

footer .foot .links {
    display: flex;
    justify-content: end;
}

footer .foot .links a {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
}

footer .foot .links a:after {
    content: "|";
    padding: 0 5px;
    color: #b5b5b5;
}

footer .foot .links a:last-child:after {
    content: "";
    padding: 0;
}


/* pages */

.head-section {
    background-color: #000;
    border-bottom: 2px solid #d7d7d7;
    padding: 20px;
    margin-bottom: 30px;
}

.text-section .container > .row {
    gap: 30px 0;
}

.text-section h1 {
    color: #fff;
    margin-bottom: 0 !important;
    padding-bottom: 0;
    text-align: start;
}

.text-section h1::before {
    display: none;
}

.text-section .parent-text {
    display: grid;
    gap: 40px 0;
}

.text-section .text-p h2 {
    margin-bottom: 0 !important;
    padding-bottom: 0;
    text-align: start;
}

.text-section .text-p h2::before {
    display: none;
}

.form-section h2.text {
    padding-bottom: 0;
    text-align: start;
}

.form-section h2.text::before {
    display: none;
}

.text-form-section h2::before {
    background-color: #eeeeee;
}

.text-section .text-p h3 {
    color: #000;
    font-size: 30px !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}


.text-section h6 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}

.text-section .text-p {
    text-align: start;
}

.text-section .text-p h4 {
    text-align: start;
    margin-bottom: 10px !important;
}

.text-section .text-p a {
    color: #211F1F
}

.text-section .text-p a:hover {
    color: #214092;
}

.text-section .text-p .custom-button {
    font-size: 15px;
    padding: 10px;
    color: #fff;
}

.text-section .text-p .custom-button:hover {
    color: #fff;
}

.text-section .text-p ul {
    padding-left: 0;
    margin-bottom: 0;
}

.text-section .text-p ul li {
    list-style: none;
    position: relative;
    padding-left: 18px;
}

.text-section .text-p ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -14px;
    font-size: 34px;
    color: black;
}

.text-section .text-p ul.blue-marker li::before {
    color: #283762;

}

.text-section .text-p ul li a {
    font-weight: 800;
    color: #214092;
}

.text-section .text-p ul li a:hover {
    color: #214092;
}

.text-section .right-now {
    margin-top: 30px;
}

.text-form-section h4 {
    line-height: 40px !important;
}

.text-form-section h4 a {
    color: #000;
    font-weight: 800;
    text-decoration: none;
}


.about-tony h2 {
    text-align: center;
    margin-bottom: 10px !important;
}

.about-tony h5 {
    font-size: 20px;
    text-align: center;
    line-height: 1.4em;
    margin-bottom: 30px;
}

.info-row {
    margin-top: 20px !important;
}

.info {
    padding: 10px 0;
    display: grid;
    gap: 10px;
}

.info div {
    margin-left: 20px;
}

.info div p {
    margin-left: 20px;
    font-size: 13px;
    line-height: 26px;
}

.info div p.bold {
    margin-left: 0;
    font-size: 14px;
    font-weight: 800;
}

.text-section .injury-row {
    margin-top: 30px;
    gap: 30px 0;
}

.text-section .injury-row h1 {
    color: #000;
}
.text-section .injury-row h2 {
    font-size: 24px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 32px !important;
}
.text-section .injury-row .text-p h4 {
    margin-bottom: 0 !important;
}

.text-section .gray-b {
    padding: 50px;
}

.text-section .black-b {
    padding: 50px;
}

.text-section .gray-b {
    background-color: #f5f5f5;
}

.text-section .black-b {
    background-color: #0a0a0a;
}

.text-section .white-b .text-p {
    max-width: 790px;
    margin: 0 auto;
}

.text-section .white-b .text-p h4 {
    text-align: center;
}
.text-section .white-b .text-p h2 {
    text-align: center;
}
.text-section .white-b .text-p p {
    text-align: center;
}

.text-section .white-b .text-p .custom-button {
    margin: 0 auto;
}

.text-section .white-b .text-p .list-black p .custom-button {
    margin: 10px 0 0;
}

.text-section .black-b .text-p h4 {
    color: #fff;
}
.text-section .black-b .text-p h2 {
    color: #fff;
}

.text-section .black-b .text-p p {
    color: #fff;
}

.text-section .black-b .text-p {
    max-width: 100%;
}

.text-section .gray-b .text-p {
    max-width: 100%;
}

.text-section .text-p .list-black {
    justify-content: center;
    gap: 30px 0;
}

.text-section .text-p .list-black h4 {
    text-align: left;
    margin-bottom: 15px !important;
}
.text-section .text-p .list-black h2 {
    text-align: left;
    margin-bottom: 15px !important;
}
.text-section .text-p .list-black p {
    text-align: left;
}

.text-section .text-p .list-black .list-li {
    position: relative;
    font-weight: 800;
    padding-left: 18px;
    margin-bottom: 10px !important;
}

.text-section .text-p .list-black .list-li.italic {
    font-style: italic;
    color: #283762;
}

.text-section .text-p .list-black .list-li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #283762;
}

.text-section .text-p .list-black .col-lg-12 .custom-button {
    margin-left: 0 !important;
}

.form-section .call-injury {
    margin-top: 20px;
}


.blog-div {
    display: grid;
    gap: 20px 0;
    margin-bottom: 50px;
}

.blog-div:last-child {
    margin-bottom: 0;
}


.blog-div > a {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.blog-div > a:hover {
    color: #000;
}

.blog-div p.span {
    padding: 15px 0;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.blog-div p span {
    display: inline;
    font-size: 13px;
    text-transform: capitalize;
    list-style: none;
    padding-right: 10px;
}

.blog-div p span:first-child:before {
    content: "";
    padding: 0;
}

.blog-div p span:before {
    content: "\f111";
    font-family: 'FontAwesome';
    font-size: 7px;
    padding: 0 10px 0 0;
    vertical-align: middle;
}

.blog-div a.custom-button {
    background: none;
    border: 1px solid #272727;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 2px;
}

.blog-div a.custom-button:hover {
    color: #fff;
    background-color: #283762;
    border-color: #283762;
}

.blog-posts h6 {
    color: #000;
    font-size: 16px;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 1px solid #283762;
}

.blog-posts {
    margin-bottom: 30px;
}

.blog-posts:last-child {
    margin-bottom: 0;
}

.blog-posts div {
    display: grid;
    gap: 10px;
}

.blog-posts a {
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
}

.blog-posts a:hover {
    color: #000;
}

.blog-div.text-p h1 {
    color: #000 !important;
}

.blog-div.text-p h2 {
    margin-top: 10px;
}

.blog-div.text-p h3 {
    margin-top: 10px;
    margin-bottom: 0 !important;
}

.blog-div.text-p a.custom-button {
    color: #fff;
    font-weight: 400;
    background-color: #283762;
    border-color: #283762;
    text-transform: capitalize;
    padding: 10px 25px;
}

.prev-next {
    display: flex;
    justify-content: space-between;
}

.prev-next a {
    border: 1px solid #272727;
    border-radius: 1px;
    color: #272727;
    display: inline-block;
    font-size: 14px;
    padding: 7px 12px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    text-transform: uppercase;
}

.prev-next a:hover {
    border: 1px solid #283762;
    color: #283762;
}

.service-pages {

}

@media screen and (min-width: 1400px) {
    .max-container {
        max-width: 1190px !important
    }
}

@media screen and (max-width: 1399px) {
    .custom-button.black {
        font-size: 22px;
    }
}

@media screen and (max-width: 1200px) {
    .header-menu nav .menu {
        gap: 0 24px;
    }

    .custom-button.black {
        font-size: 19px;
    }
}

@media screen and (max-width: 991px) {

    .header-menu {
        display: none;
    }

    .mobile-header-menu {
        display: block !important;
        height: 36px;
    }

    .menu-button-container {
        display: flex;
    }

    .mobile-menu {
        position: relative;
        height: fit-content;
        left: 0;
        max-width: 100%;
        z-index: 80;
        background-color: white;
        text-align: start;
        width: 100vw;
        box-shadow: -150px 0 0 0 white,
        10px 0 0 0 white;
        margin-bottom: 0;
    }


    #menu-toggle ~ .mobile-menu li {
        text-align: start;
        max-height: 0;
        overflow: hidden;
        padding: 0 8px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }


    #menu-toggle:checked ~ .mobile-menu li {
        max-height: 500px;
        /*padding: 8px;*/
    }

    #menu-toggle:checked ~ .mobile-menu {
        padding: 20px 0;
    }

    .mobile-menu > li {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    header .sub-menu {
        position: relative;
        top: 0;
        display: block;
        box-shadow: none;
        padding: 0;
    }


    header .nav-item a {
        padding: 6px 10px !important;
        display: block;
        width: 100%;
    }

    header .nav-item a:hover {
        color: white;
        background-color: #283762;
        width: 94%;
    }

    .buttons-row {
        gap: 20px 0;
    }

    .custom-button.black {
        font-size: 20px;
    }


    #review-slide .slick-arrow.slick-next {
        right: 41%;
    }

    #review-slide .slick-arrow.slick-prev {
        left: 41%;
    }

    .form-section .call {
        margin-top: 20px;
    }

    .footer-logo img {
        max-width: 80%;
    }

    .head .row {
        gap: 20px 0;
    }

    footer .foot .links {
        margin-top: 10px;
        justify-content: center;
    }

    /* pages */
    .text-section .container > .row {
        gap: 20px 0;
    }

    .tony-img {
        margin-bottom: 20px;
    }

    .injury-row > .order:nth-of-type(1) {
        order: 2;
    }

    .injury-row > .order:nth-of-type(2) {
        order: 1;
    }

    .injury-row > .order:nth-of-type(3) {
        order: 4;
    }

    .injury-row > .order:nth-of-type(4) {
        order: 3;
    }

    .injury-row > .order:nth-of-type(5) {
        order: 5;
    }

    .injury-row > .order:nth-of-type(6) {
        order: 6;
    }

    .injury-row > .order:nth-of-type(7) {
        order: 7;
    }

    .injury-row > .order:nth-of-type(8) {
        order: 8;
    }

    .injury-row > .order:nth-of-type(9) {
        order: 10;
    }

    .injury-row > .order:nth-of-type(10) {
        order: 9;
    }

    .injury-row > .order:nth-of-type(11) {
        order: 11;
    }

    .injury-row > .order:nth-of-type(12) {
        order: 12;
    }

    .injury-row > .order:nth-of-type(13) {
        order: 13;
    }

    .injury-row > .order:nth-of-type(14) {
        order: 14;
    }

    .injury-row > .order:nth-of-type(15) {
        order: 15;
    }

    .injury-row > .order:nth-of-type(16) {
        order: 16;
    }

    .injury-row > .order:nth-of-type(17) {
        order: 17;
    }

    .injury-row > .order:nth-of-type(18) {
        order: 18;
    }

    .injury-row > .order:nth-of-type(19) {
        order: 19;
    }

    .injury-row > .order:nth-of-type(20) {
        order: 20;
    }


    .services-pages .injury-row > .order:nth-of-type(1) {
        order: 1;
    }

    .services-pages .injury-row > .order:nth-of-type(2) {
        order: 2;
    }

    .services-pages .injury-row > .order:nth-of-type(3) {
        order: 3;
    }

    .services-pages .injury-row > .order:nth-of-type(4) {
        order: 4;
    }

    .services-pages .injury-row > .order:nth-of-type(5) {
        order: 5;
    }


    .services-pages  .injury-row > .order:nth-of-type(6) {
        order: 6;
    }

    .services-pages  .injury-row > .order:nth-of-type(7) {
        order: 7;
    }

    .services-pages  .injury-row > .order:nth-of-type(8) {
        order: 9;
    }

    .services-pages .injury-row > .order:nth-of-type(9) {
        order: 8;
    }

    .services-pages    .injury-row > .order:nth-of-type(10) {
        order: 10;
    }

    .services-pages  .injury-row > .order:nth-of-type(11) {
        order: 11;
    }

    .text-section .parent-text {
        gap: 20px 0;
    }

    .text-section .injury-row {
        gap: 15px 0;
    }

    .text-section .injury-row h1 {
        text-align: left;
    }

    .text-section .gray-b {
        padding: 30px 15px;
    }

    .text-section .black-b {
        padding: 30px 15px;
    }

    .text-section .white-b .text-p h4 {
        text-align: left;
    }

    .text-section .white-b .text-p p {
        text-align: left;
    }

    .text-section .white-b .text-p .custom-button {
        margin-left: 0;
    }

    .text-section .text-p .list-black {
        gap: 15px 0;
    }


}

@media screen and (max-width: 767px) {
    .right-now {
        display: block;
        align-items: center;
        text-align: center;
        padding: 20px 10px;
    }

    .right-now .custom-button {
        font-size: 15px;
        margin: 15px auto 0;
    }

    #review-slide .slick-arrow.slick-next {
        right: 39%;
    }

    #review-slide .slick-arrow.slick-prev {
        left: 39%;
    }

    .blog-posts:first-child {
        margin-top: 10px;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 30px !important;
        margin-bottom: 20px !important;
        padding-bottom: 20px;
    }

    h1::before {
        max-width: 190px;

    }

    h2 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
        padding-bottom: 20px;
    }

    h2::before {
        max-width: 190px;
    }

    h3 {
        font-size: 22px !important;
    }

    h4 {
        font-size: 20px !important;
    }

    header {
        height: 145px;
    }

    section {
        margin-bottom: 30px;
    }

    .social-icons-div {
        justify-content: center;
    }

    .head-phone {
        margin-top: 10px;
        justify-content: center;
    }

    #review-slide h5 {
        font-size: 14px;
        line-height: 25px;
    }

    /* pages */
    .text-section h1 {
        text-align: center;
    }

    .text-section .text-p h3 {
        font-size: 22px !important;
    }

    .blog-div {
        margin-bottom: 30px;
    }

    .blog-div:last-child {
        margin-bottom: 0;
    }

    .blog-div.text-p h1 {
        text-align: left;
    }
}


@media screen and (max-width: 500px) {
    #review-slide .slick-arrow.slick-next {
        right: 37%;
    }

    #review-slide .slick-arrow.slick-prev {
        left: 37%;
    }
}

@media screen and (max-width: 420px) {
    #review-slide .slick-arrow.slick-next {
        right: 34%;
    }

    #review-slide .slick-arrow.slick-prev {
        left: 34%;
    }

}


