/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
    font-family: 'Oswald', sans-serif;
    color: #3a3a3a;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}

.layouts ul li {
	margin-bottom:5px;
}

.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}

.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.row {
    max-width: 1080px;
    padding: 0 20px;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

em {
	font-style: italic;
}

.clear {
	clear:both;
}

.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    margin-bottom: 15px;
}


.invi {
	visibility: hidden;
	opacity: 0;
}

/* preloader */

.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.header {
    background: #fff;
    box-shadow: 2px 3px 10.27px 2.73px rgba(0, 0, 0, 0.13);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.header-logo a {
    transition: 0.2s;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-left {
    padding: 20px 0;
}

.header-nav ul {
    float: right;
}

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

.header-nav ul li a {
    display: inline-block;
    padding: 40px 20px 35px 20px;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.2;
    position: relative;
    border-top: 4px solid transparent;
    transition: 0.2s;
    text-transform: uppercase;
}

.header-nav ul li a:hover {
    color: #cc2183;
    border-color: #cc2183;
}

.header-nav ul li.current-menu-item a {
    color: #cc2183;
    border-color: #cc2183;
}

.header-nav > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #cc2183;
    padding: 16px;
    width: 100%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.header-nav > ul > li > ul > li {
    display: block;
}

.header-nav > ul > li > ul > li > a {
    padding: 2px 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.75;
    border-top: none;
}

.header-nav > ul > li > ul > li > a:hover {
    color: #fff;
    opacity: 0.8;
}

.header-nav > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.main-container {
    padding-top: 70px;
}

.intro {
    background-size: cover!important;
    padding-top: 170px;
    padding-bottom: 195px;
}

.intro.no-content {
    padding: 0;
    height: 215px;
    margin-bottom: 55px;
}

.intro-text {
    font-size: 27px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.intro-logo {
    margin-bottom: 20px;
}

.home-services-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.home-services-list ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 18px;
    float: left;
    width: 24%;
    margin-right: 1.3%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d8d8d8+0,969696+100 */
    background: #d8d8d8; /* Old browsers */
    background: -moz-linear-gradient(top,  #d8d8d8 0%, #969696 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #d8d8d8 0%,#969696 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #d8d8d8 0%,#969696 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8d8d8', endColorstr='#969696',GradientType=0 ); /* IE6-9 */
}

.home-services-list ul li:nth-child(1) {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e56588+0,d34c70+100 */
    background: #e56588; /* Old browsers */
    background: -moz-linear-gradient(top,  #e56588 0%, #d34c70 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #e56588 0%,#d34c70 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #e56588 0%,#d34c70 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e56588', endColorstr='#d34c70',GradientType=0 ); /* IE6-9 */
}

.home-services-list ul li:nth-child(2) {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5058f2+0,002ee3+100 */
    background: #5058f2; /* Old browsers */
    background: -moz-linear-gradient(top,  #5058f2 0%, #002ee3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #5058f2 0%,#002ee3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #5058f2 0%,#002ee3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5058f2', endColorstr='#002ee3',GradientType=0 ); /* IE6-9 */
}

.home-services-list ul li:nth-child(4) {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#58c8c2+0,3abaa7+100 */
    background: #58c8c2; /* Old browsers */
    background: -moz-linear-gradient(top,  #58c8c2 0%, #3abaa7 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #58c8c2 0%,#3abaa7 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #58c8c2 0%,#3abaa7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58c8c2', endColorstr='#3abaa7',GradientType=0 ); /* IE6-9 */
}

.home-services-list ul li:last-child {
    margin-right: 0;
}

.home-services-item-icon {
    margin-bottom: 10px;
    width: 100%;
}

.home-services-item-text {
    width: 100%;
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.home-services-list-section {
    margin-bottom: 50px;
 }

.why-us-section {
    padding-bottom:110px;
}

.why-us-left {
    padding-right: 10px;
    padding-left: 35px;
}

.why-us-right {
    padding-left: 70px;
}

.why-us-title {
    font-size: 60px;
    line-height: 1.06;
    font-weight: 400;
    color: #cc2183;
    text-transform: uppercase;
}

.why-us-text {
    color: #3a3a3a;
    font-size: 24px;
    line-height: 1.36;
    font-weight: 400;
    margin-bottom: 40px;
}

.why-us-more a {
    font-size: 26px;
    line-height: 1.36;
    text-transform: uppercase;
    font-weight: 500;
    color: #3a3a3a;
    transition: 0.2s;
}

.why-us-more a:hover {
    opacity: 0.8;
}

.bg-grey {
    background: #f3f3f3;
}

.home-portfolio-section {
    padding: 60px 0 100px;
    position: relative;
}

.home-section-title {
    font-size: 48px;
    line-height: 1.48;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.home-portfolio-section .home-section-title {
    color: #cc2183;
}

.home-portfolio-more a {
    display: inline-block;
    font-size: 25px;
    margin-bottom: 35px;
    color: #8a8e94;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.2s;
}

.home-portfolio-more a:hover {
    opacity: 0.8;
}

.home-portfolio-section:before {
    content: '';
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    height: 84px;
    width: 7px;
    background: #cc2183;
}

.home-portfolio-list {
    padding-top: 15px;
}
.ginput_recaptcha{
    margin-bottom:20px;
    margin-top: 40px !important;
}
.gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
     width: 100% !important; 
}

.home-portfolio-list ul li {
    width: 32.7%;
    float: left;
    margin-right: 0.9%;
    margin-bottom: 0.9%;
}

.home-portfolio-list ul li:nth-child(3n) {
    margin-right: 0;
}

.home-portfolio-item-image {
    position: relative;
    background-size: contain!important;
    padding-bottom: 70%;
}

.home-portfolio-item-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.6s;
}

.home-portfolio-item-details:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3ebcab;
    opacity: 0.85;
}

.home-portfolio-item-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.home-portfolio-item-title {
    text-align: center;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}

.home-portfolio-item-subtitle {
    text-align: center;
    font-size: 21px;
    color: #fff;
    font-weight: 400;
    opacity: 1;
}

.home-portfolio-list ul li a:hover .home-portfolio-item-details {
    opacity: 1;
}

.home-services-hold {
    position: relative;
    padding-top: 70px;
    padding-bottom: 300px;
}

.home-services-hold:after {
    position: absolute;
    content: '';
    top: -44px;
    bottom: 0;
    width: 7px;
    background: #cc2183;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.home-services-left,
.home-services-right {
    position: relative;
}

.home-services-left {
    top: 0;
    left: 0;
    width: 61%;
    z-index: 5;
}

.home-services-right {
    position: absolute;
    top: 150px;
    width: 53%;
    right: 0;
    z-index: 4;
}

.home-services-image {
    background-size: cover!important;
    padding-bottom: 66%;
    box-shadow: 5px 8px 7px 0px rgba(0, 0, 0, 0.24);
}

.home-services-right-content {
    background: #e96591;
    padding: 30px 40px 30px 25%;
}

.home-services-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.home-services-bottom-list ul li {
    text-align: center;
    margin-bottom: 5px;
    font-size: 31px;
    color: #fff;
    font-weight: 400;
}

.bg-green {
    background: #3ebcab;
}

.home-contact-form-section {
    padding: 35px 0;
}

.home-contact-form-section .home-section-title {
    color: #fff;
}

.btn-green,
.btn-green:focus,
.btn-green:active {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: #138c88;
    transition: 0.2s;
    text-align: center;
    padding: 10px 30px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.btn-green:hover {
    color: #fff;
    opacity: 0.8;
}

.footer {
    background: #929292;
    padding-top: 35px;
    padding-bottom: 60px;
}

.footer-logo img {
    max-height: 122px;
}

.footer-column {
    text-align: right;
    padding-right: 40px;
}

.footer-column-title {
    font-size: 20px;
    line-height: 1;
    /*padding: 10px 15px 10px 0;*/
    /*border-right: 2px solid #fff;*/    /*position: relative;*/

    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: -0.006em;
}

.footer-title-text {
    display: inline-block;
    position: relative;
    padding: 10px 15px 10px 0;
    border-right: 2px solid #fff;
}

.footer-title-icon {
    position: absolute;
    right: -35px;
    top: 7px;
}

.footer-contact-list ul li {
    margin-bottom: 12px;
}

.footer-contact-list ul li a {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    transition: 0.2s;
}

.footer-contact-list ul li a:hover {
    opacity: 0.8;
}

.footer-featured-list ul li {
    margin-bottom: 12px;
    float: left;
    width: 50%;
    text-align: right;
}

.footer-featured-list ul li a {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    transition: 0.2s;
}

.footer-featured-list ul li a:hover {
    opacity: 0.8;
}

.footer-column:nth-child(1){
    padding-right: 80px;
}

.footer-socials-list ul li {
    display: inline-block;
    margin-right: 7px;
}

.footer-socials-list ul li a {
    display: inline-block;
    transition: 0.2s;
}

.footer-socials-list ul li a:hover {
    opacity: 0.8;
}

.about-btn-list ul li {
    float: left;
    margin-right: 46px;
}

.about-btn-list ul li:last-child{
    margin-right: 0;
}

.btn-light-green,
.btn-light-green:focus,
.btn-light-green:active {
    display: inline-block;
    background: #3ebcab;
    font-weight: 400;
    font-size: 24px;
    transition: 0.2s;
    padding: 14px 20px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

.btn-light-green:hover {
    color: #fff;
    opacity: 0.8;
}

.about-me-section {
    padding-bottom: 90px;
}

.about-me-bg-image {
    background-size: cover!important;
    padding-bottom: 40%;
    position: relative;
}

.about-me-image {
    background-size: cover!important;
    height: 90%;
    position: absolute;
    left: 44%;
    top: 50%;
    width: 56%;
    transform: translate(-50%, -50%);
    border: 1px solid #000;
}

.about-me-content {
    padding-left: 45px;
}

.about-title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.325;
    color: #cc2183;
    margin-bottom: 10px;
}

.about-me-text {
    color: #3a3a3a;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.54;
}

.about-image-right .about-me-content {
    padding-left: 0;
    padding-right: 45px;
}

.memorial-section {
    background: #f3f3f3;
    position: relative;
    padding-top: 50px;
}

.memorial-section .about-me-bg-image {
    padding-bottom: 59%;
}

.memorial-section .about-me-image {
    height: 59%;
    left: 38%;
    top: 68%;
}

.memorial-section .about-me-content {
    padding-top: 65px;
}

.memorial-quote {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 500;
    color: #3a3a3a;
    line-height: 1.25;
    text-transform: uppercase;
    padding: 0 11%;
}

.memorial-quote span {
    display: block;
    font-size: 19px;
    margin-top: 10px;
}

.memorial-section:before {
    content: '';
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    height: 84px;
    width: 7px;
    background: #cc2183;
}

.testimonials-section {
    padding-top: 30px;
    padding-bottom: 35px;
}

.testimonials-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: -0.009em;
    color: #fff;
}

.testimonials-subtitle {
    font-size: 23px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}

.testimonials-icon {
    margin-bottom: 20px;
}

.testimonials-slider-hold {
    padding: 0 10%;
    position: relative;
}

.testimonials-text {
    text-align: center;
    font-size: 20px;
    line-height: 1.35;
    color: #fff;
    font-weight: 300;
    margin-bottom: 25px;
}

.testimonials-author-name {
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
}

.testimonials-author-position {
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
}

.owl-nav-hold a {
    display: inline-block;
    height: 43px;
    width: 43px;
    position: absolute;
    transition: 0.2s;
}

.owl-nav-hold a:hover {
    opacity: 0.8;
}

.owl-nav-hold a.testimonials-next {
    top: 50%;
    right: 0;
}

.owl-nav-hold a.testimonials-prev {
    top: 50%;
    left: 0;
}

.about-us-contact-section {
    padding-top: 65px;
    padding-bottom: 80px;
}

.about-us-contact-section .about-title {
    margin-bottom: 35px;
}

.btn-pink,
.btn-pink:focus,
.btn-pink:active {
    color: #cc2183;
    border: 3px solid #cc2183;
    font-size: 30px;
    line-height: 1;
    padding: 10px 23px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    transition: 0.2s;
}

.btn-pink:hover {
    color: #cc2183;
    opacity: 0.8;
}

.why-us-section.contacts .why-us-title {
    margin-bottom: 35px;
}

.contacts-text {
    font-size: 22px;
    font-weight: 300;
    color: #3a3a3a;
    line-height: 1.36;
    margin-bottom: 40px;
}

.contacts-socials ul li {
    display: inline-block;
    margin-right: 8px;
}

.contacts-socials ul li:last-child {
    margin-right: 0;
}

.contacts-socials ul li a {
    display: inline-block;
    transition: 0.2s;
}

.contacts-socials ul li a:hover {
    opacity: 0.8;
}

.contact-form-hold .form-element .form-element-label {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 400;
    color: #505050;
    display: block;
}

.contact-form-hold .form-element input,
.contact-form-hold .form-element input:focus,
.contact-form-hold .form-element input:active{
    box-shadow: none;
    border: 1px solid #000;
    font-size: 16px;
    height: 30px;
    margin: 0;
    padding: 5px 10px;
}

.contact-form-hold .form-element {
    margin-bottom: 30px;
}

.checkbox {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 10px;
}

.checkbox input {
    display: none;
}

.checkbox input + label {
    width: 100%;
    position: relative;
    margin: 0;
    padding-left: 17px;
    font-size: 18px;
    font-weight: 400;
}

.checkbox input + label:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 10px;
    height: 15px;
    border: 1px solid #000;
}

.checkbox input:checked + label:after {
    position: absolute;
    top: 1px;
    left: 1px;
    font-size: 15px;
    content: 'X';
}

.checkbox-list {
    padding-left: 20px;
}

.contact-form-hold .form-element textarea,
.contact-form-hold .form-element textarea:focus,
.contact-form-hold .form-element textarea:active{
    box-shadow: none;
    border: 1px solid #000;
    font-size: 16px;
    margin: 0;
    padding: 5px 10px;
    resize: none;
    height: 160px;
}

.contact-submit-hold {
    padding-left: 22px;
}

.intro.with-logo {
    padding-top: 60px;
    padding-bottom: 64px;
    margin-bottom: 55px;
}

.our-services-section {
    padding-bottom: 115px;
}

.services-image {
    background-size: cover!important;
    padding-bottom: 56%;
}

.intro.with-logo .intro-logo {
    margin-bottom: 0;
}

.services-text {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 300;
    color: #3a3a3a;
}

.services-list {
    padding: 0 40px;
}

.services-list ul li {
    float: left;
    width: 21%;
    margin-right: 5.3%;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1;
    color: #3a3a3a;
    padding-left: 18px;
    position: relative;
    font-weight: 300;
}

.services-list ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 7px;
    background: #3a3a3a;
}

.services-list ul li:nth-child(4n) {
    margin-right: 0;
}

.our-services-section .about-me-content {
    margin-bottom: 30px;
}

.mobile-menu-hold {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
}

.mobile-menu-nav {
    padding: 20px 15px 40px;
}

.mobile-menu-nav ul li {
    margin-bottom: 15px;
}

.mobile-menu-nav ul li a {
    font-size: 20px;
    text-transform: uppercase;
    color: #3a3a3a;
    transition: 0.2s;
}

.mobile-menu-nav ul li.current-menu-item a,
.mobile-menu-nav ul li a:hover {
    color: #cc2183;
}

.portfolio-section .home-section-title {
    color: #cc2183;
}

.filter-button {
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
    color: #3a3a3a;
    margin-right: 25px;
    transition: 0.2s;
    text-transform: uppercase;
}

.filter-hold {
    margin-bottom: 40px;
}

.filter-button:last-child {
    margin-right: 0;
}

.filter-button.active,
.filter-button:hover {
    color: #3ebcab;
}

.grid-container {
    min-height: 400px;
    margin-left: -0.5%;
    width: calc(100% + 1%);
}

.portfolio-item {
    float: left;
    width: 32%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 10px;
}

.portfolio-item-image {
    position: relative;
    background-size: cover!important;
    padding-bottom: 67%;
}

.portfolio-item-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.6s;
}

.portfolio-item-details:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3ebcab;
    opacity: 0.85;
}

.portfolio-item-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.portfolio-item-title {
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}

.portfolio-item-subtitle {
    text-align: center;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    opacity: 1;
}

.portfolio-item a:hover .portfolio-item-details {
    opacity: 1;
}

.portfolio-large-item-hold {
    display: none;
}

.portfolio-large-item-top {
    width: 100%;
    float: left;
}

.portfolio-large-image {
    float: left;
    width: 65%;
    background-size: cover!important;
    padding-bottom: 44%;
}

.portfolio-large-item-content {
    float: left;
    width: 35%;
    padding-left: 35px;
}

.portfolio-large-item-hold.fancybox-content {
    max-width: 1110px;
    width: 100%;
    background: transparent;
    padding: 0;
    padding-top: 80px;
}

.fancybox-slide--html {
    padding: 80px 88px;
}

.portfolio-large-item {
    padding: 18px;
    background: #fff;
    width: 100%;
    float: left;
}

.portfolio-large-item-title {
    font-size: 28px;
    font-weight: 500;
    color: #cc2183;
    margin-bottom: 20px;
}

.portfolio-large-item-text {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}

.fancybox-container {
    font-family: 'Oswald', sans-serif!important;
}

.portfolio-large-item-list table tbody {
    border: none;
    background: transparent;
}

.portfolio-large-item-list td {
    padding: 5px 0;
}

.portfolio-large-item-list td a {
    color: inherit;
    transition: 0.2s;
}

.portfolio-large-item-list td a:hover {
    opacity: 0.8;
}

.portfolio-large-item-list td:nth-child(odd) {
    font-size:17px;
    font-weight: 600;
    width: 20%
}

.portfolio-large-item-list td:nth-child(even) {
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
}

.portfolio-large-item-list tr:nth-child(even) {
    background: transparent;
}


.portfolio-list-left {
    width: 15%;
    font-size:17px;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 10px;
}

.portfolio-list-right {
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-large-item-bottom {
    margin-top: 18px;
    width: 100%;
    float: left;
}

.portfolio-large-item-bottom-image {
    background-size: contain!important;
    width: 300px;
    height: 200px;
    /* padding-bottom: 104%; */

}

.portfolio-large-item-bottom ul li {
    width: 31%;
    float: left;
    margin-right: 3.5%;
}

.portfolio-large-item-bottom ul li:last-child {
    margin-right: 0;
}

.fancybox-close-small {
    right: 40px;
}

.fancybox-close-small svg {
    display: none;
}

.fancybox-close-small:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 43px;
    height: 43px;
    background: url('../img/close.png') no-repeat center center;
    background-size: contain!important;
}

.fancybox-navigation .fancybox-button--arrow_left {
    background-size: contain!important;
    background: url('../img/slider-prev.png');
    width: 43px;
    height: 43px;
    left: 25px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    background: url('../img/slider-next.png');
    width: 43px;
    height: 43px;
    right: 25px;
    background-size: contain!important;
}

.fancybox-button svg {
    display: none;
}

.portfolio-large-item-socials ul li {
    display: inline-block;
    margin-right: 10px;
}

.portfolio-large-item-socials ul li:last-child {
    margin-right: 0;
}

.portfolio-large-item-socials ul li a {
    display: inline-block;
    transition: 0.2s;
}

.portfolio-large-item-list {
    margin-bottom: 15px;
}

.portfolio-large-item-socials ul li a:hover {
    opacity: 0.8;
}

.portfolio-large-item-socials ul li a img {
    max-height: 25px;
}

.portfolio-section {
    padding-bottom: 60px;
}

/*gravity forms home form*/

.gform_wrapper div.validation_error {
    display: none!important;
}

.gform_wrapper {
    margin: 0!important;
}

.home-section-form-hold .ginput_container input,
.home-section-form-hold .ginput_container input:focus,
.home-section-form-hold .ginput_container input:active {
    border: none!important;
    box-shadow: none!important;
    border-bottom: 2px solid #fff!important;
    background: transparent!important;
    font-size: 23px!important;
    line-height: 1!important;
    color: #fff!important;
    padding-left: 13%!important;
}

.home-section-form-hold .gfmc-column .ginput_container input,
.home-section-form-hold .gfmc-column .ginput_container input:focus,
.home-section-form-hold .gfmc-column .ginput_container input:active {
    padding-left: 25%!important;
}



.gfmc-row-1-col-1-of-2 {
    padding-right: 15px!important;
}

.gfmc-row-1-col-2-of-2 {
    padding-left: 15px!important;
}

body .gform_wrapper ul li.gfield {
    margin: 0!important;
}

.home-section-form-hold .gform_wrapper ul.gform_fields li.gfield {
    padding: 0!important;
    position: relative!important;
}

.home-section-form-hold .gform_wrapper .top_label .gfmc-column .gfield_label, .gform_wrapper legend.gfield_label {
    width: 25%!important;
}

.home-section-form-hold .gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label {
    width: 13%!important;
    position: absolute!important;
    background: #3ebcab!important;
    font-size: 23px!important;
    color: #fff!important;
    line-height: 1!important;
    bottom: 0px!important;
    font-weight: 400!important;
    padding-bottom: 10px!important;
}

.home-section-form-hold .gform_wrapper .gform_footer {
    text-align: center!important;
    padding-bottom: 0!important;
}

.main-container .gform_wrapper .gform_footer input[type=submit],
.main-container .gform_wrapper .gform_footer input[type=submit]:focus,
.main-container .gform_wrapper .gform_footer input[type=submit]:active {
    display: inline-block!important;
    font-size: 20px!important;
    font-weight: 500!important;
    background: #138c88!important;
    text-align: center!important;
    transition: 0.2s!important;
    padding: 10px 30px !important;
    text-transform: uppercase!important;
    letter-spacing: 0.06em!important;
    margin: 0!important;
}

.home-section-form-hold .gform_wrapper .gform_footer input[type=submit]:hover {
    opacity: 0.8!important;
}

.validation_message {
    display: none!important;
}

.gform_wrapper.gform_validation_error .top_label input.medium, .gform_wrapper.gform_validation_error .top_label select.medium {
    width: 100%!important;
}
.gfield_error {
    border: none!important;
    background: none!important;
    max-width: 100%!important;
}

.home-section-form-hold .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100%!important;
}

.main-container .gfield_error .ginput_container input,
.main-container .gfield_error .ginput_container input:focus,
.main-container .gfield_error .ginput_container input:active {
    border-color: #f00!important;
}

.main-container .gfield_error .ginput_container textarea,
.main-container .gfield_error .ginput_container textarea:focus,
.main-container .gfield_error .ginput_container textarea:active {
    border-color: #f00!important;
}

.gfield_required {
    display: none!important;
}
/*gravity forms home form*/

/*gravity forms contact form*/

.contact-form-hold .gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
    margin-bottom: 10px!important;
    font-size: 21px!important;
    font-weight: 400!important;
    color: #505050!important;
    display: block!important;
}

.contact-form-hold .ginput_container input,
.contact-form-hold .ginput_container input:focus,
.contact-form-hold .ginput_container input:active {
    box-shadow: none!important;
    border: 1px solid #000!important;
    font-size: 16px!important;
    height: 30px!important;
    margin: 0!important;
    padding: 5px 10px!important;
}

.contact-form-hold .gform_wrapper .top_label div.ginput_container {
    margin-top: 0!important;
}

.contact-form-hold .gform_wrapper .gform_fields li.gfield {
    margin-bottom: 30px!important;
}

.contact-form-hold .gfield_checkbox {
    padding-left: 20px!important;
}

.contact-form-hold .gfield_checkbox li {
    display: inline-block!important;
    margin-right: 12px!important;
    margin-bottom: 10px!important;
}
.contact-form-hold .gfield_checkbox li input {
    display: none!important;
}

.contact-form-hold .gfield_checkbox li input + label {
    width: 100%!important;
    max-width: 100%!important;
    position: relative!important;
    margin: 0!important;
    padding-left: 17px!important;
    font-size: 18px!important;
    font-weight: 400!important;
}

.contact-form-hold .gfield_checkbox li input + label:before {
    content: '' !important;
    position: absolute!important;
    top: 6px!important;
    left: 0!important;
    width: 10px!important;
    height: 15px!important;
    border: 1px solid #000!important;
}

.contact-form-hold .gfield_checkbox li input:checked + label:after{
    position: absolute!important;
    top: 2px!important;
    left: 1px!important;
    font-size: 16px!important;
    content: 'X' !important;
}

.contact-form-hold .ginput_container textarea,
.contact-form-hold .ginput_container textarea:focus,
.contact-form-hold .ginput_container textarea:active {
    box-shadow: none!important;
    border: 1px solid #000!important;
    font-size: 16px!important;
    margin: 0!important;
    padding: 5px 10px!important;
    resize: none!important;
    height: 160px!important;
}

.gform_wrapper .gform_footer {
    padding: 0!important;
    margin: 0!important;
}

.gform_wrapper ul.gform_fields li.gfield {
    padding: 0!important;
}

.main-container .gfield_error .ginput_container .gfield_checkbox li input + label:before{
    border-color: #f00!important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: 1!important;
}



/*gravity forms contact form*/







/*animations*/

.animation-element {
    opacity: 0;
}

.animation-element.fade-in-up.in-view {
    -webkit-animation: fade-in-up 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
    animation: fade-in-up 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
}

.animation-element.fade-in-up2.in-view {
    -webkit-animation: fade-in-up2 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s both;
    animation: fade-in-up2 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s both;
}

@-webkit-keyframes fade-in-up {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-up {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


@-webkit-keyframes fade-in-up2 {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-up2 {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


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

    .intro {
        padding-top: 110px;
        padding-bottom: 140px;
    }

    .intro-logo img {
        max-height: 140px;
    }

    .intro-text {
        font-size: 25px;
    }

    .intro.no-content {
        height: 160px;
    }

    .testimonials-title {
        font-size: 40px;
    }

}





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

    .intro.no-content {
        height: 120px;
        margin-bottom: 35px;
    }

    .intro.with-logo .intro-logo img {
        max-height: 65px;
    }

    .intro.with-logo {
        padding-top: 28px;
        padding-bottom: 27px;
        margin-bottom: 35px;
    }

    .main-container {
        padding-top: 78px;
    }

    .header-nav {
        display: none;
    }

    .mobile-header-nav {
        display: block;
        padding-top: 32px;
    }

	.hamburger {
		display: inline-block;
	}

    .header-logo a img {
        max-height: 40px;
    }

    .home-services-item-icon img {
        max-height: 50px;
    }
    .home-services-item-text {
        font-size: 20px;
    }

    .why-us-left {
        margin-bottom: 15px;
        padding: 0;
    }

    .why-us-right {
        padding: 0;
    }

    .why-us-title {
        font-size: 45px;
    }

    .why-us-text {
        font-size: 23px;
        margin-bottom: 25px;
    }

    .why-us-more a {
        font-size: 24px;
    }

    .why-us-section {
        padding-bottom: 80px;
    }

    .home-portfolio-list ul li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 2%;
    }

    .home-portfolio-list ul li:nth-child(3n) {
        margin-right: 2%;
    }

    .home-portfolio-list ul li:nth-child(2n) {
        margin-right: 0;
    }

    .home-section-title {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .home-portfolio-section {
        padding: 40px 0 60px;
    }

    .home-portfolio-section:before {
        top: -33px;
        height: 66px;
    }

    .home-portfolio-more a {
        margin-bottom: 20px;
    }

    .home-services-left {
        width: 53%;
    }
    .home-services-right {
        top: 80px;
        width: 61%;
    }
    .home-services-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .home-services-bottom-list ul li {
        font-size: 22px;
    }

    .home-services-hold {
        padding-top: 40px;
    }

    .footer-column:nth-child(1){
        padding-right: 20px;
    }
    .footer-column {
        padding-right: 20px;
    }

    .footer-column-title {
        font-size: 18px;
    }
    .footer-title-text {
        padding: 5px 7px 5px 0;
    }

    .footer-contact-list ul li a {
        font-size: 16px;
    }
    .footer-featured-list ul li a {
        font-size: 16px;
    }
    .footer-title-icon img {
        max-height: 14px;
    }
    .footer-title-icon {
        right: -20px;
        top: 4px;
    }

    .btn-light-green,
    .btn-light-green:focus,
    .btn-light-green:active {
        font-size: 22px;
    }

    .about-btn-list ul li {
        margin-right: 30px;
    }

    .about-me-bg-image {
        padding-bottom: 47%;
    }

    .about-title {
        font-size: 30px;
    }

    .about-me-text {
        font-size: 20px;
    }

    .about-me-section {
        padding-bottom: 55px;
    }

    .memorial-section .about-me-bg-image {
        padding-bottom: 71%;
    }

    .memorial-section:before {
        top: -33px;
        height: 66px;
    }

    .memorial-section .about-me-content {
        padding-top: 20px;
    }

    .memorial-quote {
        padding: 0;
        font-size: 22px;
    }

    .about-me-content {
        padding-left: 30px;
    }

    .about-image-right .about-me-content {
        padding-right: 30px;
    }

    .testimonials-title {
        font-size: 35px;
    }

    .testimonials-subtitle {
        font-size: 20px;
    }

    .testimonials-text {
        font-size: 18px;
    }

    .testimonials-author-name {
        font-size: 16px;
    }

    .testimonials-author-position {
        font-size: 16px;
    }

    .owl-nav-hold a {
        width: 34px;
        height: 34px;
    }

    .about-us-contact-section .about-title {
        margin-bottom: 25px;
    }

    .btn-pink,
    .btn-pink:focus,
    .btn-pink:active {
        font-size: 25px;
    }

    .about-us-contact-section {
        padding-top: 45px;
        padding-bottom: 60px;
    }

    .about-contact-image img {
        max-height: 245px;
    }

    .contacts-text {
        font-size: 20px;
    }

    .services-text {
        font-size: 22px;
    }

    .services-list ul li {
        font-size: 22px;
    }

    .services-image {
        padding-bottom: 68%;
    }

    .services-list {
        padding: 0;
    }

    .services-list ul li {
        width: 30%;
        margin-right: 5%;
    }

    .services-list ul li:nth-child(4n) {
        margin-right: 5%;
    }

    .services-list ul li:nth-child(3n){
        margin-right: 0;
    }

    .portfolio-large-item-content {
        width: 100%;
        padding-left: 0;
    }

    .portfolio-large-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .filter-button {
        font-size: 20px;
    }

    .filter-hold {
        margin-bottom: 25px;
    }

    .gfmc-column {
        width: 100%!important;
        padding: 0!important;
    }

    .home-section-form-hold .gform_wrapper .top_label .gfmc-column .gfield_label, .gform_wrapper legend.gfield_label {
        width: 15%!important;
    }
    .home-section-form-hold .gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label {
        width: 15%!important;
        font-size: 20px!important;
    }

    .home-section-form-hold .gfmc-column .ginput_container input,
    .home-section-form-hold .gfmc-column .ginput_container input:focus,
    .home-section-form-hold .gfmc-column .ginput_container input:active {
        padding-left: 15%!important;
    }

    .home-section-form-hold .ginput_container input,
    .home-section-form-hold .ginput_container input:focus,
    .home-section-form-hold .ginput_container input:active {
        padding-left: 15%!important;
        font-size: 20px!important;
    }

}

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

    .row {
        padding: 0 15px;
    }

    .intro.no-content {
        height: 90px;
        margin-bottom: 20px;
    }

    .intro.with-logo .intro-logo img {
        max-height: 35px;
    }

    .intro.with-logo {
        margin-bottom: 20px;
    }

    .intro {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .intro-logo img {
        max-height: 90px;
    }

    .intro-text {
        font-size: 20px;
    }

    .home-services-list ul li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 2%;
    }

    .home-services-list ul li:nth-child(2n) {
        margin-right: 0;
    }

    .home-services-item-text {
        font-size: 18px;
    }

    .home-services-item-icon img {
        max-height: 40px;
    }

    .home-services-list-section {
        margin-bottom: 25px;
    }

    .why-us-title {
        font-size: 35px;
    }
    .why-us-text {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .why-us-more a {
        font-size: 22px;
    }

    .why-us-section {
        padding-bottom: 50px;
    }

    .home-portfolio-list ul li {
        width: 100%;
        margin-right: 0!important;
    }

    .home-section-title {
        font-size: 30px;
    }

    .home-portfolio-more a {
        font-size: 22px;
    }

    .home-portfolio-item-title {
        font-size: 28px;
    }

    .home-portfolio-item-subtitle {
        font-size: 19px;
    }

    .home-services-left {
        width: 100%;
    }

    .home-services-right {
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
    }

    .home-services-hold {
        padding-bottom: 40px;
    }

    .home-services-image {
        box-shadow: none;
        padding-bottom: 50%;
    }

    .home-services-right-content {
        padding: 20px;
    }
    .home-services-title {
        font-size: 26px;
    }

    .home-services-bottom-list ul li {
        font-size: 20px;
    }

    .footer-logo img {
        max-height: 60px;
    }
    .footer-logo {
        margin-bottom: 15px;
    }

    .footer-column {
        text-align: left;
        margin-bottom: 15px;
    }

    .footer-featured-list ul li {
        text-align: left;
        width: 34%;
    }

    .footer {
        padding-top: 15px;
        padding-bottom: 30px;
    }

    .btn-green,
    .btn-green:focus,
    .btn-green:active {
        font-size: 18px;
    }

    .main-container .gform_wrapper .gform_footer input[type=submit],
    .main-container .gform_wrapper .gform_footer input[type=submit]:focus,
    .main-container .gform_wrapper .gform_footer input[type=submit]:active {
        font-size: 18px!important;
        width: auto!important;
    }

    .btn-light-green,
    .btn-light-green:focus,
    .btn-light-green:active {
        font-size: 18px;
    }

    .about-btn-list ul li {
        margin-right: 7px;
    }

    .about-me-bg-image {
        padding-bottom: 95%;
        margin-bottom: 15px;
    }

    .about-me-content {
        padding-left: 0;
    }

    .about-title {
        font-size: 25px;
    }

    .about-me-text {
        font-size: 18px;
    }

    .about-me-section {
        padding-bottom: 55px;
    }

    .memorial-section .about-me-bg-image {
        padding-bottom: 141%;
    }

    .memorial-section .about-me-content {
        padding: 0;
        margin-bottom: 15px;
    }

    .memorial-quote {
        padding: 0;
        font-size: 20px;
    }
    .memorial-quote span {
        font-size: 17px;
    }

    .testimonials-title {
        font-size: 27px;
    }

    .testimonials-subtitle {
        font-size: 18px;
    }

    .testimonials-text {
        font-size: 16px;
    }

    .testimonials-author-name {
        font-size: 14px;
    }

    .testimonials-author-position {
        font-size: 14px;
    }

    .owl-nav-hold a {
        width: 25px;
        height: 25px;
    }

    .about-contact-image img {
        max-height: 200px;
    }

    .about-us-contact-section {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .btn-pink,
    .btn-pink:focus,
    .btn-pink:active {
        font-size: 22px;
    }

    .checkbox-list {
        padding-left: 0;
    }

    .contacts-text {
        font-size: 18px;
    }

    .contact-submit-hold {
        padding-left: 0;
    }

    .services-text {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .our-services-section .about-me-content {
        margin-bottom: 20px;
    }

    .services-list ul li {
        font-size: 20px;
    }

    .services-image {
        padding-bottom: 136%;
    }

    .services-list ul li {
        width: 49%;
        margin-right: 2%;
    }

    .services-list ul li:nth-child(3n) {
        margin-right: 2%;
    }

    .services-list ul li:nth-child(2n){
        margin-right: 0;
    }

    .our-services-section {
        padding-bottom: 70px;
    }

    .fancybox-slide--html {
        padding: 35px 30px;
    }

    .fancybox-close-small {
        width: 25px;
        height: 25px;
    }

    .fancybox-close-small:after {
        width: 25px;
        height: 25px;
    }

    .portfolio-large-item-hold.fancybox-content {
        padding-top: 35px;
    }

    .fancybox-close-small {
        right: 5px;
    }

    .fancybox-navigation .fancybox-button--arrow_left{
        height: 25px;
        width: 25px;
        left: 2px;
    }

    .fancybox-navigation .fancybox-button--arrow_right {
        width: 25px;
        height: 25px;
        right: 2px;
    }

    .portfolio-large-image {
        margin-bottom: 10px;
    }

    .portfolio-large-item {
        padding: 10px;
    }

    .portfolio-large-item-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .portfolio-large-item-text {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .portfolio-large-item-list td:nth-child(even) {
        font-size: 15px;
    }

    .portfolio-large-item-list td:nth-child(odd) {
        font-size: 15px;
        width: 30%;
    }

    .filter-button {
        font-size: 17px;
        margin-right: 10px;

    }

    .filter-hold {
        margin-bottom: 20px;
    }

    .grid-container {
        width: 100%;
        margin-left: 0;
    }

    .portfolio-item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .home-section-form-hold .gform_wrapper .top_label .gfmc-column .gfield_label, .gform_wrapper legend.gfield_label {
        width: 33%!important;
    }
    .home-section-form-hold .gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label {
        width: 33%!important;
        font-size: 18px!important;
    }

    .home-section-form-hold .gfmc-column .ginput_container input,
    .home-section-form-hold .gfmc-column .ginput_container input:focus,
    .home-section-form-hold .gfmc-column .ginput_container input:active {
        padding-left: 33%!important;
    }

    .home-section-form-hold .ginput_container input,
    .home-section-form-hold .ginput_container input:focus,
    .home-section-form-hold .ginput_container input:active {
        padding-left: 33%!important;
        font-size: 18px!important;
    }

    .contact-form-hold .gfield_checkbox {
        padding-left: 0!important;
    }

}
