@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');

/*General rules*/

/*Variables*/
:root {
    /*Font colors*/
    --black-f-color: #212526;
    --white-f-color: #ffffff;
    --gold-f-color: #f04f23;
    --grey-f-color: #f1f1f1;

    /*Background colors*/
    --black-bg-color: #212526;
    --white-bg-color: #ffffff;
    --gold-bg-color: #f04f23;
    --grey-bg-color: #f1f1f1;

    /*Border colors*/
    --black-b-color: #000000;
    --white-b-color: #ffffff;
    --gold-b-color: #f04f23;

    /*Button hover*/
    --brow-btn-bg-hover: #d9471f;

    /*Font weight*/
    --light-font-weight: 300;
    --regular-font-weight: 400;
    --semi-bold-font-weight: 600;
    --bold-font-weight: 700;
    --extra-bold-font-weight: 800;
}

html,
body {
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: var(--regular-font-weight);
}

/*Headings*/
h1 {
    font-size: 55px;
    line-height: 66px;
}

h2 {
    font-size: 45px;
    line-height: 54px;
}

h3 {
    font-size: 40px;
    line-height: 48px;
    font-weight: var(--bold-font-weight);
}

h4 {
    font-size: 28px;
    line-height: 40px;
    font-weight: var(--light-font-weight);
}

h5 {
    font-size: 28px;
    line-height: 34px;
    font-weight: var(--semi-bold-font-weight);
}

h6 {
    font-size: 22px;
    line-height: 26px;
    font-weight: var(--bold-font-weight);
}

/*H2 headings*/
.c-h2-v1 {
    position: relative;
    color: var(--black-f-color);
    text-align: center;
}

.c-h2-v1:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
}

.c-h2-v2 {
    position: relative;
    color: var(--white-f-color);
    text-align: center;
}

.c-h2-v2:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
}

/*H5 headings*/
.c-h5-v1 {
    color: var(--black-f-color);
    position: relative;
}

.c-h5-v1:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 0%;
    bottom: -30px;
}

.c-h5-v1.c-h5-v1-nowrap {
    white-space: nowrap;
}

.c-h5-v2 {
    color: var(--white-f-color);
    position: relative;
}

.c-h5-v2:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--white-bg-color);
    left: 0%;
    bottom: -30px;
}

.c-h5-v3 {
    color: var(--gold-f-color);
    position: relative;
}

.c-h5-v3:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
}

.c-h5-v3-line-center {
    color: var(--black-f-color);
    position: relative;
}

.c-h5-v3-line-center:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
}

.c-h5-v4 {
    color: var(--black-f-color);
    position: relative;
}

.c-h5-v4:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
}

.c-h5-v5 {
    color: var(--gold-f-color);
    position: relative;
}

.c-h5-v5:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 0%;
    bottom: -30px;
}

.c-h5-v5-line-center {
    color: var(--gold-f-color);
    position: relative;
}

.c-h5-v5-line-center:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
}

/*H6 headings*/
.c-h6-v1 {
    color: var(--gold-f-color);
    position: relative;
}

/*Sections*/
.c-section {
    color: #000000;
}

.c-section-grey-bg {
    background: var(--grey-bg-color);
}

.c-section-dark-bg {
    background: var(--black-bg-color);
}

/*Paragraphs*/
p.c-p-v1 {
    font-size: 22px;
    line-height: 28px;
}

p.c-p-v2 {
    font-size: 18px;
    line-height: 28px;
    font-weight: var(--semi-bold-font-weight) !important;
}

p.c-p-v3 {
    font-size: 16px;
    line-height: 22px;
}

p.c-p-v4 {
    font-size: 14px;
    line-height: 26px;
}

/*Font-sizes*/
.c-f-10 {
    font-size: 10px;
}

.c-f-12 {
    font-size: 12px;
}

.c-f-14 {
    font-size: 14px;
}

.c-f-18 {
    font-size: 18px;
}

.c-f-20 {
    font-size: 20px;
}

/*Colors*/
.c-gold-color {
    color: var(--gold-f-color);
}

.c-black-color {
    color: var(--black-f-color);
}

.c-white-color {
    color: var(--white-f-color);
}

.c-grey-color {
    color: var(--grey-f-color);
}

/*Margin*/
.c-mr-20 {
    margin-right: 20px;
}

.c-mr-22 {
    margin-right: 22px;
}

.c-mr-24 {
    margin-right: 24px;
}

.c-mr-26 {
    margin-right: 26px;
}

.c-mr-28 {
    margin-right: 28px;
}

.c-mr-30 {
    margin-right: 30px;
}

/*Margin left*/
.c-ml-50 {
    margin-left: 50px;
}

/*Margin top bottom*/
.c-m-t-b-10 {
    margin: 10px 0px;
}

.c-m-t-b-20 {
    margin: 20px 0px;
}

.c-m-t-b-30 {
    margin: 30px 0px;
}

.c-m-t-b-40 {
    margin: 40px 0px;
}

.c-m-t-b-50 {
    margin: 50px 0px;
}

.c-m-t-b-60 {
    margin: 60px 0px;
}

.c-m-t-b-70 {
    margin: 70px 0px;
}

.c-m-t-b-80 {
    margin: 80px 0px;
}

.c-m-t-b-90 {
    margin: 90px 0px;
}

.c-m-t-b-100 {
    margin: 100px 0px;
}

/*Margin top*/
.c-mt-20 {
    margin-top: 20px;
}

.c-mt-30 {
    margin-top: 30px;
}

.c-mt-40 {
    margin-top: 40px;
}

.c-mt-50 {
    margin-top: 50px;
}

.c-mt-60 {
    margin-top: 60px;
}

.c-mt-70 {
    margin-top: 70px;
}

.c-mt-80 {
    margin-top: 80px;
}

.c-mt-90 {
    margin-top: 90px;
}

.c-mt-100 {
    margin-top: 100px;
}

/*Margin bottom*/
.c-mb-10 {
    margin-bottom: 10px;
}

.c-mb-20 {
    margin-bottom: 20px;
}

.c-mb-30 {
    margin-bottom: 30px;
}

.c-mb-40 {
    margin-bottom: 40px;
}

.c-mb-50 {
    margin-bottom: 50px;
}

.c-mb-60 {
    margin-bottom: 60px;
}

.c-mb-70 {
    margin-bottom: 70px;
}

.c-mb-80 {
    margin-bottom: 80px;
}

.c-mb-90 {
    margin-bottom: 90px;
}

.c-mb-100 {
    margin-bottom: 100px;
}

/*Padding*/

/*Padding top and bottom*/
.c-p-t-b-10 {
    padding: 10px 0px;
}

.c-p-t-b-20 {
    padding: 20px 0px;
}

.c-p-t-b-30 {
    padding: 30px 0px;
}

.c-p-t-b-40 {
    padding: 40px 0px;
}

.c-p-t-b-50 {
    padding: 50px 0px;
}

.c-p-t-b-60 {
    padding: 60px 0px;
}

.c-p-t-b-70 {
    padding: 70px 0px;
}

.c-p-t-b-80 {
    padding: 80px 0px;
}

.c-p-t-b-90 {
    padding: 90px 0px;
}

.c-p-t-b-100 {
    padding: 100px 0px;
}

/*Padding top*/
.c-pt-10 {
    padding-top: 10px;
}

.c-pt-20 {
    padding-top: 20px;
}

.c-pt-30 {
    padding-top: 30px;
}

.c-pt-40 {
    padding-top: 40px;
}

.c-pt-50 {
    padding-top: 50px;
}

.c-pt-60 {
    padding-top: 60px;
}

.c-pt-70 {
    padding-top: 70px;
}

.c-pt-80 {
    padding-top: 80px;
}

.c-pt-90 {
    padding-top: 90px;
}

.c-pt-100 {
    padding-top: 100px;
}

/*Padding bottom*/
.c-pb-10 {
    padding-bottom: 10px;
}

.c-pb-20 {
    padding-bottom: 20px;
}

.c-pb-30 {
    padding-bottom: 30px;
}

.c-pb-40 {
    padding-bottom: 40px;
}

.c-pb-50 {
    padding-bottom: 50px;
}

.c-pb-60 {
    padding-bottom: 60px;
}

.c-pb-70 {
    padding-bottom: 70px;
}

.c-pb-80 {
    padding-bottom: 80px;
}

.c-pb-90 {
    padding-bottom: 90px;
}

.c-pb-100 {
    padding-bottom: 100px;
}

/*Text align*/
.c-text-center {
    text-align: center;
}

/*Buttons*/
.c-btn-v1 {
    display: inline-block;
    width: 220px;
    height: 65px;
    font-size: 18px;
    color: var(--white-f-color);
    font-weight: var(--semi-bold-font-weight);
    background: var(--gold-bg-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.c-btn-v1:hover {
    text-decoration: none;
    color: var(--white-f-color);
    background: #d9471f;
}

.c-btn-v2 {
    display: inline-block;
    width: 220px;
    height: 65px;
    font-size: 18px;
    color: var(--white-f-color);
    border: 1px solid var(--white-b-color);
    font-weight: var(--semi-bold-font-weight);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    background: transparent;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.c-btn-v2:hover {
    opacity: .6;
    text-decoration: none;
    color: var(--white-f-color);
    background: #d9471f;
}

.c-btn-v3 {
    display: inline-block;
    width: 150px;
    height: 50px;
    font-size: 16px;
    color: var(--gold-f-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--gold-b-color);
    text-decoration: none;
    background: transparent;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.c-btn-v3:hover {
    opacity: 6;
    text-decoration: none;
    color: #ffffff;
    background: var(--gold-bg-color);
}

button {
    border: 0px;
}

/*End of general rules*/

/*Scroll to top btn*/
.scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #000000;
    color: #ffffff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 10;
    cursor: pointer;
}

.scrollToTop:hover {
    background: #5c5c5c;
}

/*Top navigation*/
.c-top-nav {
    position: relative;
    width: 100%;
    padding: 5px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--black-bg-color);
}

/*Left side*/
.c-left-ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: 10px
}

.c-left-info ul li {
    margin-right: 20px;
}

.c-left-info ul li a {
    color: var(--white-f-color)
}

.c-left-info ul li a:hover {
    text-decoration: none;
}

.c-left-info ul li a i {
    color: var(--gold-f-color);
}

/*Right side*/
.c-right-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
}

.c-social-icon-bg {
    background: url("../images/footer/social-icon-bg.svg") center center;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    position: relative;
}

.c-social-icon-v1 {
    position: absolute;
    color: red;
    left: 50%;
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    padding: 0px;
    margin: 0px;
    font-size: 12px;
    color: var(--gold-f-color);
}

/*Hamburger icon*/
.c-burger-container {
    width: 35px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    /*    Change this to show icon*/
    display: none;
}

.c-burger-container div {
    width: 100%;
    height: 3px;
    background: #ffffff;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.c-burger-container.active div:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(6px, 5px);
    transform: rotate(45deg) translate(6px, 5px);
}

.c-burger-container.active div:nth-child(2) {
    opacity: 0;
}

.c-burger-container.active div:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(10px, -10px);
    transform: rotate(-45deg) translate(10px, -10px);
}

/*Main navigation*/
.c-main-nav-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    padding-top: 10px;
    z-index: 10;
}

/*Toggle main nav on mobile devices*/
.c-main-nav.c-nav-active {
    display: none;
}

.c-main-nav-container img {
    width: 600px;
}

.c-main-ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: 30px 0px;
    list-style: none;
}

.c-main-ul:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 3px;
    background: var(--gold-bg-color)
}

.c-main-ul:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 3px;
    background: var(--gold-bg-color)
}

.c-main-ul li {
    margin-right: 20px;
}

.c-main-ul li a {
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    padding: 20px 0px;
}

/*Dropdown menu*/
.c-dropdown {
    position: relative;
}

.c-dropdown ul {
    position: absolute;
    padding-left: 0px;
    list-style: none;
    min-width: 300px;
    padding: 20x 0px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
    margin-top: -3px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.c-dropdown:hover ul {
    display: block;
}

.c-dropdown ul li {
    width: 100%;
}

.c-dropdown ul li a {
    display: block;
    font-size: 16px;
    padding: 10px;
    margin-top: 10px;
}

/*Homepage*/

/*Slider*/

/*Homepage main slider*/

#c-owl-main-slider .item1 {
    position: relative !important;
}

#c-owl-main-slider .item1 img {
    display: block;
    width: 100%;
    height: auto;
}

#c-owl-main-slider .c-slide-content {
    position: absolute;
    opacity: 1;
    width: 100%;
    height: 100%;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

#c-owl-main-slider .c-slide-content h1,
#c-owl-main-slider .c-slide-content h2 {
    text-align: center;
    margin: 50px 0px;
    color: var(--white-f-color);
    max-width: 30%;
    font-size: 55px;
    line-height: 66px;
}

#c-owl-main-slider .c-slide-content p {
    text-align: center;
    color: var(--white-f-color);
}

#c-owl-main-slider .c-slide-content a {
    color: var(--white-f-color);
    position: relative;
    z-index: 20;
}

/*Homepage slider buttons*/
#c-owl-main-slider .owl-prev {
    position: absolute;
    font-size: 25px;
    left: 7%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #ffffff;
    padding: 10px !important;
}

#c-owl-main-slider .owl-next {
    position: absolute;
    font-size: 25px;
    right: 7%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #ffffff;
    padding: 10px !important;
}

#c-owl-main-slider .owl-next:focus {
    outline: none;
}

#c-owl-main-slider .owl-prev:focus {
    outline: none;
}

/*Homepage slider custom bullet points*/
#c-owl-main-slider .owl-dots {
    margin-top: 10px;
    position: absolute;
    top: 75%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 175px;
}

#c-owl-main-slider.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    margin-right: 30px;
}

#c-owl-main-slider.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    background: #D6D6D6;
    display: block;
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    border-radius: 30px;
    position: absolute;
    margin-right: 70px;
    background: url("../images/homepage/bullet-empty.svg");
}

#c-owl-main-slider.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: url("../images/homepage/bullet-full.svg");
}

/*Homepage services*/
.c-homepage-our-services {
    position: relative;
    background: url("../images/static/home/footer-main-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.c-homepage-our-services svg {
    height: 50px;
}

.c-homepage-our-services p {
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
    /*added after wordpress configuration*/
    padding: 0px 20px !important;
}

/*Homepage parallax*/
.c-homepage-parallax-bg {
    background: url("https://www.fairfaxyeaman.com/wp-content/uploads/2020/02/ffy_homepage_usp_parallax-overlay.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 580px;
}

.c-homepage-parallax-container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.c-homepage-parallax-container .c-homepage-parallax-content {
    margin-right: 7%;
    text-align: center;
    position: relative;
}

.c-homepage-parallax-year-symbol {
    position: absolute;
    font-size: 40px;
    right: 8px;
    top: 43%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: bold;
}

.c-homepage-parallax-payslips-symbol {
    position: absolute;
    font-size: 50px;
    right: -30px;
    top: 48%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: bold;
}

.c-homepage-parallax-payrolled-icon {
    position: absolute;
    font-size: 40px;
    right: -30px;
    top: 48%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: bold;
}

.c-homepage-parallax-content-top {
    font-size: 85px;
    font-weight: bold;
}

.c-homepage-parallax-content-top span {
    font-size: 30px;
}

.c-homepage-parallax-content-bottom {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    bottom: 10px;
}

/*Homepage welcome section*/
.c-homepage-welcome-section {
    color: #000000;
}

.c-homepage-welcome-section .c-welcome-section-btn {
    width: 100%;
}

.c-homepage-welcome-section .c-welcome-section-btn a {
    margin: 0 auto;
}

/*Homepage our team section*/
.c-homepage-our-team-bg {
    background: rgb(47, 52, 54);
    background: -webkit-gradient(linear, left top, right top, from(rgba(47, 52, 54, 1)), to(rgba(33, 37, 38, 1)));
    background: linear-gradient(90deg, rgba(47, 52, 54, 1) 0%, rgba(33, 37, 38, 1) 100%);
}

.c-our-team-member-container {
    margin-right: 20px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/*.c-our-team-member-container:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background: url("../images/homepage/homepage-team-hover-background.png");*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center center;*/
/*    width: 100%;*/
/*    height: 300px;*/
/*    top: -1px;*/
/*    left: 0px;*/
/*    opacity: 0;*/
/*    -webkit-transition: all .3s ease-in-out;*/
/*    transition: all .3s ease-in-out;*/
/*}*/

.c-homepage-our-team-link:hover {
    text-decoration: none;
}

.c-our-team-member-container:hover:before,
.c-our-team-member-container:hover .c-homepage-team-info p {
    opacity: 1;
}

.c-our-team-member-container .c-homepage-team-name,
.c-our-team-member-container .c-homepage-team-role {
    text-align: center;
}

.c-our-team-member-container .c-homepage-team-name {
    color: var(--gold-f-color);
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px
}

.c-our-team-member-container .c-homepage-team-role {
    color: #989898;
    font-weight: 100;
    font-size: 16px;
    line-height: 20px;
    height: 50px;
}

.c-homepage-team-info {
    /*    position: relative;*/
    top: 25%;
    text-align: center;
    font-size: 12px;
    padding: 3px 5px;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.c-homepage-team-info p {
    color: var(--black-f-color);
    position: absolute;
    font-size: 14px;
    left: 0;
    bottom: 200px;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.c-homepage-our-team-link-button {
    width: 150px;
    height: 40px;
    border: 1px solid #ffffff;
    display: inline-block;
    line-height: 40px;
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    top: 0px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -200%);
    transform: translate(-50%, -200%);
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.c-homepage-our-team-link-button:hover {
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.c-our-team-member-container:hover .c-homepage-our-team-link-button {
    opacity: 1;
}


/*Homepage payroll section*/

.c-homepage-payroll-content {
    height: 100%;
    color: var(--black-f-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-homepage-payroll-content p {
    font-size: 16px;
    margin: 30px 0px
}

.c-homepage-payroll-content-right {
    height: 100%;
    color: var(--black-f-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.c-homepage-payroll-content-right p {
    text-align: right;
    font-size: 16px;
    margin: 30px 0px
}

/*About Us*/
.c-header-page-main-container.c-about-us-bg {
    /*    background: url("https://dev.converticomedia.com/projects/fairfax/wp-content/uploads/2019/12/about-us-bg.jpg");*/
    /*    background: url("../images/about-us/about-us-bg.jpg");*/
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-about-us-section1 {
    padding: 100px 60px;
}

.c-about-us-gold-bg {
    background: var(--gold-bg-color);
}

.c-testimonials-section {
    background: rgb(33, 37, 38);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(70%, rgba(33, 37, 38, 1)), to(rgba(67, 74, 77, 1)));
    background: linear-gradient(0deg, rgba(33, 37, 38, 1) 70%, rgba(67, 74, 77, 1) 100%);
    height: 800px;
    position: relative;
}

.c-testimonials-big-quotes {
    background: url("../images/about-us/big-quotes.svg");
    width: 500px;
    height: 500px;
    position: absolute;
    background-repeat: no-repeat;
    right: 50px;
    top: 180px
}

.c-about-us-small-quotes {
    width: 10%;
    margin: 50px 0px;
}

.c-testimonial-middle-content p {
    font-weight: 100;
    min-height: 85px;
    line-height: 26px;
}

p.c-testimonials-bottom-p {
    position: relative;
    margin-top: 150px;
    font-weight: var(--semi-bold-font-weight);
}

.c-testimonials-bottom-p:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 0%;
    top: -30px;
}

.c-testimonial-extra-bg {
    background: #212526;
    position: absolute;
    bottom: -300px;
    height: 300px;
    width: 100%;
}

/*Services*/

/*Services splash page*/

/*Services icons*/
.c-services-page-our-services-links {
    position: relative;
    background: url("http://fairfax.local/wp-content/uploads/2019/12/services-main-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.c-services-page-our-services-links svg {
    height: 50px;
}

.c-services-page-our-services-links p {
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
}

.c-services-page-our-services-links a {
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
    color: var(--white-f-color);
}

.c-services-page-our-services-links a:hover {
    text-decoration: none;
    color: var(--white-f-color);
}

.c-services-main-container {
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-header-page-main-container.c-our-services-bg {
    background: url("../images/our-services/our-services-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-services-main-container.c-accounting-services-bg {
    background: url("../images/accounting/services-accounting-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-services-main-container.c-hr-services-bg {
    background: url("../images/hr/services-hr-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-services-main-container.c-international-services-bg {
    background: url("../images/international/services-international-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-services-main-container.c-payroll-services-bg {
    background: url("../images/payroll/services-payroll-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

/*Services payroll page*/

.c-payroll-page-container h5 {
    color: var(--gold-f-color);
    min-height: 100px;
}

.c-payroll-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 15px;
}

.c-payroll-info i {
    color: var(--gold-f-color);
    margin-right: 20px;
    margin-top: 5px;
}

.c-payroll-info li a {
    color: var(--white-f-color);
}

.c-payroll-info li a:hover {
    text-decoration: none;
}

.c-social-icon-bg-v2 {
    background: url("../images/payroll/payroll-icon-bg.svg") center center;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    position: relative;
    bottom: 10px;
    right: 10px;
}

.c-social-icon-v2 {
    position: absolute;
    color: red;
    left: 50%;
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    padding: 0px;
    margin: 0px;
    font-size: 20px;
    color: var(--gold-f-color);
}

.c-payroll-page-last-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.c-payroll-page-last-section-right h5 {
    color: var(--gold-bg-color);
    font-weight: bold;
}

.c-payroll-page-last-section-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 15px;
}

.c-payroll-page-last-section-info img {
    width: 12px !important;
    height: 14px !important;
}

.c-payroll-page-last-section-info p {
    font-size: 14px;
    line-height: 18px;
    position: relative;
    left: 5px;
    margin-bottom: 0px;
}

/*Service pages*/

/*Services HR page*/
.c-hr-page-sub-title {
    margin: 60px 0px;
}

.c-hr-page-p {
    color: var(--black-f-color);
}

.c-hr-page-p:last-child {
    margin-bottom: 60px;
}

.c-hr-page-p-thin {
    font-size: 14px;
    font-weight: 100;
    line-height: 24px;
}

.c-hr-page-p-thin span {
    font-weight: 600;
    font-size: 14px;
}

.c-hr-page-our-services-p {
    color: var(--black-f-color);
    margin: 50px 0px;
}

.c-hr-page-ul {
    list-style: none;
    padding-left: 0px;
    margin: 30px 0px;
}

.c-hr-page-ul li {
    color: var(--black-f-color);
    margin-top: 8px;
}

.c-hr-page-ul li i {
    color: var(--gold-f-color);
    margin-right: 10px;
}

/*Services international page*/
.c-si-page-ul {
    list-style: none;
    padding-left: 0px;
    /*    margin: 30px 0px;*/
    margin: 0px 0px;
}

.c-si-page-ul li {
    color: var(--black-f-color);
    margin-top: 8px;
}

.c-si-page-ul li i {
    color: var(--gold-f-color);
    margin-right: 10px;
}

.c-international-page-p-thin {
    font-size: 14px;
    font-weight: 100;
    line-height: 24px;
}

.c-hr-page-p-thin span {
    font-weight: 600;
    font-size: 14px;
}

/*General pages header*/
.c-header-page-main-container {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    background-position: center center;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-header-page-title h1 {
    position: relative;
    font-size: 40px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    color: var(--white-f-color);
}

.c-header-page-title h1:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background: var(--gold-bg-color);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -20px;
}

.c-header-page-content-container {
    width: 100%;
    position: absolute;
    bottom: 0px;
}

.c-header-page-content {
    width: 60%;
    margin: 0 auto;
    color: var(--white-f-color);
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-bottom: 100px;
    text-align: center;
    /*    font-size: 22px;*/
    font-size: 1.4vw;
}

/*Services*/

.c-services-title {
    max-width: 30%;
}

.c-services-title h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    color: #ffffff;
}

.c-services-menu-full {
    width: 100%;
    position: absolute;
    /*    bottom: -18px;*/
    bottom: 0px;
}

.c-services-nav {
    width: 100%;
    background: rgba(240, 79, 35, 0.7);
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.c-services-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0px;
    list-style: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-services-nav ul li {
    text-align: center;
    margin-right: 0px;
    width: 300px;
    padding: 20px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.c-services-nav ul li:hover {
    background: var(--black-bg-color);
}

.c-services-nav ul li:hover p {
    color: var(--gold-f-color);
}

.c-services-nav ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    width: 100%;
    font-size: 16px;
}

.c-services-menu-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.c-services-nav ul li:hover .c-services-menu-icon path,
.c-services-nav ul li:hover .c-services-menu-icon rect,
.c-services-nav ul li:hover .c-services-menu-icon polygon {
    fill: var(--gold-f-color) !important;
}

.c-services-link p {
    font-weight: 600;
    line-height: 20px;
}

/*Contact Us Page*/

.c-header-page-main-container.c-contact-us-bg {
    background: url("../images/contact-us/contact-us-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-contact-page-info-top {
    font-size: 18px;
    font-weight: 100;
    line-height: 28px;
}

.c-contact-page-info-bottom {
    font-size: 14px;
}

/*Contact form 7 css*/

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    padding: 30px 20px;
    border: 1px solid var(--gold-f-color);
    border-radius: 0px;
    width: 100%;
    padding: 20px 20px;
}

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:focus,
.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required:focus {
    outline: 0px;
}

.wpcf7 .wpcf7-form textarea {
    height: 100px;
    border: 1px solid var(--gold-f-color);
}

.wpcf7-form-control.wpcf7-submit {
    margin-top: 30px;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #000 !important;
    opacity: 1;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #000 !important;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #000 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #000 !important;
    opacity: 1;
}

select {
    border-radius: 0px;
    width: 100%;
    padding: 20px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background: #ffffff;
    border: 1px solid var(--gold-b-color);
}

.contactgold::-webkit-input-placeholder {
    color: var(--gold-f-color) !important;
}

.wpcf7-form-control.wpcf7-submit {
    display: inline-block;
    width: 220px;
    height: 65px;
    font-size: 18px;
    color: var(--white-f-color);
    font-weight: var(--semi-bold-font-weight);
    margin: 20px auto;
    background: var(--gold-bg-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    border: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.wpcf7-form-control.wpcf7-submit:hover {
    text-decoration: none;
    color: var(--white-f-color);
    background: #d9471f;
}

.c-contact-page-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 15px;
}

.c-contact-page-info i {
    color: var(--gold-f-color);
    font-size: 18px;
}

.c-contact-page-info li {
    font-weight: 600;
    font-size: 16px;
}

.c-contact-page-info li a {
    color: var(--black-f-color)
}

.c-contact-page-info li a:hover {
    text-decoration: none;
}

/*Blog Page*/
.c-header-page-main-container.c-blog-bg {
    background: url("../images/blog/blog-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-blog-page-separator {
    border-bottom: 1px solid var(--gold-bg-color);
}

p.c-blog-page-date {
    font-weight: bold;
    font-size: 15px;
    color: var(--gold-f-color);
}

.c-blog-page-year {
    font-weight: 100;
    font-size: 22px;
    color: var(--gold-f-color);
    position: relative;
    bottom: 20px
}

.c-blog-page-title {
    position: relative;
    bottom: 20px;
    font-size: 24px;
}

a.c-blog-page-read-more,
a.c-blog-page-read-more i {
    color: var(--gold-f-color);
    font-size: 16px;
}

a.c-blog-page-read-more:hover {
    text-decoration: none;
}

.c-blog-page-pagination-container {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}

.c-blog-page-pagination-container a.prev {
    margin-right: 5%;
}

.c-blog-page-pagination-container a.next {
    margin-left: 5%;
}

.c-blog-page-pagination-container .page-numbers {
    margin: 0px 5px;
}

.c-blog-page-pagination-container span {
    background: url("../images/static/home/footer-main-icon.svg");
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    background-position: center center;
    background-size: cover;
    display: inline-block;
    text-align: center;
    color: #ffffff;
}

/*Pagination*/

.c-blog-page-pagination-container a.prev,
.c-blog-page-pagination-container a.next {
    display: inline-block;
    width: 150px;
    height: 50px;
    font-size: 16px;
    color: var(--gold-f-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--gold-b-color);
    text-decoration: none;
    background: transparent;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.c-blog-page-pagination-container a.prev:hover,
.c-blog-page-pagination-container a.next:hover {
    opacity: 6;
    text-decoration: none;
    color: #ffffff;
    background: var(--gold-bg-color);
}

.c-blog-page-pagination-container .page-numbers {
    color: var(--black-f-color);
}

.c-blog-page-pagination-container .page-numbers.current {
    color: var(--white-f-color);
    background: url("../images/blog/blog-active-bullet-point.svg");
    background-position: center center;
    background-repeat: no-repeat;
}

/*Blog single page*/

.c-blog-single-page-btn-container {
    width: 100%;
}

.c-blog-single-page-return-btn {
    display: inline-block;
    color: var(--gold-f-color);
    font-weight: bold;
    font-size: 16px;
}

.c-blog-single-page-return-btn:hover {
    text-decoration: none;
    color: var(--gold-f-color)
}

.c-blog-single-social-icons-container a img {
    width: 50px;
}

/*Blog social icons*/
.c-social-media-icons-container {}

/*Payroll timeline*/

.c-h5-timeline-title {
    color: var(--black-f-color);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*
.c-h5-timeline-title:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 0%;
    bottom: -30px;
}
*/

/*
.c-h5-timeline-title:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 63px;
    left: -250px;
}
*/

/*
.c-payroll-timeline:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 270px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 197px;
    left: -384px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
*/

/*
.c-payroll-timeline#c-payroll-timeline-extended:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 300px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 213px;
    left: -399px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
*/

/*
.c-payroll-timeline#c-payroll-timeline-extended:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 1200px;
    height: 1px;
    background: var(--gold-bg-color);
    bottom: -330px;
    left: -250px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
*/

.c-extend-icon {
    content: "";
    position: absolute;
    display: inline-block;
    background: red;
    width: 50px;
    height: 50px;
    left: -35px;
    /*    top: 52px;*/
    background: url("../images/payroll/payroll-timeline-icon.svg");
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}

/*Accounting timeline*/

.c-h5-timeline-title-v2 {
    color: var(--black-f-color);
    position: relative;
}

/*
.c-h5-timeline-title-v2:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 0%;
    bottom: -30px;
}
*/

.c-h5-timeline-title-v2 {
    position: relative;
}

/*
.c-h5-timeline-title-v2:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 63px;
    left: -250px;
}
*/

/*
.c-accounting-timeline-line:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 530px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 329px;
    left: -515px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
*/

.c-accounting-extend-icon,
.c-accounting-extend-icon-v2,
.c-accounting-extend-icon-v3 {
    content: "";
    position: absolute;
    display: inline-block;
    left: -42px;
    top: 4px;
    background: url("../images/accounting/accounting-timeline-icon.svg");
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}

/*
.c-accounting-extend-icon:before {
    content: "1";
    position: relative;
    font-size: 16px;
    bottom: 3px;
    left: 15px;
    color: var(--gold-f-color);
}

.c-accounting-extend-icon-v2:before {
    content: "2";
    position: relative;
    font-size: 16px;
    bottom: 3px;
    left: 15px;
    color: var(--gold-f-color);
}

.c-accounting-extend-icon-v3:before {
    content: "3";
    position: relative;
    font-size: 16px;
    bottom: 3px;
    left: 15px;
    color: var(--gold-f-color);
}
*/

/*Bullet points*/

.c-accounting-page-bullet-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 15px;
}

.c-accounting-page-bullet-points i {
    position: relative;
    margin-right: 12px;
    font-size: 14px;
    top: 6px;
    color: var(--gold-f-color);
}

.c-accounting-page-bullet-points li a {
    color: var(--white-f-color)
}

.c-accounting-page-bullet-points li a:hover {
    text-decoration: none;
}

/*Timeline v3*/

.c-h5-timeline-title-v3 {
    color: var(--black-f-color);
    position: relative;
}

/*
.c-h5-timeline-title-v3:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 0%;
    bottom: -30px;
}
*/

/*
.c-h5-timeline-title-v3:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 63px;
    left: -250px;
}
*/

/*
.c-accounting-timeline-line-v3:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 450px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 288px;
    left: -475px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
*/

/*Timeline v4*/

.c-h5-timeline-title-v4 {
    color: var(--black-f-color);
    position: relative;
}

/*
.c-h5-timeline-title-v4:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    left: 0%;
    bottom: -30px;
}
*/

/*
.c-h5-timeline-title-v4:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 63px;
    left: -250px;
}
*/

.c-accounting-timeline-line-v4:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0px;
    height: 1px;
    background: var(--gold-bg-color);
    top: 288px;
    left: -475px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.bullet-points ul {
    padding: 0;
    float: left;
    width: 100%;
    margin: 20px 0 30px;
}

.bullet-points ul li {
    list-style: none;
    font-size: 14px;
    line-height: 22px;
    list-style-position: inside;
    padding: 0px 0px 10px 25px;
    text-indent: -25px;
    color: var(--black-f-color);
    color: #494E54;
}

.bullet-points ul li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 16px;
    line-height: 7px;
    position: relative;
    color: var(--gold-f-color);
    top: -2px;
    margin: 0px 10px 0px 0px;
}

/*Homepage services section*/
/*Homepage services section*/
/*Homepage services section*/

.c-homepage-services-link:hover {
    text-decoration: none;
}

.c-homepage-services-icon {
    /*    width:20% !important;*/
    width: 40px !important;
    margin-bottom: 20px;
}

.main-content {
    display: none;
}

.services-link:hover .main-content {
    display: block;
}

/*Owl carousel customizations*/
/*Owl carousel customizations*/
/*Owl carousel customizations*/


/*Services carousel*/
/* #carousel-one .owl-prev {
    position: absolute;
    font-size: 80px;
    left: -130px;
    top: 53px;
    color: #000000;
}

#carousel-one .owl-next {
    position: absolute;
    font-size: 80px;
    right: -130px;
    top: 53px;
    color: #000000;
}

#carousel-one .owl-dots {
    display: none;
} */

/*Our team carousel*/
#carousel-two .owl-prev {
    position: absolute;
    font-size: 80px;
    left: -130px;
    top: 53px;
    color: #ffffff;
}

#carousel-two .owl-next {
    position: absolute;
    font-size: 80px;
    right: -130px;
    top: 53px;
    color: #ffffff;
}

#carousel-two .owl-dots {
    display: none;
}

/*Testimonials carousel*/
#carousel-three .owl-prev {
    position: absolute;
    font-size: 80px;
    left: -130px;
    top: 53px;
    color: #ffffff;
}

#carousel-three .owl-next {
    position: absolute;
    font-size: 80px;
    right: -170px;
    top: 53px;
    color: #ffffff;
}

#carousel-three .owl-prev:hover,
#carousel-three .owl-next:hover {
    background: transparent;
}

#carousel-three .owl-prev:focus,
#carousel-three .owl-next:focus {
    outline: 0px;
}

#carousel-three .owl-dots {
    display: none;
}

/*Services sub pages navigation menu*/

.c-services-nav-v1 {
    width: 100%;
    width: 100%;
}

.c-services-nav-v1 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0px;
    list-style: none;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    height: 100%;
}

.c-services-nav-v1 ul .item {
    width: 100%;
}

.c-services-nav-v1 ul li {
    text-align: center;
    margin-right: 0px;
    width: 300px;
    padding: 25px;
    width: 100%;
    height: 100%;
    padding-top: 35px;
    background: rgba(240, 79, 35, 0.7);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.c-services-nav-v1 ul li:hover {
    background: transparent;
}

.c-services-nav-v1 ul li:hover p {
    color: var(--gold-f-color);
}

.c-services-nav-v1 ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    width: 100%;
    font-size: 16px;
}

.c-homepage-our-services-v1 svg {
    height: 50px;
}

.c-homepage-our-services-v1 p {
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
    padding: 0px 20px !important;
}

.c-homepage-services-icon-v1 {
    width: 40px !important;
    margin: 0px auto;
}

/*Services sub pages navigation menu*/

#carousel-services-navigation-menu {
    margin-bottom: -26px;
}

#carousel-services-navigation-menu li {
    min-height: 160px;
}

/*Buttons*/
#carousel-services-navigation-menu .owl-prev {
    position: absolute;
    font-size: 50px;
    left: -130px;
    top: 30px;
    color: #ffffff;
}

#carousel-services-navigation-menu .owl-next {
    position: absolute;
    font-size: 50px;
    right: -130px;
    top: 30px;
    color: #ffffff;
}

#carousel-services-navigation-menu .owl-dots {
    display: none;
}

/*Services menu css*/
/*Services menu css*/
/*Services menu css*/

#services.c-main-ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: 0px 0px;
    list-style: none;
}

#services.c-main-ul:before,
#services.c-main-ul:after {
    width: 0px;
    height: 0px;
}

#services.c-main-ul li a {
    position: relative;
    top: 20px;
}

.c-payroll-icon,
.c-accounting-services-icon,
.c-hr-services-icon,
.c-international-contractor-icon {
    position: relative;
}

.c-payroll-icon:before {
    content: "";
    position: absolute;
    background: url("../images/payroll/ffy_service_white_payroll.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}

.c-accounting-services-icon:before {
    content: "";
    position: absolute;
    background: url("../images/accounting/ffy_service_white_accounting.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}

.c-hr-services-icon:before {
    content: "";
    position: absolute;
    background: url("../images/hr/ffy_service_white_hr.png");
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
}

.c-international-contractor-icon:before {
    content: "";
    position: absolute;
    background: url("../images/international/ffy_service_white_international.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}

#services .current-menu-item {
    background: transparent;
}

/*Services menu v2*/
/*Services menu v2*/
/*Services menu v2*/

.c-payroll-icon-v2,
.c-accounting-services-icon-v2,
.c-hr-services-icon-v2,
.c-international-contractor-icon-v2 {
    position: relative;
}

.c-payroll-icon-v2:before {
    content: "";
    position: absolute;
    background: url("http://fairfax.local/wp-content/uploads/2019/12/ffy_service_white_payroll.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    top: 15%;
}

.c-accounting-services-icon-v2:before {
    content: "";
    position: absolute;
    background: url("http://fairfax.local/wp-content/uploads/2019/12/ffy_service_white_Accounting.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    top: 15%;
}

.c-hr-services-icon-v2:before {
    content: "";
    position: absolute;
    background: url("http://fairfax.local/wp-content/uploads/2019/12/ffy_service_white_HRg.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    top: 15%;
}

.c-international-contractor-icon-v2:before {
    content: "";
    position: absolute;
    background: url("http://fairfax.local/wp-content/uploads/2019/12/ffy_service_white_international.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    top: 15%;
}

#services-menu-v2.c-main-ul li {
    background: transparent;
}

.c-our-services-bg-img-v2 {
    position: relative;
    background: url("../images/static/home/footer-main-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 250px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.c-services-ul-v2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0px;
    list-style: none;
}

.c-services-ul-v2 .c-services-v2-bg-icon {
    background: url("../images/static/home/footer-main-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 250px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-services-v2-bg-icon a {
    position: absolute;
    top: 20%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70%;
    display: block;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 50%;
    color: #ffffff !important;
    font-weight: 700;
}

.c-services-v2-bg-icon a:hover {
    text-decoration: none;
}

/*centered the icons in the services nav menu*/
.c-services-row-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Services menu sup pages/ */
.c-services-menu-side-bg-color {
    background: rgba(240, 79, 35, 0.7);
}

.c-services-middle-nav {
    padding-left: 0px;
    padding-right: 0px;
}

.c-services-nav-v1 ul {
    margin-bottom: 0px;
}

/*
.c-services-ul-v2 .c-services-v2-bg-icon {
    background: url("../images/footer/footer-main-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 250px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.c-services-ul-v2 .c-services-v2-bg-icon:before {
    content: "";
    position: absolute;
    background: url("../images/footer/footer-main-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 250px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.c-services-ul-v2 .c-services-v2-bg-icon:hover:before {
    top: 120px;
}
*/

/* Services content on hover/ */
.c-payroll-icon-v2.c-services-v2-bg-icon {
    position: relative;
}

.c-payroll-icon-v2.c-services-v2-bg-icon:after {
    content: "Content Here";
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    top: 100%;
    opacity: 0;
    transition: all .1s ease-in-out .1s;
    -webkit-transition: all .1s ease-in-out .1s;
    -moz-transition: all .1s ease-in-out .1s;
    -ms-transition: all .1s ease-in-out .1s;
    -o-transition: all .1s ease-in-out .1s;
}

.c-payroll-icon-v2.c-services-v2-bg-icon:hover:after {
    opacity: 1;
}

/*Legal documents*/
.c-services-main-container.c-documents-bg {
    background: url("../images/legal-documents/ffy_privacy-policy_hd.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

/*Footer*/
.c-footer {
    float: left;
    width: 100%;
    background: var(--black-bg-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/*Footer main icon*/

.c-footer-main-icon-container {
    position: relative;
    background: url("../images/footer/footer-main-icon.svg");
    background-repeat: no-repeat;
    width: 370px;
    height: 470px;
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 40px;
}

.c-footer-main-icon-container h3 {
    font-size: 30px;
    position: relative;
    bottom: 30px;
}

.c-footer-main-icon-container p {
    font-size: 14px;
    position: relative;
    bottom: 30px;
    color: white !important;
    text-decoration: none !important;
    /*    display: none !important;*/
}

.c-footer-main-icon-container a {
    position: relative;
    bottom: 30px;
    width: 180px;
    height: 50px;
}

.c-footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
}

.c-footer-top img {
    width: 100%;
}

.c-footer-social-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

h3.c-footer-title {
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
}

h3.c-footer-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 17%;
    height: 1px;
    background: var(--gold-bg-color);
}

h3.c-footer-title .c-footer-title-thin {
    font-weight: 300;
}

.c-footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 15px;
}

.c-footer-info li a {
    color: var(--white-f-color);
}

.c-footer-info li a:hover {
    text-decoration: none;
}

.c-footer-info i {
    color: #808080;
    font-size: 18px;
}

.c-footer-services-ul {
    list-style: none;
    padding-left: 0px;
}

.c-footer-services-links {
    text-decoration: none;
}

.c-services-page-link {
    color: #ffffff;
}

.c-services-page-link:hover {
    text-decoration: none;
}


/*Copyrights*/
.c-copyrights p {
    width: 100%;
    text-align: center;
    color: #808080;
}

.c-documents-footer-link {
    text-align: center;
    display: block;
    margin: 0 auto;
}

/*Footer convertico credits*/

.credit {
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: 0;
    left: 0;
    background-color: #2d2d2d;
    z-index: 2;
    -webkit-transition: height 250ms ease-out;
    transition: height 250ms ease-out;
}

.credit:hover {
    height: 50px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

.credit .circle {
    position: absolute;
    background-color: #2d2d2d;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
}

.credit .circle-1 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    z-index: 1;
    background: #2d2d2d;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.credit .circle-2 {
    width: 93px;
    height: 97px;
    bottom: -30px;
    z-index: 2;
    /*    border: 1px solid #808080;*/
    border: 1px solid #1b1e28;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

footer .credit:hover .circle-1,
footer .credit:hover .circle-2 {
    bottom: -10px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

footer .credit:hover .circle-1,
footer .credit:hover .circle-2 {
    bottom: -10px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

.credit .outer-bg-line {
    height: 25px;
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    background-color: #0f1116;
    border-top: 1px solid #1b1e28;
    z-index: 1;
    -webkit-transition: height 250ms ease-out;
    transition: height 250ms ease-out;
}

footer .credit:hover .outer-bg-line,
footer .credit:hover .content {
    height: 45px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

.credit .content {
    background-color: #2d2d2d;
    height: 25px;
    z-index: 5;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: height 250ms ease-out;
    transition: height 250ms ease-out;
}

footer .credit:hover .outer-bg-line,
footer .credit:hover .content {
    height: 45px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

footer .credit .content img.logo {
    z-index: 6;
    width: 30px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    cursor: pointer;
    bottom: 10px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

footer .credit:hover .content img.logo {
    bottom: 30px;
}

footer .credit .content .note {
    margin-top: 17px;
    text-align: center;
    color: #fff;
    opacity: 0;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

footer .credit:hover .note {
    opacity: 1;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

footer .credit .content .note a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

/*Media queries*/
/*Media queries*/
/*Media queries*/


@media only screen and (max-width: 1440px) {


    #c-owl-main-slider .c-slide-content h1,
    #c-owl-main-slider .c-slide-content h2 {
        max-width: 50% !important;
        margin: 50px 0px -20px 0px !important;
    }


}

/* Extra large devices (large desktops, 1200px and down) */
@media only screen and (max-width: 1200px) {


    #c-owl-main-slider .c-slide-content h1,
    #c-owl-main-slider .c-slide-content h2 {
        max-width: 70% !important;
        margin: 50px 0px -20px 0px !important;
    }


    #c-owl-main-slider .c-slide-content a {
        position: absolute;
        bottom: 50px;
    }

    #c-owl-main-slider .owl-dots {
        position: absolute;
        bottom: -30px;
    }
}


@media only screen and (max-width: 1040px) {
    .c-services-title {
        max-width: 70%;
    }
}

/* Large devices (desktops, 992px and down) */
@media only screen and (max-width: 992px) {

    /*Payroll page*/

    .c-h5-v1.c-h5-v1-nowrap {
        white-space: normal;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {


    #c-owl-main-slider .c-slide-content .c-btn-v1 {
        height: 50px;
    }

    #c-owl-main-slider .c-slide-content a {
        bottom: -100px;
    }

    #c-owl-main-slider .owl-dots {
        position: absolute;
        bottom: -30px;
    }

    #c-owl-main-slider .c-slide-content h1,
    #c-owl-main-slider .c-slide-content h2 {
        font-size: 50px;
        line-height: 55px;
    }

}

@media only screen and (min-width: 991px) and (max-width: 1200px) {

    #c-owl-main-slider .c-slide-content .c-btn-v1 {
        height: 50px;
    }

    #c-owl-main-slider .c-slide-content a {
        bottom: 80px;
    }

    #c-owl-main-slider .owl-dots {
        /*        border:1px solid blue;*/
        position: absolute;
        bottom: -30px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 992px) {

    #c-owl-main-slider .c-slide-content h1,
    #c-owl-main-slider .c-slide-content h2 {
        font-size: 35px;
        line-height: 40px;
    }

    #c-owl-main-slider .c-slide-content .c-btn-v1 {
        height: 45px;
    }

}

/* Medium devices (tablets, 768px and down) */
@media only screen and (max-width: 768px) {


    #c-owl-main-slider .c-slide-content .c-btn-v1 {
        font-size: 12px;
    }

    #c-owl-main-slider .c-slide-content h1,
    #c-owl-main-slider .c-slide-content h2 {
        max-width: 50% !important;
        margin: 50px 0px -20px 0px !important;
    }


    #c-owl-main-slider .c-slide-content a {
        /*        border:2px solid green;*/
        position: absolute;
        bottom: 30px !important;
    }

    #c-owl-main-slider .owl-dots {
        /*        border:1px solid blue;*/
        position: absolute;
        bottom: -30px;
        top: 45% !important;
    }

    /*   End of slider */

    .c-main-nav-container.c-homepage-logo > a {
        position: absolute;
        width: 50%;
        top: -40px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .c-burger-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        z-index: 2;
        left: 85%;
        margin: 20px 0px;
        bottom: 55px;
        /*Testing purpose*/
        z-index: 999;
    }

    /*Top navigation*/
    .c-top-nav {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .c-left-info ul li {
        font-size: 10px;
        white-space: nowrap;
        margin-right: 10px;
    }

    .c-left-info ul li:last-child {
        margin-right: 35px;
    }

    .c-right-info {
        padding-right: 0px;
    }

    /*Top logo*/
    .c-main-nav-container img {
        width: 300px;
        display: block;
        margin: 0 auto;
        position: relative;
        bottom: 20px;
    }

    /*Main navigation*/
    .c-main-nav-container {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    /*Toggle nav menu*/
    .c-main-nav {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
    }

    .c-main-nav.c-nav-active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    /*Main nav ul*/
    .c-main-ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: #000000;
        padding-left: 0px;
        position: absolute;
        min-height: 400px;
        /*
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
*/

        /*Testing Menu*/
        width: 100%;
        height: 100vh;
        top: -270px;

        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .c-main-ul li {
        padding-left: 20px;
        text-align: center;
    }

    .c-main-ul li a {
        display: block;
        padding: 5px 0px;
    }

    /*Dropdown on mobile*/
    .c-dropdown:hover ul {
        position: relative;
    }

    /*Homepage*/

    /*Main slider*/

    #c-owl-main-slider.owl-carousel {
        bottom: 65px;
    }

    #c-owl-main-slider .c-slide-content {
        margin-top: 20px;
    }

    #c-owl-main-slider .c-slide-content h1,
    #c-owl-main-slider .c-slide-content h2 {
        text-align: center;
        margin: 0px 0px;
        color: var(--white-f-color);
        font-size: 14px;
        line-height: 1.2em;
        max-width: 100%;
    }

    #c-owl-main-slider .c-slide-content p {
        text-align: center;
        color: var(--white-f-color);
        font-size: 12px;
    }

    #c-owl-main-slider .c-slide-content a {
        color: var(--white-f-color);
        position: relative;
        z-index: 20;
        width: 140px;
        height: 30px;
        bottom: 45px;
    }

    /*Homepage slider buttons*/
    #c-owl-main-slider .owl-prev {
        position: absolute;
        font-size: 25px;
        left: 7%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        color: #ffffff;
    }

    #c-owl-main-slider .owl-next {
        position: absolute;
        font-size: 25px;
        right: 7%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        color: #ffffff;
    }

    /*Homepage slider custom bullet points*/
    #c-owl-main-slider .owl-dots {
        margin-top: 10px;
        position: absolute;
        top: 75%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 175px;
    }

    #c-owl-main-slider.owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1;
        margin-right: 30px;
    }

    /*End of main slider*/

    /*Parralax*/
    .c-homepage-parallax-bg {
        background-attachment: scroll;
        height: 370px;
    }

    .c-homepage-parallax-content-top {
        font-size: 40px;
    }

    .c-homepage-parallax-content-bottom {
        font-size: 12px;
    }

    .c-homepage-parallax-year-symbol {
        font-size: 18px;
        right: 8px;
        top: 35%;
    }

    .c-homepage-team-role {
        position: relative;
        right: 10px;
    }

    .c-homepage-parallax-payslips-symbol {
        font-size: 30px;
        right: -20px;
        top: 38%;
    }


    /*Our team*/
    .c-our-team-member-container:before {
        width: 0%;
    }

    .c-our-team-member-container:hover:before,
    .c-our-team-member-container:hover .c-homepage-team-info p {
        opacity: 0;
    }

    /*Payroll*/
    .c-homepage-payroll-content h5:nth-child(1) {
        margin-top: 30px;
    }


    .c-homepage-payroll-content-right p {
        text-align: left;
    }

    .c-homepage-payroll-content-right a {
        margin-bottom: 30px;
    }

    /*End of homepage*/

    /*About us page*/

    .c-header-page-main-container.c-about-us-bg h1 {
        top: 115px;
    }

    .c-header-page-main-container.c-about-us-bg .c-header-page-content-container .c-header-page-content {
        width: 80%;
        margin-bottom: 85px;
    }

    .c-header-page-main-container.c-about-us-bg .c-header-page-content-container .c-header-page-content p {
        font-size: 16px;
    }

    .c-testimonials-big-quotes {
        background-image: none;
    }

    .c-footer-main-icon-container.c-about-us-extra-js {
        margin-top: 320px;
    }

    /*End of about us page*/

    /*Our services page*/

    .c-header-page-main-container.c-our-services-bg h1 {
        top: 115px;
    }

    .c-header-page-main-container.c-our-services-bg .c-header-page-content-container .c-header-page-content {
        width: 80%;
        margin-bottom: 215px;
    }

    .c-header-page-main-container.c-our-services-bg .c-header-page-content-container .c-header-page-content p {
        font-size: 16px;
    }

    /*End of our services page*/

    /*Services Pages*/

    /*Accounting page*/


    /*
    .c-team-member-bg {
        background-attachment:scroll;
        background-position: 40% 80% !important;
    }
*/

    .c-header-page-parallax.c-header-page-parallax-services {
        background-attachment: scroll;
        background-position: 40% 80% !important;
    }

    .c-header-page-parallax.c-header-page-parallax-contact-us {
        background-attachment: scroll;
        background-position: 20% 70% !important;
    }



    .c-header-page-parallax.c-header-page-parallax-about-us {
        background-attachment: scroll;
        background-position: 40% 80% !important;
    }

    .c-header-page-parallax.c-header-page-parallax-payroll {
        background-attachment: scroll;
        background-position: 40% 80% !important;
    }

    .c-header-page-parallax.c-header-page-parallax-accounting,
    .c-header-page-parallax.c-header-page-parallax-international {
        background-position: 70% 10% !important;
        background-attachment: scroll;
    }

    .c-header-page-parallax.c-header-page-parallax-hr {
        background-position: 20% 70% !important;
        background-attachment: scroll;
    }


    .c-accounting-page-bullet-points {
        margin-bottom: -40px;
    }

    .c-accounting-extend-icon,
    .c-accounting-extend-icon-v2,
    .c-accounting-extend-icon-v3 {
        background: transparent;
        background-image: none;
    }

    /*End of accounting page*/

    /*Remove all bg fixed to scroll*/

    .c-header-page-main-container.c-our-services-bg,
    .c-services-main-container.c-accounting-services-bg,
    .c-services-main-container.c-hr-services-bg,
    .c-services-main-container.c-international-services-bg,
    .c-services-main-container.c-payroll-services-bg,
    .c-header-page-main-container.c-contact-us-bg,
    .c-header-page-main-container.c-blog-bg,
    .c-services-main-container.c-documents-bg,
    .c-team-member-bg {
        background-attachment: scroll;
    }

    /*End of remove all bg fixed to scroll*/

    /*Hide services nav menu*/
    .c-services-nav {
        display: none;
    }

    .c-services-nav-v1 {
        display: none;
    }

    /*Homepage services navigation memu and serivces page menu*/
    .c-services-ul-v2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /*Added margin to services menu bg img*/
    .c-services-ul-v2 .c-services-v2-bg-icon {
        margin: 20px 0px;
    }

    /*General pages header*/

    .c-header-page-main-container {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        top: -65px;
    }

    .c-header-page-title h1 {
        font-size: 26px;
        top: 200px;
    }

    .c-header-page-title h1:after {
        content: "";
        position: absolute;
        width: 70%;
        height: 1px;
        background: var(--gold-bg-color);
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -20px;
    }

    .c-header-page-content-container {
        width: 100%;
        position: absolute;
        bottom: 0px;
    }

    .c-header-page-content {
        margin-bottom: 40px;
        font-size: 16px;
        width: 100%;
    }

    /*Services general heading*/
    .c-services-main-container {
        top: -65px;
    }

    .c-services-title {
        margin-top: 200px;
    }

    /*Blog page*/
    .c-blog-page-content {
        padding: 20px;
    }

    /*End of blog page*
    
    /*Contact us page*/

    select {
        border-radius: 0px;
        width: 100%;
        padding: 20px 20px;
        -webkit-appearance: none;
        -moz-appearance: none !important;
        appearance: none;
        outline: none;
        background: #ffffff;
    }

    /*End of contact us page*/

    /*Footer*/

    .c-footer-main-icon-container {
        width: 365px;
        height: 440px;
    }

    .c-footer-top img {
        width: 70%;
    }

    .c-footer-top > a {
        width: 70% !important;
    }

    .c-footer-main-icon-container {
        background: url("../images/footer/footer-main-icon.svg");
        background-repeat: no-repeat;
        /*        margin-top:320px;*/
    }

    .c-footer-main-icon-container h3 {
        font-size: 26px;
    }

    .c-footer-main-icon-container a {
        margin-bottom: 40px;
    }


    /*New team members layout*/
    .c-team-member-flex-container-top,
    .c-team-member-flex-container-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }





}

/* Small devices (landscape phones, 576px and down) */
@media only screen and (max-width: 576px) {}


.c-blog-page-content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}





.c-services-ul-v2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-left: 0px;
    list-style: none;
}

.c-services-ul-v2 .c-services-v2-bg-icon {
    position: relative;
    width: 250px;
    height: 300px;
    /*    border: 1px solid red;*/
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

}

.c-services-ul-v2 .c-services-v2-bg-icon:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("../images/services/services-bg-img-v1.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.c-services-ul-v2 .c-services-v2-bg-icon:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("../images/services/services-bg-img-v1.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -2;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.c-services-ul-v2 .c-services-v2-bg-icon:hover:after {
    margin-top: 138px;
    cursor: pointer;
}

.c-services-v2-link {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

.c-services-ul-v2 .c-services-v2-bg-icon:hover .c-services-v2-link {
    text-decoration: none;
    color: #ffffff;
}

.c-services-v2-hidden-content {
    font-size: 12px;
    position: absolute;
    bottom: -30px;
    z-index: -3;
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.c-services-ul-v2 .c-services-v2-bg-icon:hover .c-services-v2-hidden-content {
    opacity: 1;
    z-index: 2;
}

.c-services-v2-icon {
    height: 50px;
}



/*Our team members single page*/

.c-header-page-main-container.c-team-member-bg {
    background: url("../images/team-members/ffy_team_hd.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-single-page-team-member-name {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
}

.c-single-page-team-member-title {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--gold-f-color);
}

.c-single-page-team-member-content {}

.c-single-page-contact-info-main-container h3 {
    font-size: 18px;
    font-weight: 300;
    color: #b2b2b2;
    border-top: 1px solid #b2b2b2;
}

.c-single-page-contact-info-container {}

.c-single-page-contact-info-container i {
    color: var(--gold-f-color);
}

.c-single-page-social-media-container a {
    text-decoration: none;
}

.c-single-page-social-media-container a:hover {
    text-decoration: none;
}

.c-single-page-social-media-container i {
    color: var(--gold-f-color);
}


.c-single-page-social-media-container span {
    color: #000000;
}


/*New services menu with custom post types*/
.c-main-ul.c-ul-v1 {}


.c-services-nav-v1.c-nav-v1 ul li {
    padding: 30px;
}


.c-services-nav-v1.c-nav-v1 ul li img {
    width: 30%;
}

#services.c-main-ul.c-ul-v1 li a {
    top: 0px;
}

.c-main-ul.c-ul-v1 li a {
    padding: 5px 0px 0px 0px;
}

/*Team members new layout*/
.c-team-member-flex-container-top,
.c-team-member-flex-container-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-our-team-member-container:before {
    height: 322px;
}

.c-our-team-member-container.c-our-team-member-container-small:before {
    /*height: 304px; --> this was making the image and gold layer overlaying it on hover to be off */
}

.c-homepage-team-name {
    color: var(--gold-f-color);
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
}

.c-homepage-team-role {
    text-align: center;
    color: #989898;
    font-weight: 100;
    font-size: 16px;
    line-height: 20px;
    height: 50px;
    font-size: 13px;
}

.c-header-page-parallax {
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.c-services-btn-read-more {
    display: inline-block;
    width: 220px;
    height: 65px;
    font-size: 18px;
    color: var(--white-f-color);
    font-weight: var(--semi-bold-font-weight);
    background: var(--gold-bg-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -80%);
    transform: translate(-50%, -80%);
    width: 150px;
    height: 50px;
}


/*Modal form for pdf*/
.modal {
    z-index: 9999;
}

.modal .modal-content {
    float: left;
    width: 100%;
    background-color: $greyLightColor;
    border-radius: 6px;
    padding: 30px;
}

.modal .modal-content button {
    position: absolute;
    top: 25px;
    right: 25px;
}

.modal .modal-header {
    padding: 10px 15px;
    border-bottom: none;
    display: block;
}

.modal .modal-header h5,
.modal .modal-header p {
    text-align: center;
    width: 100%;
}

.modal .modal-header h5 {
    line-height: 28px;
}

.modal .modal-header button.close span {
    font-size: 30px;
    color: $redColor;
}

.modal .modal-body {
    position: relative;
    float: left;
    width: 100%;
    padding: 0;
}

.modal .btn-submit {
    text-align: center;
    float: none;
    margin: 10px auto;
    top: 0 !important;
    display: block;
}

.modal div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
    border: 1px solid #ff0000;
    float: left;
    width: 100%;
}

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    margin: 0px 0px;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* Changes 06.11.2025 */
html body .c-main-nav-container a img {
  max-height: unset;
  margin-top: 15px;
  height: 75px;
  width: auto !important;
}
html body footer .c-footer-top a img {
  max-height: unset;
  margin: 15px auto;
  height: 70px;
  width: auto !important;
}

@media screen and (max-width: 767px) {
  html body .c-main-nav-container a img {
    height: 45px;
  }
  html body footer .c-footer-top a img {
    height: 42px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  html body .c-main-nav-container a img {
    height: 58px;
  }
  html body footer .c-footer-top a img {
    height: 55px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  html body .c-main-nav-container a img {
    height: 64px;
  }
  html body footer .c-footer-top a img {
    height: 61px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1599px) {
  html body .c-main-nav-container a img {
    height: 68px;
  }
  html body footer .c-footer-top a img {
    height: 65px;
  }
}