@charset "UTF-8";
@import "initial.rtl.css?v=1.0.98";
@import "fonts.rtl.css?v=1.14";


html, body{
    font-family: "Yekan Bakh";
    font-size: 16px;
    line-height: 1.8rem;
    direction: rtl !important;
    background-color: #E5E5E5;
}
body.en{
	direction: ltr !important;
	font-size: 17px;
}
body{
	overflow-x: hidden;
}

main section.homepage-intro{
    background: url("../img/bg-homepage.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
    padding-top: 1rem;
    padding-bottom: 9rem;
}

main section.bg-noise{
    position: relative;
    z-index: 1;
}
main section.bg-noise:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: url("../img/noise.png") no-repeat;
    background-size: cover;
}

main section.bg-noise2{
    position: relative;
    z-index: 1;
}
main section.bg-noise2:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: url("../img/noise2.png") no-repeat;
    background-size: cover;
}

main section.bg-dark-cover{
    position: relative;
    z-index: 1;
}
main section.bg-dark-cover:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: var(--ultradark);
    opacity: 0.8;
}

main section.bg-dark-cover > div{
    position: relative;
    z-index: 3;
}

main section.bg-secondary-cover{
    position: relative;
    z-index: 1;
}
main section.bg-secondary-cover:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: var(--secondary);
    opacity: 0.95;
}

main section.bg-secondary-cover > div{
    position: relative;
    z-index: 3;
}

main section.bg-black-cover{
    position: relative;
    z-index: 1;
}
main section.bg-black-cover:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(0,0,0,0.7);
}
main section.bg-blur:before{
	backdrop-filter: blur(6px);
}

main section.bg-black-cover > div{
    position: relative;
    z-index: 3;
}

main section ul.ux-writing-benefits li {
    padding-right: 2rem;
    position: relative;
}
main section ul.ux-writing-benefits li:before {
    content: "";
    width: 0.85rem;
    height: 0.85rem;
    display: block;
    position: absolute;
    top: 0.4rem;
    right: 0;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
}

main section .faq .question {
    padding: 0.75rem 4.4rem 0.45rem;
    border: 1px solid rgba(28, 30, 32, 0.3);
}
main section .faq .question:before {
    font-family: 'uxwh-fonticon';
    content: "t";
    color: var(--white);
    background: var(--secondary);
    font-size: 0.8rem;
    border-radius: 6px;
    display: block;
    position: absolute;
    height: 21px;
    line-height: 22px;
    width: 21px;
    text-align: center;
    top: 1rem;
    right: 2rem;
}
main section .faq .question:after {
    font-family: 'uxwh-fonticon';
    content: "q";
    color: var(--black);
    opacity: 0.5;
    font-size: 0.8rem;
    border-radius: 6px;
    display: block;
    position: absolute;
    height: 19px;
    line-height: 19px;
    width: 19px;
    text-align: center;
    top: calc(50% - 8px);
    left: 1.6rem;
    transition: all linear 200ms;
}
main section .faq.is-active .question:after{
    transform: rotate(-90deg);
    transform-origin: center;
}
main section .faq .answer{
    margin: 0 2.3rem;
    border-right: 3px solid var(--secondary);
    transition: all linear 200ms;
    max-height: 0px;
    overflow: hidden;
}
main section .faq.is-active .answer{
    margin: 1.5rem 2.3rem 3rem;
    max-height: unset;
}

main section div.bg-noise{
    position: relative;
    z-index: 1;
}
main section div.bg-noise:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: url("../img/noise.png") no-repeat;
    background-size: cover;
}

main section .header-over-section{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4rem;
    z-index: 3;
}
main section .content-search{
    border: 1px solid rgba(105, 107, 108, 0.3);
    border-radius: 999px;
    padding: 0.26rem 1rem;
    background: none;
}
main section .content-search:focus-within{
	border: 1px solid rgba(105, 107, 108, 1) !important;
}
main section .content-search input[type="text"]{
    display: inline-block;
    width: calc(100% - 40px);
    border: none;
    background: none;
    vertical-align: top;
    font-size: 1rem;
    font-family: 'Yekan Bakh';
    padding: 0.3rem 0 0 0;
}
main section .content-search input[type="text"]:focus::placeholder{
	color: transparent !important;
}
main section .content-search input[type="submit"]{
    font-family: "uxwh-fonticon" !important;
    border: none;
    background: none;
    font-size: 1.3rem;
    vertical-align: top;
    opacity: 0.5;
    line-height: 1.8rem;
	cursor: pointer;
}
main section .content-search input[type="submit"]:focus{
	color: var(--secondary) !important;
}
main section .book-card img {
    box-shadow: 2px 2px 10px 2px #ccc;
}
main section .book-card .more-details{
    opacity: 0;
}
main section .book-card:hover .more-details{
    opacity: 1;
}
main section .book-content a {
    color: #4eb5ac !important;
}

main section .excerpt p{
    margin-bottom: 1rem;
}
main section .share-popup {
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: -5rem;
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 40px 3px rgba(28,30,32,0.08);
    display: none;
}
main section .share-popup.is-active{
	display: block;
}
main section .table-of-content{
    background: rgba(28, 30, 32, 0.05);
    padding: 2rem;
    border-radius: 1rem;
}
main section .table-of-content ul{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
main section .wp-block-uagb-table-of-contents {
    background: rgba(28, 30, 32, 0.05);
    padding: 2rem;
    border-radius: 1rem;
	margin-bottom: 2rem;
}
main section .wp-block-uagb-table-of-contents .uagb-toc__wrap {
    background: no-repeat !important;
    padding: 0 !important;
}
main section .wp-block-uagb-table-of-contents .uagb-toc__title {
    font-weight: 900;
}

main section .wp-block-uagb-table-of-contents ol.uagb-toc__list {
    columns: 2;
    margin-top: 1rem;
}

main section .wp-block-uagb-table-of-contents li.uagb-toc__list {
    position: relative;
    padding-right: 1.5rem;
    font-weight: 600;
	list-style: none !important;
}
main section .wp-block-uagb-table-of-contents li.uagb-toc__list:hover a {
    color: var(--secondary) !important;
}

main section .wp-block-uagb-table-of-contents li.uagb-toc__list:before {
    content: "\2688";
    font-size: inherit;
    transform: scale(0.7);
    position: absolute;
    top: 0.15rem;
    right: 0;
    color: var(--secondary);
}

main section .wp-block-uagb-table-of-contents li.uagb-toc__list ul.uagb-toc__list {
    display: table-cell;
}

main section .wp-block-uagb-table-of-contents li.uagb-toc__list ul.uagb-toc__list li {
    font-size: 0.9rem;
    font-weight: 400;
}

main section .wp-block-uagb-table-of-contents li.uagb-toc__list ul.uagb-toc__list li:before {
    opacity: 0.5;
}

main section .uagb-faq-item, main section .uagb-faq-item:active{
	cursor: pointer;
	border: none !important;
	outline: none !important;
}
main section .uagb-faq-item .uagb-faq-questions{
	padding: 0 !important;
}
main section .uagb-faq-item .uagb-faq-questions-button.uagb-faq-questions {
    position: relative;
}
main section .uagb-faq-item .uagb-question {
    border: 1px solid rgba(28, 30, 32, 0.3);
    width: 100%;
    display: block;
    font-weight: 800;
    padding: 0.75rem 4.4rem 0.45rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
    position: relative;
}
main section .uagb-faq-item .uagb-question:after {
    font-family: 'uxwh-fonticon';
    content: "q";
    color: var(--black);
    opacity: 0.5;
    font-size: 0.8rem;
    border-radius: 6px;
    display: block;
    position: absolute;
    height: 19px;
    line-height: 19px;
    width: 19px;
    text-align: center;
    top: calc(50% - 8px);
    left: 1.6rem;
    transition: all linear 200ms;
}
main section  .uagb-faq-item.uagb-faq-item-active .uagb-question:after {
    transform: rotate(
            -90deg);
    transform-origin: center;
}
main section .uagb-faq-item .uagb-faq-icon-wrap svg {
    width: 11px;
    fill: #fff;
}
main section .uagb-faq-item .uagb-icon-active.uagb-faq-icon-wrap {
    display: none !important;
}
main section .uagb-faq-item .uagb-icon.uagb-faq-icon-wrap {
    position: absolute;
    width: 19px !important;
    height: 19px !important;
    background: var(--secondary);
    text-align: center;
    padding-top: 0px;
    border-radius: 6px;
    top: 1rem;
    right: 1.5rem;
	display: block  !important;
	margin-right: 0 !important;
}
main section .uagb-faq-item .uagb-faq-content {
    padding: 0 1rem 0 1rem;
    margin-right: 2rem;
    border-right: 3px solid var(--secondary);
	max-height: 0px;
	overflow: hidden;
	transition: all linear 200ms;
}
main section .uagb-faq-item .uagb-faq-content p{
	font-weight: 400 !important;
}

main section .uagb-faq-item.uagb-faq-item-active .uagb-faq-content{
	max-height: 200px;
	margin-bottom: 1rem;
	margin-top: 1rem;
}


main section .content h2, main section .podcast-content h2{
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
main section .content h3, main section .podcast-content h3{
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
main section .content h4, main section .podcast-content h4{
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
main section .content p{
    margin-bottom: 1rem;
}
main section .content p a{
	color: var(--secondary);
}
main section .content p a:hover{
	color: var(--secondary-dark);
}
main section .content p.is-style-sutitr {
    font-size: 1.2rem;
    font-weight: 900;
    padding: 0.5rem 1.5rem 0.5rem 0;
    border-right: 2px solid var(--secondary);
    line-height: 2.4rem;
    margin: 1rem 0 1rem;
    display: block;
    width: 55%;
}
main section ul{
    margin: 1.5rem 0;
}
main section ul li{
    position: relative;
    padding-right: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
/* main section ul li:before {
    content: "\2688";
    font-size: inherit;
    transform: scale(0.6);
    position: absolute;
    top: 0.06rem;
    right: 0;
    color: var(--ultradark);
} */
main section ul li a {
    color: #3bb5ac;
}
main section .content figure{
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
main section .content figure figcaption{
    font-size: 0.8rem;
    color: var(--ultradark);
    opacity: 0.5;
    text-align: center;
    margin-top: 0.9rem;
    font-weight: 500;
}

main section .content blockquote{
    background: rgba(53, 181, 172, 0.1);
    padding: 2.5rem 5.75rem 2.5rem 2.5rem !important;
    border-radius: 1rem;
    display: block;
    margin: 2.5rem 0 !important;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: justify;
    position: relative;
}
main section .content blockquote p {
	font-size: 1.125rem !important;
    font-weight: bold !important;
    text-align: justify !important;
	font-style: normal !important;
}
main section .content blockquote:before{
    content: "u";
    font-family: uxwh-fonticon !important;
    color: var(--secondary);
    position: absolute;
    top: 2.6rem;
    right: 2.5rem;
    font-size: 2rem;
}
main section .content blockquote cite{
    width: 100%;
    display: block;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ultradark);
    opacity: 0.5;
}
main section .podcast-content iframe {
    width: 100%;
    margin-top:1rem
}
main section .podcast-content p a{
	color: var(--secondary);
}
main section .aboutus-content p.bulleted {
    padding-right: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 800;
}

main section .aboutus-content p.bulleted::before {
   content: "\2688";
   font-size: inherit;
   transform: scale(0.5);
   position: absolute;
   top: 0.05rem;
   right: -0.2rem;
   color: var(--secondary);
}
main section .aboutus-content p.indented{
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
main section .aboutus-content h2{
    font-size: 2.5rem;
    font-weight: 900;
    margin: 2rem 0 1rem;
}
main section .aboutus-content figure{
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
main section .aboutus-content figure img{
    border-radius: 1rem;
}
main section .aboutus-content figure figcaption{
    font-size: 0.8rem;
    color: var(--ultradark);
    opacity: 0.5;
    text-align: center;
    margin-top: 0.9rem;
    font-weight: 500;
}
main section .aboutus-content ul li{
    position: relative;
    padding-right: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
main section .aboutus-content ul li:before {
    content: "\2688";
    font-size: inherit;
    transform: scale(0.6);
    position: absolute;
    top: 0.06rem;
    right: 0;
    color: var(--secondary);
}

main section .service-card {
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all linear 150ms;
    cursor: pointer;
}
main section .service-card:hover {
    box-shadow: 0 0 40px 6px rgba(0, 0, 0, 0.08);
}

main section .comment-card {
    background: rgba(28, 30, 32, 0.03);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}
main section .comment-card .comment-avatar img {
    border-radius: 50%;
}
main section .comment-card .comment-name {
    font-weight: 600;
    padding-top: 6px;
    margin-right: 1rem;
}
main section .comment-card .comment-date {
    padding-top: 7px;
    font-size: 0.9rem;
    opacity: 0.5;
    margin-right: 1rem;
}
main section .comment-card .comment-text {
    padding-right: 3.5rem;
}

main section form.notfound-search {
    background: rgba(105, 107, 108, 0.5);
    padding: 0.5rem;
    border-radius: 999px;
    display: block;
}
main section form.notfound-search input[type="text"] {
    display: inline-block;
    width: calc(100% - 47px);
    background: none;
    border: none;
    color: #fff;
    outline: none;
    text-indent: 1rem;
}
main section form.notfound-search input[type="submit"] {
    display: inline-block;
    font-family: 'uxwh-fonticon';
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    vertical-align: top;
}

@media (max-width: 575px) {
    body,html{
        font-size: 13px;
    }
    header, header.is-stick, header.is-single {
        height: 75px;
    }
    header .header-menu li:hover:before{
        display: none;
    }
    main section.mobile-header-section div img{
        height: 230px;
        width: auto !important;
        transform: translateX(18%);
        margin-bottom: 120px;
        max-width: unset !important;
    }
    main section.mobile-header-section-2 div img{
        height: 200px;
		width: auto !important;
		transform: translateX(18%) scale(-1, 1);
		margin-bottom: 160px;
		max-width: unset !important;
    }
    main section.mobile-header-section-3 div img {
        height: 220px;
        width: auto !important;
        transform: translateX(26%);
        margin-bottom: 150px;
        max-width: unset !important;
    }
	main section.mobile-header-section-4 div img{
		margin-bottom: 170px;
		height: 170px;
		width: auto !important;
		max-width: unset !important;
		transform: translateX(68px);
	}
	main section.mobile-header-section-5 div img {
		height: 168px;
		width: auto !important;
		transform: translateX(18%);
		margin-bottom: 188px;
		max-width: unset !important;
	}
	main section.homepage-intro{
		background-size: initial !important;
	}
	main section .content p {
		font-size: 1.2rem;
		line-height: 2.1rem;
	}
    main section .service-card {
        box-shadow: 0 0 40px 6px rgba(0, 0, 0, 0.08);
    }

    main section .posts-filter-select {
        background: var(--secondary);
        color: #fff;
        padding: 0.4rem 1rem 0.4rem 0;
        border-radius: 999px;
        position: relative;
    }
    main section .posts-filter-select:before {
        content: "q";
        font-family: 'uxwh-fonticon';
        position: absolute;
        left: 5px;
        top: 5px;
    }
    main section .posts-filtaer-select span {
        font-weight: bold;
    }
    main section .posts-filter-select ul {
        position: absolute;
        background: #fff;
        color: var(--light);
        padding: 1rem;
        white-space: nowrap;
        border-radius: 1rem;
        box-shadow: 0 0 10px 1px #5b5b5b;
        right: 0;
        top: 24px;
        min-width: 100%;
        z-index: 2;
        display: none;
    }
    main section .posts-filter-select.active ul {
        display: block;
    }

    main section form.content-search {
        margin-top: 2rem;
    }
	main section .wp-block-uagb-table-of-contents ol.uagb-toc__list{
		columns: 1 !important;
	}

	main section .content p.is-style-sutitr {
		width: 95%;
	}








    .services_form_wrapper h3.gform_title {
        line-height: 3rem;
        font-size: 2.5rem !important;
    }

    .services_form_wrapper .gf_page_steps .gf_step:nth-child(1) {
        padding-left: 2rem !important;
    }

    .services_form_wrapper .gf_page_steps .gf_step:nth-child(2) {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .services_form_wrapper .gf_page_steps .gf_step:nth-child(3) {
        padding-right: 2rem !important;
    }

    .services_form_wrapper .gf_page_steps .gf_step:nth-child(1):after, .services_form_wrapper .gf_page_steps .gf_step:nth-child(3):after {
        width: 4rem !important;
    }

    .services_form_wrapper .gform_page_fields {
        padding: 1rem;
    }

    .services_form_wrapper .gfield_radio {
        display: block;
        margin-right: 0;
		padding-right: 0;
    }

    .services_form_wrapper .gfield_radio li {
        display: inline-block;
        flex: unset !important;
        width: 50%;
    }

    .services_form_wrapper .gform_fields li.product_name, .services_form_wrapper .gform_fields li.jobtitle_select {
        width: 100% !important;
        padding-left: 0 !important;
    }

    .services_form_wrapper .gform_fields li.jobtype_text {
        width: 100% !important;
        padding-right: 0 !important;
        padding-top: 1rem;
    }

    .services_form_wrapper .gfield_checkbox {
        display: block !important;
        margin-right: 0;
    }

    .services_form_wrapper .gfield_checkbox li {
        width: 50%;
        display: inline-block;
    }
	.services_form_wrapper .gform_fields li.phone_text {
    	width: 100% !important;
    	padding-left: 0 !important;
	}

	.services_form_wrapper .gform_fields li.email_text {
		width: 100% !important;
		padding-right: 0 !important;
	}
	.services_form .page_two .gform_page_footer:before, .services_form .page_three .gform_page_footer:before, .services_form .page_two .gform_page_footer:after, .services_form .page_three .gform_page_footer:after {
		top: 0.9rem !important;
	}
    .contact_form .gform_fields li, .contact_form .gform_footer{
        width: 100% !important;
        float: none;
        display: block !important;
        padding: 0 !important;
    }
    .contact_form .gform_fields li.family_field{
        margin-top: 0.5rem;
    }
	.cooperation_form ul li.family_field{
		width: 100% !important;
		padding-left: 0 !important;
	}
	.cooperation_form ul li.family_field input{
		text-align: right !important;
	}
	.cooperation_form ul li.email_field{
		width: 100% !important;
		padding-right: 0 !important;
	}
	.cooperation_form ul li input{
		text-align: right !important;
	}
	
	
	.newsletter-text{
		display: none;
	}
}



.services_form_wrapper h3.gform_title {
    color: var(--ultradark);
    font-size: 3.125rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: -1px;
}

.services_form_wrapper h3.gform_title span {
    color: var(--secondary);
}
.services_form_wrapper .gf_page_steps {
    text-align: center;
}

.services_form_wrapper .gf_page_steps .gf_step {
    display: inline-block;
    text-align:center;
    margin-top:2rem;
    position: relative;
}
.services_form_wrapper .gf_page_steps .gf_step:nth-child(1) {
    padding-left: 4rem;
}
.services_form_wrapper .gf_page_steps .gf_step:nth-child(2) {
    padding-left: 4rem;
    padding-right: 4rem;
}
.services_form_wrapper .gf_page_steps .gf_step:nth-child(3) {
    padding-right: 4rem;
}
.services_form_wrapper .gf_page_steps .gf_step:before{
    font-family: 'uxwh-fonticon';
    width: 55px;
    height: 55px;
    display: inline-block;
    line-height: 55px;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 9px;
    background: rgba(179, 184, 186, 0.5);
    color:#fff;
}
.services_form_wrapper .gf_page_steps .gf_step:nth-child(1):after {
    content: "";
    display: block;
    position: absolute;
    width: 8.5rem;
    right: 64px;
    height: 1px;
    background: #bdc0c5;
    top: 27px;
}
.services_form_wrapper .gf_page_steps .gf_step:nth-child(3):after {
    content: "";
    display: block;
    position: absolute;
    width: 8.5rem;
    left: 64px;
    height: 1px;
    background: #bdc0c5;
    top: 27px;
}
.services_form_wrapper .gf_page_steps .gf_step:nth-child(1):before{
    content: "Q";
}
.services_form_wrapper .gf_page_steps .gf_step:nth-child(2):before{
    content: "K";
}
.services_form_wrapper .gf_page_steps .gf_step:nth-child(3):before{
    content: "O";
}
.services_form_wrapper .gf_page_steps .gf_step_active{
    font-weight: 800;
}
.services_form_wrapper .gf_page_steps .gf_step_active:before {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: unset;
}
.services_form_wrapper .gf_page_steps .gf_step span.gf_step_number {
    display: none;
}

.services_form_wrapper .gf_page_steps .gf_step span.gf_step_label {
    display: block;
}

.services_form_wrapper .gf_page_steps .gf_step.gf_step_completed:before {
    background: var(--secondary) !important;
    content: "\52" !important;
}
.services_form_wrapper .gf_page_steps .gf_step.gf_step_completed {
    color: var(--secondary);
}

.services_form_wrapper .gform_fields {
    padding: 0;
    margin: 0;
}
.services_form_wrapper .gform_fields:after {
    content: "";
    display: block;
    float: none;
    clear: both;
}
.services_form_wrapper .gform_fields li:before{
    display: none;
    font-size:18px;
}
.services_form_wrapper .gform_fields li.html_field {
    padding: 0;
    margin-top: 4.25rem;
}
.services_form_wrapper .gform_fields li.design_steps_radio {
    margin-top: 2.5rem;
}

.services_form_wrapper .gform_fields li.design_steps_radio label.gfield_label {
    font-weight: bold;
}

.services_form_wrapper .gform_fields li label.gfield_label span.gfield_required {
    display: none;
}

.services_form_wrapper .gform_fields li.design_steps_radio:before {
    color: var(--secondary);
    display: block;
}
.gfield_radio {
    display: flex;
    margin-right: -25px;
    margin-top: 1rem;
	flex-direction: row;
    justify-content: space-between;
    padding-right: 24px;
}

.gfield_radio li {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0;
}

.gfield_radio li label {
    font-weight: bold;
    color: rgba(28,30,32,0.5);
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}
.gfield_radio li label:before{
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 4px;
    right: 0;
    border: 1px solid var(--ultradark);
}
.gfield_radio li input {
    display: none;
}
.gfield_radio li input:checked + label {
    color: var(--secondary);
}
.gfield_radio li input:checked + *::after {
    background: var(--secondary);
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 6px;
    right: 2px;
}
.services_form_wrapper .gform_fields li.product_type{
    margin-top: 3.5rem;
}
.services_form_wrapper .gform_fields li.product_type:before {
    color: var(--secondary);
    display: block;
}
.gfield_checkbox{
    display: flex;
    margin-right: -25px;
    margin-top: 1rem;
}

.gfield_checkbox li {
    flex: 1;
    white-space: nowrap;
    padding: 0;
}

.gfield_checkbox li label {
    font-weight: bold;
    color: rgba(28,30,32,0.5);
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}
.gfield_checkbox li label:before{
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 4px;
    right: 0;
    border: 1px solid var(--ultradark);
}
.gfield_checkbox li input {
    display: none;
}
.gfield_checkbox li input:checked + label {
    color: var(--secondary);
}
.gfield_checkbox li input:checked + *::before{
    background: var(--secondary);
    border-color: var(--secondary);
}
.gfield_checkbox li input:checked + *::after {
    content: "\53";
    font-family: uxwh-fonticon;
    display: block;
    position: absolute;
    top: 6px;
    right: 2px;
    color: var(--white);
    background: none;
    font-size: 10px;
    line-height: 11px;
}
.gform_page.page_one .gform_next_button {
    width: 100%;
    height: 45px;
    font-size: 1rem;
    font-weight: 500;
    background: var(--secondary);
    color: var(--white);
    border-radius: 999px;
    cursor: pointer;
    margin-top: 4rem;
	transition: all linear 200ms;
}
.gform_page.page_one .gform_next_button:hover {
    background: var(--secondary-dark);
}

.services_form_wrapper .gform_fields li.product_name {
    width: 50.01%;
    padding-right: 0;
    float: right;
    color: var(--ultradark);
    padding-left: 1rem;
}
.services_form_wrapper .gform_fields li.jobtype_text {
    padding-right: 0;
    width: calc(49.98%);
    padding-right: 1rem;
    overflow: hidden;
}

.services_form_wrapper .gform_fields li.product_name label {
    font-weight: bold;
}

.services_form_wrapper .gform_fields li.product_name input {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(28, 30, 32, 0.3);
    border-radius: 999px;
    margin-top: 0.6rem;
}
.services_form_wrapper .gform_fields li.jobtitle_select , .services_form_wrapper .gform_fields li.budget_select {
    width: 50.01%;
    padding-right: 0;
    float: right;
    padding-left: 1rem;
    margin-top: 1.25rem;
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected , .services_form_wrapper .gform_fields li.budget_select .budget_selected {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: 0.9rem;
    border: 1px solid rgba(28, 30, 32, 0.3);
    border-radius: 999px;
    margin-top: 0.6rem;
    position: relative;
    cursor: pointer;
}
.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected:before, .services_form_wrapper .gform_fields li.budget_select .budget_selected:before {
    content: "q";
    font-family: 'uxwh-fonticon';
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: center;
    top: 6px;
    left: 18px;
    font-size: 17px;
    color: #ababab;
}
.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected  span , .services_form_wrapper .gform_fields li.budget_select .budget_selected  span {
    line-height: 40px;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(28, 30, 32, 0.6);
}
.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected span.selected, .services_form_wrapper .gform_fields li.budget_select .budget_selected span.selected{
    font-weight: 600;
    color: var(--ultradark);
}
.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown, .services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown {
    background: var(--white);
    width: calc(100% + 2px);
    position: absolute;
    top: -1px;
    right: -1px;
    margin: 0;
    padding: 2rem !important;
    box-shadow: 0 0 9px 0px #ddd;
    border-radius: 1rem;
    display: none;
    z-index: 2;
}
.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown.open, .services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown.open{
    display: block;
}
.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown li, .services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown li {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--normal);
    padding: 0 0 0.5rem 0;
    cursor: pointer;
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown li:last-child, .services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown li:last-child {
    padding-bottom: 0;
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown li:hover , .services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown li:hover {
    font-weight: 600;
    color: var(--black);
}
.services_form_wrapper .gform_fields li.jobtype_text label {
    font-weight: bold;
}

.services_form_wrapper .gform_fields li.jobtype_text textarea {
    width: 100%;
    height: calc(6rem + 150px);
    padding: 1rem;
    border: 1px solid rgba(28, 30, 32, 0.3);
    border-radius: 1rem;
    margin-top: 0.6rem;
}
.services_form .page_two .gform_page_footer, .services_form .page_three .gform_page_footer {
    margin-top: 3.5rem;
	position: relative;
}
.services_form .page_two .gform_page_footer:before, .services_form .page_three .gform_page_footer:before {
    content: "E";
    font-family: 'uxwh-fonticon';
    color: var(--ultradark);
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    display: block;
    font-size: 1.4rem;
    transform:scaleX(-1);
    transform-origin:center;
}
.services_form .page_two .gform_page_footer:after, .services_form .page_three .gform_page_footer:after {
    content: "E";
    font-family: 'uxwh-fonticon';
    color: #fff;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    display: block;
    font-size: 1.4rem;
}

.page_two .gform_page_footer .gform_previous_button, .page_three .gform_page_footer .gform_previous_button {
    display: inline-block;
    width: calc(49.6% - 1rem);
    margin-left: 2rem;
    border: none;
    padding: 0;
    background: rgba(28, 30, 32, 0.1);
    text-align: center;
    height: 45px;
    font-size: 1rem;
    line-height: 49px;
    font-weight: 500;
    color: var(--ultradark);
    border-radius: 999px;
	cursor: pointer;
	transition: all linear 200ms;
}
.page_two .gform_page_footer .gform_previous_button:hover, .page_three .gform_page_footer .gform_previous_button:hover {
	background: rgba(28, 30, 32, 0.3);
}

.page_two .gform_page_footer .gform_next_button, .page_three .gform_page_footer .gform_submit_button {
    width: calc(49.6% - 1rem);
    display: inline-block;
    padding: 0;
    height: 45px;
    background: var(--secondary);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 49px;
    border-radius: 999px;
	transition: all linear 200ms;
}
.page_two .gform_page_footer .gform_next_button:hover, .page_three .gform_page_footer .gform_submit_button:hover {
	background: var(--secondary-dark);
}
.services_form_wrapper .gform_fields li.family_text {
    padding-right: 0;
    margin-top: 4rem;
    width: 100%;
}
.services_form_wrapper .gform_fields li.family_text label {
    font-weight: bold;
}
.services_form_wrapper .gform_fields li.family_text input{
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(28, 30, 32, 0.3);
    border-radius: 999px;
    margin-top: 0.6rem;
}
.services_form_wrapper .gform_fields li.phone_text {
    padding-right: 0;
    margin-top: 1rem;
    width: 50%;
    float: right;
    padding-left: 1rem;
}
.services_form_wrapper .gform_fields li.phone_text label {
    font-weight: bold;
}
.services_form_wrapper .gform_fields li.phone_text input{
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(28, 30, 32, 0.3);
    border-radius: 999px;
    margin-top: 0.6rem;
}
.services_form_wrapper .gform_fields li.email_text {
    padding-right: 0;
    margin-top: 1rem;
    width: 50%;
    padding-right: 1rem;
    display: inline-block;
}
.services_form_wrapper .gform_fields li.email_text label {
    font-weight: bold;
}
.services_form_wrapper .gform_fields li.email_text input{
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(28, 30, 32, 0.3);
    border-radius: 999px;
    margin-top: 0.6rem;
	text-align: left;
}
.services_form_wrapper .validation_error {
    display: none;
}
.services_form_wrapper .gform_fields li .validation_message {
    display: none;
}

.services_form_wrapper .gform_fields .gfield_error input, .services_form_wrapper .gform_fields .gfield_error textarea, .services_form_wrapper .gform_fields .gfield_error select, .services_form_wrapper .gform_fields .gfield_error .gfield_checkbox li label:before, .services_form_wrapper .gform_fields .gfield_error .gfield_radio li label:before  {
    border-color: #f88 !important;
}
.services_form_wrapper .gform_ajax_spinner{
	display: none;
}


.cooperation_form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cooperation_form ul li {
    padding: 0;
    margin-bottom: 0.2rem;
}

.cooperation_form ul li:before {
    display: none;
}

.cooperation_form ul li label {
    font-weight: 600;
}

.cooperation_form ul li.family_field {
    display: inline-block;
    width: 49.99%;
    padding-left: 1rem;
}

.cooperation_form ul li input {
    width: 100%;
    height: 45px;
    border-radius: 999px;
    border: 1px solid rgba(28, 30, 32, 0.3);
    padding: 0 10px;
    font-size: 0.9rem;
    margin-top: 0.1rem;
	text-align: left;
}

.cooperation_form ul li.email_field {
    width: 49.99%;
    display: inline-block;
    padding-right: 1rem;
}

.cooperation_form ul li textarea {
    border: 1px solid rgba(28, 30, 32, 0.3);
    padding: 1rem;
    border-radius: 1rem;
    width: 100%;
    height: 110px;
    margin-top: 0.1rem;
}

.cooperation_form .gform_drop_area {
    background: rgba(28, 30, 32, 0.02);
    padding: 1rem;
    border-radius: 1rem;
    border: 2px dashed rgba(2,30,32,0.3);
    text-align: center;
}

.cooperation_form .gform_drop_area input {
    display: inline-block;
    width: unset !important;
    border: none !important;
    background: none !important;
    padding: 0 2rem !important;
    color: var(--secondary) !important;
    font-weight: 600;
}
.cooperation_form .upload_field label {
    display: none;
}

.cooperation_form .gform_drop_area span {
    position: relative;
    display: inline-block;
}

.cooperation_form .gform_drop_area span:before {content: "x";color: var(--secondary);font-family: 'uxwh-fonticon';font-size: 2rem;opacity: 0.5;position: absolute;top: -3px;right: -43px;}

.cooperation_form .gform_button {
    width: 100%;
    height: 45px;
    background: none;
    border: 1px solid var(--secondary);
    border-radius: 999px;
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.6rem;
	cursor: pointer;
}
.cooperation_form .gform_button:hover{
	background:  var(--secondary) !important; 
		color: #fff !important;
}
.cooperation_form .gform_fields .gfield_error input, .cooperation_form .gform_fields .gfield_error textarea, .cooperation_form .gform_fields .gfield_error select, .cooperation_form .gform_fields .gfield_error .gfield_checkbox li label:before, .cooperation_form .gform_fields .gfield_error .gfield_radio li label:before  {
    border-color: #f88 !important;
}
.cooperation_form .gform_ajax_spinner{
	display: none;
}

.contact_form .gform_fields li label {
    display: none;
}

.contact_form .gform_fields li:before {
    display: none;
}

.contact_form .gform_fields li.subject_text {
    width: 69.97%;
    display: inline-block;
    padding-right: 0;
    padding-left: 1rem;
}

.contact_form .gform_fields li.subject_text textarea {
    border: 1px solid rgba(28,30,32,0.3);
    padding: 1rem;
    border-radius: 1rem;
    width: 100%;
    height: 9rem;
}

.contact_form .gform_fields li.family_field {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    padding-left: 0;
    padding-right: 1rem;
}

.contact_form .gform_fields li.family_field input, .contact_form .gform_fields li.email_field input {
    border: 1px solid rgba(28,30,32,0.3);
    height: 2.5rem;
    padding: 0 1rem;
    border-radius: 999px;
    width: 100%;
}

.contact_form .gform_fields li.email_field {
    width: 30%;
    display: inline-block;
    margin-top: 0.5rem;
    padding-right: 1rem;
}

.contact_form .gform_footer {
    display: inline-block;
    width: 30%;
    padding-right: 1rem;
    margin-top: 0.5rem;
}

.contact_form .gform_footer.top_label input {
    width: 100%;
    height: 2.5rem;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: none;
    border-radius: 999px;
}

.contact_form .gform_fields {
    margin-bottom: 0;
}

.contact_form .gform_fields .gfield_error input, .contact_form .gform_fields .gfield_error textarea, .contact_form .gform_fields .gfield_error select, .contact_form .gform_fields .gfield_error .gfield_checkbox li label:before, .contact_form .gform_fields .gfield_error .gfield_radio li label:before  {
    border-color: #f88 !important;
}
.contact_form .gform_ajax_spinner{
	display: none;
}

.newsletter_form ul li {
    padding: 0;
}

.newsletter_form ul li:before {
    display: none;
}

.newsletter_form ul li label {display: none;}

.newsletter_form ul li input {
    background: #fff;
    border: none;
    padding: 0 10px;
    height: 30px;
    display: block;
    position: relative;
    top: -5px;
    border-radius: 999px;
    width: 100%;
	text-align: left;
}
.newsletter_form ul li.mailchimp_field {
    display: none !important;
}

.newsletter_form .gform_body {
    display: inline-block;
    width: 70%;
}

.newsletter_form .gform_footer {
    width: 29%;
    display: inline-block;
    padding: 0 0.5rem 0 0;
}

.newsletter_form .gform_footer input {
    width: 100%;
    height: 30px;
    position: relative;
    top: -5px;
    border-radius: 999px;
    border: 1px solid #fff;
    background: none;
    color: #ffff;
}
.newsletter_form .gform_footer input:focus::placeholder {
    color: transparent !important;
}

.newsletter_form .gform_footer input:hover {
    background: #fff;
    color: #0a5a55;
    cursor: pointer;
}
.newsletter_form .gform_fields .gfield_error input, .newsletter_form .gform_fields .gfield_error textarea, .newsletter_form .gform_fields .gfield_error select, .newsletter_form .gform_fields .gfield_error .gfield_checkbox li label:before, .newsletter_form .gform_fields .gfield_error .gfield_radio li label:before  {
    border-color: #f88 !important;
}
.newsletter_form .gform_ajax_spinner{
	display: none;
}



.hover{
    transition: all linear 200ms;
}
.hover.bg-dark.border-secondary:hover{
    background-color: var(--secondary) !important;
}
.hover.bg-ultralight.text-ultradark:hover{
    background-color: var(--secondary) !important;
    color: var(--white) !important;
}
.hover.border-light.text-ultradark:hover{
    border-color: var(--secondary) !important;
    color: var(--secondary) !important;
    opacity: 1 !important;
    background-color: rgba(53, 181, 172, 0.1) !important;
}
.hover.text-light.border-light:hover{
    background-color: var(--normal) !important;
    color: var(--white) !important;
}
.hover.bg-secondary:hover{
    background-color: var(--secondary-dark) !important;
}
.hover.border-secondary.text-secondary:hover{
	background-color: var(--secondary) !important;
	color: var(--white) !important;
}
.hover.text-primary.border-primary:hover{
	background-color: var(--primary) !important;
	color: var(--ultradark) !important;
	opacity:1 !important;
}
.hover.bg-secondary.border-white.text-white:hover{
	color: var(--secondary) !important;
	background-color: var(--white) !important;
}
a:hover .hover.text-ultradark, .hover.text-ultradark:hover{
	color: var(--secondary) !important;
}
.hover .uxwh-arrow-right {
    transition: all linear 200ms;
}

.hover:hover .uxwh-arrow-right {
    transform: translateX(-4px);
}

#loading-svg path{
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw 1s linear infinite alternate;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

body.en .list-style{
	padding-left: 1.5rem;
	padding-right: 0;
}
body.en .list-style:before{
	right: unset;
	left: 0;
}
body.en main section .wp-block-uagb-table-of-contents li.uagb-toc__list{
	padding-right: 0;
	padding-left: 1.5rem;
}
body.en main section .wp-block-uagb-table-of-contents li.uagb-toc__list:before{
	right: unset;
	left:0;
}
body.en main section .content blockquote{
	padding: 2.5rem 2.5rem 2.5rem 5.75rem !important
}
body.en main section .content blockquote:before{
	right: unset;
	left: 2.5rem;
}
body.en main section ul li{
	padding-right:0;
	padding-left: 1.5rem;
}
body.en main section ul li:before{
	right: unset;
	left: 0;
}
.newsletter-text {
    position: fixed;
    bottom: 130px;
    left: 8px;
    color: #fff;
    font-size: 13px;
    background: #2B908E;
    line-height: 25px;
    padding: 2px 15px 0 15px;
    border-radius: 40px;
    transform: rotate(-90deg);
    transform-origin: center;
	z-index: 2;
}
.sharebar {
    position: fixed;
    background: #12a9f1;
    color: #fff;
    height: 27px;
    padding: 0 15px;
    border-radius: 40px;
}

.sharebar .icon {
    display: inline-block;
    vertical-align: sub;
}

.sharebar:hover {
    background: #0f87c1;
}



.right-bullet{
    position: relative;
}
.right-bullet:before{
    content: "";
    width: 11px;
    height: 11px;
    display: block;
    background: var(--primary);
    position: absolute;
    right: -24px;
    top: 24px;
    border-radius: 50%;
    opacity: 0.3;
}
ul.right-secondary-bullet li{
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
}
ul.right-secondary-bullet li:before {
    content: "\2688";
    font-size: inherit;
    transform: scale(0.6);
    position: absolute;
    top: 0.06rem;
    right: 0;
    color: var(--secondary);
}

.carousel-title {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
div#comment-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
}

div#comment-carousel .owl-nav button.owl-prev {
    display: none;
}

div#comment-carousel .owl-nav button.owl-next {
    font-size: 49px;
    font-family: sans-serif;
    color: #979393;
}

.sticky-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(255,255,255,0.8);
    z-index: 1;
    padding: 12px 0;
    border-top: 2px solid var(--primary);
    transition: all linear 300ms;
    transform: translateY(105%);
}
.sticky-btn.up{
	transform: translateY(0%);
}
a.edd-add-to-cart {
    margin-top: 25px;
    border: 1px solid var(--secondary) !important;
    background: none !important;
    color: var(--secondary) !important;
    padding: 8px 30px;
    border-radius: 99px;
}

a.edd-add-to-cart:hover {
    background: var(--secondary) !important;
    color: #fff !important;
}
.response-box {
    padding: 2rem;
    box-shadow: 0 0 10px 3px #eaeaea;
    border-radius: 2rem;
}

.gooyLogo {
	background: url("../img/gooyLogo.png") no-repeat;
    background-size: 100%;
    background-position: center center;
	width: 600px;
	height: 550px;
	display: block;
	margin: auto;
	border-radius: 999px;
}

@media (max-width: 575px) {
    .carousel-title {
        position: relative;
        transform: none;
        padding-bottom: 30px;
    }
	.col-xs-6 {
    	flex: 0 0 auto;
    	width: 50%;
	}
}
.sloganPos{
	position: absolute;
	top: 50%;
	right: 15px;
	left: 15px;
	transform: translatey(-60%);
}

.absolute-center {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    max-width: 100%;
    display: block;
    max-height: 100%;
}
.min-height-4rem {
	min-height: 4rem;
}
.height-r-40{
	height: 4rem;
}






    .contact_form .gform_fields li,.contact_form .gform_footer {
        width: 100%!important;
        float: none;
        display: block!important;
        padding: 0!important
    }

    .contact_form .gform_fields li.family_field {
        margin-top: .5rem
    }

    .cooperation_form ul li.family_field {
        width: 100%!important;
        padding-left: 0!important
    }

    .cooperation_form ul li.family_field input {
        text-align: right!important
    }

    .cooperation_form ul li.email_field {
        width: 100%!important;
        padding-right: 0!important
    }

    .cooperation_form ul li input {
        text-align: right!important
    }

    footer ul.footer-menu li {
        position: relative;
        display: inline-block;
        width: 24%;
        margin-bottom: 10px
    }

    footer ul.footer-menu li:nth-child(4n):after {
        display: none
    }

}

.services_form_wrapper h3.gform_title {
    color: var(--ultradark);
    font-size: 3.125rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: -1px
}

.services_form_wrapper h3.gform_title span {
    color: var(--secondary)
}

.services_form_wrapper .gf_page_steps {
    text-align: center
}

.services_form_wrapper .gf_page_steps .gf_step {
    display: inline-block;
    text-align: center;
    margin-top: 2rem;
    position: relative
}

.services_form_wrapper .gf_page_steps .gf_step:nth-child(1) {
    padding-left: 4rem
}

.services_form_wrapper .gf_page_steps .gf_step:nth-child(2) {
    padding-left: 4rem;
    padding-right: 4rem
}

.services_form_wrapper .gf_page_steps .gf_step:nth-child(3) {
    padding-right: 4rem
}

.services_form_wrapper .gf_page_steps .gf_step:before {
    font-family: uxwh-fonticon;
    width: 55px;
    height: 55px;
    display: inline-block;
    line-height: 55px;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 9px;
    background: rgba(179,184,186,.5);
    color: #fff
}

.services_form_wrapper .gf_page_steps .gf_step:nth-child(1):after {
    content: "";
    display: block;
    position: absolute;
    width: 8.5rem;
    right: 64px;
    height: 1px;
    background: #bdc0c5;
    top: 27px
}

.services_form_wrapper .gf_page_steps .gf_step:nth-child(3):after {
    content: "";
    display: block;
    position: absolute;
    width: 8.5rem;
    left: 64px;
    height: 1px;
    background: #bdc0c5;
    top: 27px
}

.services_form_wrapper .gf_page_steps .gf_step:nth-child(1):before {
    content: "Q"
}

.services_form_wrapper .gf_page_steps .gf_step:nth-child(2):before {
    content: "K"
}

.services_form_wrapper .gf_page_steps .gf_step:nth-child(3):before {
    content: "O"
}

.services_form_wrapper .gf_page_steps .gf_step_active {
    font-weight: 800
}

.services_form_wrapper .gf_page_steps .gf_step_active:before {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: unset
}

.services_form_wrapper .gf_page_steps .gf_step span.gf_step_number {
    display: none
}

.services_form_wrapper .gf_page_steps .gf_step span.gf_step_label {
    display: block
}

.services_form_wrapper .gf_page_steps .gf_step.gf_step_completed:before {
    background: var(--secondary)!important;
    content: "\52"!important
}

.services_form_wrapper .gf_page_steps .gf_step.gf_step_completed {
    color: var(--secondary)
}

.services_form_wrapper .gform_fields {
    padding: 0;
    margin: 0
}

.services_form_wrapper .gform_fields:after {
    content: "";
    display: block;
    float: none;
    clear: both
}

.services_form_wrapper .gform_fields li:before {
    display: none;
    font-size: 18px
}

.services_form_wrapper .gform_fields li.html_field {
    padding: 0;
    margin-top: 4.25rem
}

.services_form_wrapper .gform_fields li.design_steps_radio {
    margin-top: 2.5rem
}

.services_form_wrapper .gform_fields li.design_steps_radio label.gfield_label {
    font-weight: 700
}

.services_form_wrapper .gform_fields li label.gfield_label span.gfield_required {
    display: none
}

.services_form_wrapper .gform_fields li.design_steps_radio:before {
    color: var(--secondary);
    display: block
}

.gfield_radio {
    display: flex;
    margin-right: -25px;
    margin-top: 1rem;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 24px
}

.gfield_radio li {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0
}

.gfield_radio li label {
    font-weight: 700;
    color: rgba(28,30,32,.5);
    cursor: pointer;
    position: relative;
    padding-right: 20px
}

.gfield_radio li label:before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 4px;
    right: 0;
    border: 1px solid var(--ultradark)
}

.gfield_radio li input {
    display: none
}

.gfield_radio li input:checked+label {
    color: var(--secondary)
}

.gfield_radio li input:checked+*::after {
    background: var(--secondary);
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 6px;
    right: 2px
}

.services_form_wrapper .gform_fields li.product_type {
    margin-top: 3.5rem
}

.services_form_wrapper .gform_fields li.product_type:before {
    color: var(--secondary);
    display: block
}

.gfield_checkbox {
    display: flex;
    margin-right: -25px;
    margin-top: 1rem
}

.gfield_checkbox li {
    flex: 1;
    white-space: nowrap;
    padding: 0
}

.gfield_checkbox li label {
    font-weight: 700;
    color: rgba(28,30,32,.5);
    cursor: pointer;
    position: relative;
    padding-right: 20px
}

.gfield_checkbox li label:before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 4px;
    right: 0;
    border: 1px solid var(--ultradark)
}

.gfield_checkbox li input {
    display: none
}

.gfield_checkbox li input:checked+label {
    color: var(--secondary)
}

.gfield_checkbox li input:checked+*::before {
    background: var(--secondary);
    border-color: var(--secondary)
}

.gfield_checkbox li input:checked+*::after {
    content: "\53";
    font-family: uxwh-fonticon;
    display: block;
    position: absolute;
    top: 6px;
    right: 2px;
    color: var(--white);
    background: 0 0;
    font-size: 10px;
    line-height: 11px
}

.gform_page.page_one .gform_next_button {
    width: 100%;
    height: 45px;
    font-size: 1rem;
    font-weight: 500;
    background: var(--secondary);
    color: var(--white);
    border-radius: 999px;
    cursor: pointer;
    margin-top: 4rem;
    transition: all linear 200ms
}

.gform_page.page_one .gform_next_button:hover {
    background: var(--secondary-dark)
}

.services_form_wrapper .gform_fields li.product_name {
    width: 50.01%;
    padding-right: 0;
    float: right;
    color: var(--ultradark);
    padding-left: 1rem
}

.services_form_wrapper .gform_fields li.jobtype_text {
    padding-right: 0;
    width: calc(49.98%);
    padding-right: 1rem;
    overflow: hidden
}

.services_form_wrapper .gform_fields li.product_name label {
    font-weight: 700
}

.services_form_wrapper .gform_fields li.product_name input {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: .9rem;
    font-weight: 400;
    border: 1px solid rgba(28,30,32,.3);
    border-radius: 999px;
    margin-top: .6rem
}

.services_form_wrapper .gform_fields li.jobtitle_select,.services_form_wrapper .gform_fields li.budget_select {
    width: 50.01%;
    padding-right: 0;
    float: right;
    padding-left: 1rem;
    margin-top: 1.25rem
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected,.services_form_wrapper .gform_fields li.budget_select .budget_selected {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: .9rem;
    border: 1px solid rgba(28,30,32,.3);
    border-radius: 999px;
    margin-top: .6rem;
    position: relative;
    cursor: pointer
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected:before,.services_form_wrapper .gform_fields li.budget_select .budget_selected:before {
    content: "q";
    font-family: uxwh-fonticon;
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: center;
    top: 6px;
    left: 18px;
    font-size: 17px;
    color: #ababab
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected span,.services_form_wrapper .gform_fields li.budget_select .budget_selected span {
    line-height: 40px;
    font-size: .9rem;
    font-weight: 400;
    color: rgba(28,30,32,.6)
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected span.selected,.services_form_wrapper .gform_fields li.budget_select .budget_selected span.selected {
    font-weight: 600;
    color: var(--ultradark)
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown,.services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown {
    background: var(--white);
    width: calc(100% + 2px);
    position: absolute;
    top: -1px;
    right: -1px;
    margin: 0;
    padding: 2rem!important;
    box-shadow: 0 0 9px 0 #ddd;
    border-radius: 1rem;
    display: none;
    z-index: 2
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown.open,.services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown.open {
    display: block
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown li,.services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown li {
    font-size: .9rem;
    font-weight: 400;
    color: var(--normal);
    padding: 0 0 .5rem;
    cursor: pointer
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown li:last-child,.services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown li:last-child {
    padding-bottom: 0
}

.services_form_wrapper .gform_fields li.jobtitle_select .jobtitle_selected ul.jobtitle_dropdown li:hover,.services_form_wrapper .gform_fields li.budget_select .budget_selected ul.budget_dropdown li:hover {
    font-weight: 600;
    color: var(--black)
}

.services_form_wrapper .gform_fields li.jobtype_text label {
    font-weight: 700
}

.services_form_wrapper .gform_fields li.jobtype_text textarea {
    width: 100%;
    height: calc(6rem + 150px);
    padding: 1rem;
    border: 1px solid rgba(28,30,32,.3);
    border-radius: 1rem;
    margin-top: .6rem
}

.services_form .page_two .gform_page_footer,.services_form .page_three .gform_page_footer {
    margin-top: 3.5rem;
    position: relative
}

.services_form .page_two .gform_page_footer:before,.services_form .page_three .gform_page_footer:before {
    content: "E";
    font-family: uxwh-fonticon;
    color: var(--ultradark);
    position: absolute;
    top: .5rem;
    right: 1.5rem;
    display: block;
    font-size: 1.4rem;
    transform: scaleX(-1);
    transform-origin: center
}

.services_form .page_two .gform_page_footer:after,.services_form .page_three .gform_page_footer:after {
    content: "E";
    font-family: uxwh-fonticon;
    color: #fff;
    position: absolute;
    top: .5rem;
    left: 1.5rem;
    display: block;
    font-size: 1.4rem
}

.page_two .gform_page_footer .gform_previous_button,.page_three .gform_page_footer .gform_previous_button {
    display: inline-block;
    width: calc(49.6% - 1rem);
    margin-left: 2rem;
    border: none;
    padding: 0;
    background: rgba(28,30,32,.1);
    text-align: center;
    height: 45px;
    font-size: 1rem;
    line-height: 49px;
    font-weight: 500;
    color: var(--ultradark);
    border-radius: 999px;
    cursor: pointer;
    transition: all linear 200ms
}

.page_two .gform_page_footer .gform_previous_button:hover,.page_three .gform_page_footer .gform_previous_button:hover {
    background: rgba(28,30,32,.3)
}

.page_two .gform_page_footer .gform_next_button,.page_three .gform_page_footer .gform_submit_button {
    width: calc(49.6% - 1rem);
    display: inline-block;
    padding: 0;
    height: 45px;
    background: var(--secondary);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 49px;
    border-radius: 999px;
    transition: all linear 200ms
}

.page_two .gform_page_footer .gform_next_button:hover,.page_three .gform_page_footer .gform_submit_button:hover {
    background: var(--secondary-dark)
}

.services_form_wrapper .gform_fields li.family_text {
    padding-right: 0;
    margin-top: 4rem;
    width: 100%
}

.services_form_wrapper .gform_fields li.family_text label {
    font-weight: 700
}

.services_form_wrapper .gform_fields li.family_text input {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: .9rem;
    font-weight: 400;
    border: 1px solid rgba(28,30,32,.3);
    border-radius: 999px;
    margin-top: .6rem
}

.services_form_wrapper .gform_fields li.phone_text {
    padding-right: 0;
    margin-top: 1rem;
    width: 50%;
    float: right;
    padding-left: 1rem
}

.services_form_wrapper .gform_fields li.phone_text label {
    font-weight: 700
}

.services_form_wrapper .gform_fields li.phone_text input {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: .9rem;
    font-weight: 400;
    border: 1px solid rgba(28,30,32,.3);
    border-radius: 999px;
    margin-top: .6rem
}

.services_form_wrapper .gform_fields li.email_text {
    padding-right: 0;
    margin-top: 1rem;
    width: 50%;
    padding-right: 1rem;
    display: inline-block
}

.services_form_wrapper .gform_fields li.email_text label {
    font-weight: 700
}

.services_form_wrapper .gform_fields li.email_text input {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    font-size: .9rem;
    font-weight: 400;
    border: 1px solid rgba(28,30,32,.3);
    border-radius: 999px;
    margin-top: .6rem;
    text-align: left
}

.services_form_wrapper .validation_error {
    display: none
}

.services_form_wrapper .gform_fields li .validation_message {
    display: none
}

.services_form_wrapper .gform_fields .gfield_error input,.services_form_wrapper .gform_fields .gfield_error textarea,.services_form_wrapper .gform_fields .gfield_error select,.services_form_wrapper .gform_fields .gfield_error .gfield_checkbox li label:before,.services_form_wrapper .gform_fields .gfield_error .gfield_radio li label:before {
    border-color: #f88!important
}

.services_form_wrapper .gform_ajax_spinner {
    display: none
}

.cooperation_form ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.cooperation_form ul li {
    padding: 0;
    margin-bottom: .2rem
}

.cooperation_form ul li:before {
    display: none
}

.cooperation_form ul li label {
    font-weight: 600
}

.cooperation_form ul li.family_field {
    display: inline-block;
    width: 49.99%;
    padding-left: 1rem
}

.cooperation_form ul li input {
    width: 100%;
    height: 45px;
    border-radius: 999px;
    border: 1px solid rgba(28,30,32,.3);
    padding: 0 10px;
    font-size: .9rem;
    margin-top: .1rem;
    text-align: left
}

.cooperation_form ul li.email_field {
    width: 49.99%;
    display: inline-block;
    padding-right: 1rem
}

.cooperation_form ul li textarea {
    border: 1px solid rgba(28,30,32,.3);
    padding: 1rem;
    border-radius: 1rem;
    width: 100%;
    height: 110px;
    margin-top: .1rem
}

.cooperation_form .gform_drop_area {
    background: rgba(28,30,32,.02);
    padding: 1rem;
    border-radius: 1rem;
    border: 2px dashed rgba(2,30,32,.3);
    text-align: center
}

.cooperation_form .gform_drop_area input {
    display: inline-block;
    width: unset!important;
    border: none!important;
    background: 0 0!important;
    padding: 0 2rem!important;
    color: var(--secondary)!important;
    font-weight: 600
}

.cooperation_form .upload_field label {
    display: none
}

.cooperation_form .gform_drop_area span {
    position: relative;
    display: inline-block
}

.cooperation_form .gform_drop_area span:before {
    content: "x";
    color: var(--secondary);
    font-family: uxwh-fonticon;
    font-size: 2rem;
    opacity: .5;
    position: absolute;
    top: -3px;
    right: -43px
}

.cooperation_form .gform_button {
    width: 100%;
    height: 45px;
    background: 0 0;
    border: 1px solid var(--secondary);
    border-radius: 999px;
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-top: .6rem;
    cursor: pointer
}

.cooperation_form .gform_button:hover {
    background: var(--secondary)!important;
    color: #fff!important
}

.cooperation_form .gform_fields .gfield_error input,.cooperation_form .gform_fields .gfield_error textarea,.cooperation_form .gform_fields .gfield_error select,.cooperation_form .gform_fields .gfield_error .gfield_checkbox li label:before,.cooperation_form .gform_fields .gfield_error .gfield_radio li label:before {
    border-color: #f88!important
}

.cooperation_form .gform_ajax_spinner {
    display: none
}

.contact_form .gform_fields li label {
    display: none
}

.contact_form .gform_fields li:before {
    display: none
}

.contact_form .gform_fields li.subject_text {
    width: 69.97%;
    display: inline-block;
    padding-right: 0;
    padding-left: 1rem;
}

.contact_form .gform_fields li.subject_text textarea {
    border: 1px solid rgba(28,30,32,.3);
    padding: 1rem;
    border-radius: 1rem;
    width: 100%;
    height: 9rem
}

.contact_form .gform_fields li.family_field {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    padding-left: 0;
    padding-right: 1rem
}

.contact_form .gform_fields li.family_field input,.contact_form .gform_fields li.email_field input {
    border: 1px solid rgba(28,30,32,.3);
    height: 2.5rem;
    padding: 0 1rem;
    border-radius: 999px;
    width: 100%
}

.contact_form .gform_fields li.email_field {
    width: 30%;
    display: inline-block;
    margin-top: .5rem;
    padding-right: 1rem
}

.contact_form .gform_footer {
    display: inline-block;
    width: 30%;
    padding-right: 1rem;
    margin-top: .5rem
}

.contact_form .gform_footer.top_label input {
    width: 100%;
    height: 2.5rem;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: 0 0;
    border-radius: 999px
}

.contact_form .gform_fields {
    margin-bottom: 0
}

.contact_form .gform_fields .gfield_error input,.contact_form .gform_fields .gfield_error textarea,.contact_form .gform_fields .gfield_error select,.contact_form .gform_fields .gfield_error .gfield_checkbox li label:before,.contact_form .gform_fields .gfield_error .gfield_radio li label:before {
    border-color: #f88!important
}

.contact_form .gform_ajax_spinner {
    display: none
}

.newsletter_form ul li {
    padding: 0
}

.newsletter_form ul li:before {
    display: none
}

.newsletter_form ul li label {
    display: none
}

.newsletter_form ul li input {
    background: #fff;
    border: none;
    padding: 0 10px;
    height: 30px;
    display: block;
    position: relative;
    top: -5px;
    border-radius: 999px;
    width: 100%;
    text-align: left
}

.newsletter_form ul li.mailchimp_field {
    display: none!important
}

.newsletter_form .gform_body {
    display: inline-block;
    width: 70%
}

.newsletter_form .gform_footer {
    width: 29%;
    display: inline-block;
    padding: 0 .5rem 0 0
}

.newsletter_form .gform_footer input {
    width: 100%;
    height: 30px;
    position: relative;
    top: -5px;
    border-radius: 999px;
    border: 1px solid #fff;
    background: 0 0;
    color: #ffff
}

.newsletter_form .gform_footer input:focus::placeholder {
    color: transparent!important
}

.newsletter_form .gform_footer input:hover {
    background: #fff;
    color: #0a5a55;
    cursor: pointer
}

.newsletter_form .gform_fields .gfield_error input,.newsletter_form .gform_fields .gfield_error textarea,.newsletter_form .gform_fields .gfield_error select,.newsletter_form .gform_fields .gfield_error .gfield_checkbox li label:before,.newsletter_form .gform_fields .gfield_error .gfield_radio li label:before {
    border-color: #f88!important
}

.newsletter_form .gform_ajax_spinner {
    display: none
}

textarea#input_1_1 {
    width: 100%;
    border-color: var(--secondary);
    border-radius: 15px;
    padding: 10px;
}

div#field_1_2, div#field_1_3 {
    display: inline-block;
    width: 50%;
}

div#field_1_2 input, div#field_1_3 input {
    width: 100%;
    height: 40px;
    border: 1px solid var(--secondary);
    border-radius: 41px;
    padding: 0 10px;
}



.ringing {
  animation: ring 2s .7s ease-in-out infinite;
  transform-origin: center;
}
@keyframes ring {
  0% { transform: rotate(0); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-14deg); }
  15% { transform: rotate(17deg); }
  20% { transform: rotate(-16deg); }
  25% { transform: rotate(15deg); }
  30% { transform: rotate(-14deg); }
  35% { transform: rotate(13deg); }
  40% { transform: rotate(-12deg); }
  45% { transform: rotate(11deg); }
  50% { transform: rotate(-10deg); }
  55% { transform: rotate(9deg); }
  60% { transform: rotate(-8deg); }
  65% { transform: rotate(7deg); }
  70% { transform: rotate(-6deg); }
  75% { transform: rotate(5deg); }
  80% { transform: rotate(-4deg); }
  85% { transform: rotate(3deg); }
  90% { transform: rotate(-2deg); }
  95% { transform: rotate(1deg); }
  100% { transform: rotate(-1deg); }
}


@media (max-width:575px) {
  .gooyLogo {
      max-width:100% !important;
      height: 300px;
  }  
    .sloganPos{
        transform: none !important;
        position: relative !important;
        top:0;
        margin-bottom: 50px;
    }
    .col.customerLogo {
        width:50% !important;
    }
    .timelineSec::before{
        display:none !important;
    }
    .timelineCardWrp:nth-child(even) .timelineCard .icon:before, .timelineCardWrp:nth-child(odd) .timelineCard .icon:before{
        display: none !important;
    }
    .timelineCard .icon{
        border: 2px solid var(--secondary);
        border-radius: 999px;
    }
    .timelineCard {
        margin-bottom: 30px;
    }
    .timelineCardWrp .timelineCard .text {
        position: static !important;
        top: 0 !important;
        display: block;
        margin-top: 10px;
    }
		.timelineCard .icon img {
    border-radius: 999px;
}
	header, header.is-stick, header.is-single {
		height: 90px !important;
	}
}
section.banner img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}
.topBefore {
	    position: relative;
    z-index: 100;
}
.serviceExcerpt {
    margin-top: 37px;
    background: #e8e8e8;
    padding: 20px;
    border-bottom: 1px solid var(--secondary);
    border-radius: 20px;
}
.bGooySection{
	background: #f4f4f4;
    padding: 27px;
    border-radius: 25px;
}
.catItem {
    background: var(--secondary);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
}



div#ez-toc-container {
    background: #f6f4f4 !important;
    width: 100%;
    border-radius: 0 !important;
    border: none !important;
    margin: 30px 0 50px 0 !important;
}

div#ez-toc-container span.ez-toc-title-toggle {
    display: none !important;
}

div#ez-toc-container p.ez-toc-title {
    font-size: 16px;
    font-weight: 700;
}

div#ez-toc-container ul.ez-toc-list li {list-style: circle !important;}

div#ez-toc-container ul.ez-toc-list li:before {
    display: none !important;
}


/* Yekan Bakh Font */
@font-face {
    font-family: 'Yekan Bakh';
    src: url('fonts/YekanBakh-Regular.woff2') format('woff2'),
         url('fonts/YekanBakh-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yekan';
    src: url('fonts/YekanBakhPro/YekanBakh-Bold.woff2') format('woff2'),
         url('fonts/YekanBakh-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}



/* Logo Colors - Accent Colors */
:root {
    --main-teal: #2B908E;
    --dark-teal: #0A5A55;
    --accent-red: #E63946;
    --accent-cyan: #48CAE4;
    --accent-blue: #023E8A;
	--goal-primary: #0f3460;
    --goal-accent: #4bb4df; 
    --goal-secondary: #2b908e;
    --goal-white: #ffffff;
    --goal-black: #000000;
    --goal-gray-light: #f1f5f9;
    --goal-shadow: rgba(0, 0, 0, 0.08);
    --goal-shadow-hover: rgba(0, 0, 0, 0.12);
    --goal-radius: 28px;
    --goal-transition: all 0.3s ease;
}
