Created
April 7, 2020 14:00
-
-
Save codersantosh/db91ac035a3b76db9bff7be2ac282918 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Get CSS without empty selector | |
| * Call after minification of CSS | |
| * | |
| * @since 2.1.0 | |
| * @access public | |
| * | |
| * @param string $minified_css | |
| * @return string | |
| */ | |
| function get_css_without_empty_selector_after_minify($minified_css){ | |
| $css_explode = explode("}",$minified_css); | |
| $result = ""; | |
| $double_braces_open = false; | |
| foreach ($css_explode as $index=>$item) { | |
| if( $item != "" && substr($item, -1) != '{') { | |
| $result .= $item . "}"; | |
| /*check if double braces*/ | |
| $is_double_braces = substr_count($item,"{")>1; | |
| if( $is_double_braces ){ | |
| $double_braces_open = true; | |
| } | |
| } | |
| /*close double braces*/ | |
| if( $double_braces_open && $item == ""){ | |
| $result .= "}"; | |
| $double_braces_open = false; | |
| } | |
| /*How about more than double braces | |
| Not needed for now*/ | |
| } | |
| return $result; | |
| } | |
| /** | |
| * Minify CSS | |
| * | |
| * @since 1.0.0 | |
| * @access public | |
| * | |
| * @param string $css | |
| * @return string | |
| */ | |
| function minify_css( $css = '' ) { | |
| // Return if no CSS | |
| if ( ! $css ) { | |
| return ''; | |
| } | |
| // remove comments | |
| $css = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css); | |
| // Normalize whitespace | |
| $css = preg_replace( '/\s+/', ' ', $css ); | |
| // Remove ; before } | |
| $css = preg_replace( '/;(?=\s*})/', '', $css ); | |
| // Remove space after , : ; { } */ > | |
| $css = preg_replace( '/(,|:|;|\{|}|\*\/|>) /', '$1', $css ); | |
| // Remove space before , ; { } | |
| $css = preg_replace( '/ (,|;|\{|})/', '$1', $css ); | |
| // Strips leading 0 on decimal values (converts 0.5px into .5px) | |
| $css = preg_replace( '/(:| )0\.([0-9]+)(%|em|ex|px|in|cm|mm|pt|pc)/i', '${1}.${2}${3}', $css ); | |
| // Strips units if value is 0 (converts 0px to 0) | |
| $css = preg_replace( '/(:| )(\.?)0(%|em|ex|px|in|cm|mm|pt|pc)/i', '${1}0', $css ); | |
| // Trim | |
| $css = trim( $css ); | |
| /*get_css_without_empty_selector since 2.1.0*/ | |
| $css = get_css_without_empty_selector_after_minify($css); | |
| // Return minified CSS | |
| return $css; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $css = " | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title, #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title a { | |
| color: #ffffff; | |
| font-family: Playfair Display; | |
| font-size: 35px; | |
| font-weight: 900; | |
| line-height: 1 | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item:hover .prefix-single-item-title, #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title, #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title a { | |
| font-size: 55px | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title, #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button { | |
| color: #fff; | |
| margin: 0 0 0 0; | |
| padding: 15px 30px 15px 30px; | |
| border-style: solid; | |
| border-width: 2px 2px 2px 2px; | |
| border-color: rgba(255, 255, 255, 1); | |
| border-top-left-radius: 50px; | |
| border-top-right-radius: 50px; | |
| border-bottom-right-radius: 50px; | |
| border-bottom-left-radius: 50px; | |
| font-family: Open Sans; | |
| font-size: 14px; | |
| font-weight: 600; | |
| text-transform: normal | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button:hover { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button .prefix-button-icon { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button { | |
| font-size: 14px | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button .prefix-button-icon { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button { | |
| font-size: 14px | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button .prefix-button-icon { | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-top svg path, #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-bottom svg path, #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-top svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-top svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-bottom svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-bottom svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-top svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-top svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-bottom svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-top svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-top svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-bottom svg { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76. { | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item { | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-desc { | |
| color: #ffffff; | |
| font-family: Open Sans; | |
| font-size: 16px; | |
| font-weight: 300 | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-desc { | |
| font-size: 24px | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-bg-image, .imageSlider-repeater .prefix-single-item .prefix-bg-image { | |
| height: 450px; | |
| background-size: cover; | |
| background-position: center; | |
| background-repeat: no-repeat; | |
| background-attachment: scroll | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-0 .prefix-bg-image, .imageSlider-repeater .prefix-single-item-0 .prefix-bg-image { | |
| background-image: url(https://www.demo.domain.com/demo-2/wp-content/uploads/sites/3/2019/09/computer-3655665_1920.jpg) | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .bg-color-box { | |
| height: 300px | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .overlay { | |
| background-color: rgba(0, 0, 0, 0.47) | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item:hover .overlay { | |
| } | |
| @media (min-width: 768px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-bg-image { | |
| height: 450px | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .bg-color-box { | |
| height: 450px | |
| } | |
| } | |
| @media (min-width: 992px) { | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-bg-image { | |
| height: 650px | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .bg-color-box { | |
| height: 550px | |
| } | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-slider-wrapper .slick-arrow { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-slider-wrapper .slick-arrow:hover { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-slider-wrapper .slick-dots li { | |
| } | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-slider-wrapper .slick-dots li:hover, #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-slider-wrapper .slick-dots li.slick-active { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-title, #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-title a { | |
| font-family: Poppins; | |
| font-size: 18px; | |
| font-weight: 600; | |
| margin: 30px 0 15px 0 | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item:hover .prefix-single-item-title, #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-title, #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-title, #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 { | |
| padding: 40px 0 40px 0 | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-top svg path, #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-bottom svg path, #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-top svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-top svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-bottom svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-bottom svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 { | |
| padding: 60px 0 60px 0 | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-top svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-top svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-bottom svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 { | |
| padding: 80px 0 80px 0 | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-top svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-top svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-bottom svg { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39. { | |
| } | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item { | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item { | |
| } | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-desc { | |
| color: #888888; | |
| font-family: Poppins; | |
| font-size: 15px; | |
| font-weight: 400; | |
| line-height: 2 | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-icon-box { | |
| color: #ea3a60; | |
| font-size: 30px | |
| } | |
| #section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item:hover .prefix-single-item-icon-box { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title, #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title a { | |
| color: #1b2831; | |
| font-family: Playfair Display; | |
| font-size: 32px; | |
| line-height: 1.2; | |
| margin: 0 0 25px 0 | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item:hover .prefix-single-item-title, #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title, #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title a { | |
| font-size: 35px | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title, #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button { | |
| color: #fff; | |
| background-color: rgba(234, 58, 96, 1); | |
| padding: 15px 30px 15px 30px; | |
| border-top-left-radius: 50px; | |
| border-top-right-radius: 50px; | |
| border-bottom-right-radius: 50px; | |
| border-bottom-left-radius: 50px; | |
| font-family: Open Sans; | |
| font-size: 14px; | |
| font-weight: 600; | |
| text-transform: uppercase; | |
| letter-spacing: 1px | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button:hover { | |
| background-color: rgba(170, 42, 70, 1) | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button .prefix-button-icon { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button { | |
| font-size: 14px | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button .prefix-button-icon { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button { | |
| font-size: 14px | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button .prefix-button-icon { | |
| } | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd { | |
| background-color: #fbf6fb; | |
| padding: 40px 0 40px 0 | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-top svg path, #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-top svg polygon { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-bottom svg path, #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-top svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-top svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-bottom svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-bottom svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd { | |
| padding: 60px 0 60px 0 | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-top svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-top svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-bottom svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd { | |
| padding: 100px 0 100px 0 | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-top svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-top svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-bottom svg { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd. { | |
| } | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item { | |
| } | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-desc { | |
| color: #888888; | |
| font-family: Poppins; | |
| font-size: 15px; | |
| font-weight: 400; | |
| line-height: 2 | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-image-box .overlay { | |
| } | |
| #section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item:hover .prefix-single-item-image-box .overlay { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-title, #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-title a { | |
| color: #888888; | |
| font-family: Poppins; | |
| font-size: 14px; | |
| font-weight: 400; | |
| text-transform: uppercase; | |
| letter-spacing: 2px | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item:hover .prefix-single-item-title, #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-title, #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-title, #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-icon-box { | |
| color: #ea3a60; | |
| font-size: 30px | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item:hover .prefix-single-item-icon-box { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-number { | |
| color: #1b2831; | |
| font-family: Poppins; | |
| font-size: 32px; | |
| font-weight: 800 | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item:hover .prefix-single-item-number { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-number { | |
| margin: 30px 0 0 0 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-number { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-section-number { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-number { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-number { | |
| } | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc { | |
| padding: 40px 0 40px 0 | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-top svg path, #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-top svg polygon { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-bottom svg path, #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-top svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-top svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-bottom svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-bottom svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc { | |
| padding: 60px 0 60px 0 | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-top svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-top svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-bottom svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc { | |
| padding: 80px 0 80px 0 | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-top svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-top svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-bottom svg { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc. { | |
| } | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item { | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item { | |
| } | |
| } | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-title, #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-title a { | |
| color: #ffffff; | |
| font-family: Poppins; | |
| font-size: 18px; | |
| font-weight: 600 | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item:hover .prefix-single-item-title, #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-title, #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-title, #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-content .gallery-icon { | |
| font-size: 16px; | |
| color: #ffffff | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-content .image-gallery:hover .gallery-icon { | |
| color: #ffffff | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681.gallery-template3 .prefix-single-item .prefix-gallery-item-header { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-image-box:before, #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-image-box:after { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-image-box .overlay { | |
| background: rgba(234, 57, 95, 0.05) | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item:hover .prefix-single-item-image-box .overlay { | |
| background: rgba(234, 57, 95, 0.74) | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-top svg path, #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-bottom svg path, #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-top svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-top svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-bottom svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-bottom svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-top svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-top svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-bottom svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-top svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-top svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-bottom svg { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681. { | |
| } | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item { | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item { | |
| } | |
| } | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-section-title .prefix-title { | |
| color: #111111 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-title, #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-title a { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item:hover .prefix-single-item-title, #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-title, #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-title, #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc { | |
| background-color: #ea3a60; | |
| padding: 0 0 0 0 | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-top svg path, #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-top svg polygon { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-bottom svg path, #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-top svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-top svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-bottom svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-bottom svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc { | |
| padding: 20px 0 10px 0 | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-top svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-top svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-bottom svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-top svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-top svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-bottom svg { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc. { | |
| } | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item { | |
| } | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-desc { | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-section-title .prefix-title { | |
| color: #111111 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-title, #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-title a { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item:hover .prefix-single-item-title, #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-title, #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-title, #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b { | |
| background-color: #ffffff; | |
| padding: 40px 0 40px 0 | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-top svg path, #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-top svg polygon { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-bottom svg path, #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-top svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-top svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-bottom svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-bottom svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b { | |
| padding: 60px 0 60px 0 | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-top svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-top svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-bottom svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b { | |
| padding: 80px 0 80px 0 | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-top svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-top svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-bottom svg { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b. { | |
| } | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item { | |
| } | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-desc { | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-section-title .prefix-title { | |
| margin: 0 0 0 0; | |
| color: #ffffff; | |
| font-family: Playfair Display; | |
| font-size: 32px; | |
| font-weight: 900 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-grid-item-wrap { | |
| padding: 60px 0 0 0 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-title, #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-title a { | |
| font-family: Poppins; | |
| font-size: 18px; | |
| font-weight: 600; | |
| margin: 30px 0 0 0 | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item:hover .prefix-single-item-title, #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-title, #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-title, #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 { | |
| background-image: url(https://www.demo.domain.com/demo-2/wp-content/uploads/sites/3/2019/09/computer-3655665_1920.jpg); | |
| background-size: cover; | |
| background-position: center; | |
| background-repeat: no-repeat; | |
| background-attachment: fixed; | |
| padding: 40px 0 40px 0 | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-top svg path, #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-bottom svg path, #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-top svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-top svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-bottom svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-bottom svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44:hover { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44.has-prefix-overlay:after { | |
| background-color: rgba(51, 51, 51, 0.85) | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 { | |
| padding: 60px 0 60px 0 | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-top svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-top svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-bottom svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 { | |
| padding: 80px 0 80px 0 | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-top svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-top svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-bottom svg { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44. { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item { | |
| background: #ffffff; | |
| padding: 40px 40px 40px 40px | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-desc { | |
| color: #888888; | |
| font-family: Poppins; | |
| font-size: 15px; | |
| font-weight: 400; | |
| line-height: 1.6 | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-image-box .overlay { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item:hover .prefix-single-item-image-box .overlay { | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-designation { | |
| color: #999999; | |
| font-family: Poppins; | |
| font-size: 15px; | |
| font-weight: 300; | |
| margin: 0 0 0 0 | |
| } | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item:hover .prefix-single-item-designation { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-designation { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-designation { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-section-title .prefix-title { | |
| margin: 0 0 0 0; | |
| color: #111111; | |
| font-family: Playfair Display; | |
| font-size: 32px | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-grid-item-wrap { | |
| padding: 60px 0 0 0 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-title, #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-title a { | |
| font-family: Poppins; | |
| font-size: 18px; | |
| font-weight: 600 | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item:hover .prefix-single-item-title, #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-title, #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-title, #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 { | |
| padding: 40px 0 40px 0 | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-top svg path, #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-bottom svg path, #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-top svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-top svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-bottom svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-bottom svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 { | |
| padding: 60px 0 60px 0 | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-top svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-top svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-bottom svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 { | |
| padding: 80px 0 80px 0 | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-top svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-top svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-bottom svg { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164. { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-desc { | |
| color: #888888; | |
| font-family: Poppins; | |
| font-size: 15px; | |
| font-weight: 400; | |
| line-height: 2; | |
| margin: 0 0 0 0 | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .overlay { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item:hover .overlay { | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .entry-meta div { | |
| color: #999999; | |
| font-family: Poppins; | |
| font-size: 14px; | |
| font-weight: 400; | |
| line-height: 1; | |
| margin: 0 15px 15px 0 | |
| } | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .entry-meta div:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .entry-meta div { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .entry-meta div { | |
| } | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item .prefix-single-item-image-box .overlay { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item:hover .prefix-single-item-image-box .overlay { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 { | |
| background-color: #f7f7f7; | |
| padding: 40px 0 0 0 | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-top svg path, #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-bottom svg path, #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-top svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-top svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-bottom svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-bottom svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 { | |
| padding: 50px 0 0 0 | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-top svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-top svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-bottom svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-top svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-top svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-bottom svg { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8. { | |
| } | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item { | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item { | |
| } | |
| } | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-eac91031-edc3-4fcd-bb15-1198cb49ffa8 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-section-title .prefix-title { | |
| color: #111111 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-title, #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-title a { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item:hover .prefix-single-item-title, #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-title, #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-title, #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-top svg path, #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-top svg polygon { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-bottom svg path, #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-top svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-top svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-bottom svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-bottom svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-top svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-top svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-bottom svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-top svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-top svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-bottom svg { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c. { | |
| } | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item { | |
| } | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-desc { | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-section-title .prefix-title { | |
| color: #111111 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-title, #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-title a { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item:hover .prefix-single-item-title, #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-title, #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-title, #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-top svg path, #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-top svg polygon { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-bottom svg path, #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-top svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-top svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-bottom svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-bottom svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-top svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-top svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-bottom svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-top svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-top svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-bottom svg { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d. { | |
| } | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item { | |
| } | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-desc { | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item .prefix-single-item-title, #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item .prefix-single-item-title a { | |
| color: #ffffff; | |
| font-family: Poppins; | |
| font-size: 28px; | |
| font-weight: 400; | |
| text-transform: uppercase | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item:hover .prefix-single-item-title, #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item .prefix-single-item-title, #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item .prefix-single-item-title, #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-top svg path, #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-bottom svg path, #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-top svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-top svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-top svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-top svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-top svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-top svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6. { | |
| } | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item { | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item { | |
| } | |
| } | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button { | |
| color: #ffffff; | |
| background-color: rgba(40, 91, 246, 0); | |
| margin: 0 0 0 0; | |
| padding: 15px 30px 15px 30px; | |
| border-style: solid; | |
| border-width: 1px 1px 1px 1px; | |
| border-color: rgba(255, 255, 255, 1); | |
| border-top-left-radius: 50px; | |
| border-top-right-radius: 50px; | |
| border-bottom-right-radius: 50px; | |
| border-bottom-left-radius: 50px; | |
| font-family: Poppins; | |
| font-size: 14px; | |
| font-weight: 600; | |
| text-transform: uppercase; | |
| letter-spacing: 1px | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button:hover { | |
| color: #000000; | |
| border-color: rgba(255, 255, 255, 1); | |
| background-color: rgba(255, 255, 255, 1) | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button .prefix-button-icon { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button { | |
| font-size: 14px | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button .prefix-button-icon { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button { | |
| font-size: 14px | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button .prefix-button-icon { | |
| } | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-top svg path, #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-bottom svg path, #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-top svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-top svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-top svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-top svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-top svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-top svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6. { | |
| } | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item { | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item { | |
| } | |
| } | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-section-title .prefix-title { | |
| color: #111111 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-title, #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item:hover .prefix-single-item-title, #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-title, #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-title, #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-top svg path, #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-bottom svg path, #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-top svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-top svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-top svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-top svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-top svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-top svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6. { | |
| } | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item { | |
| } | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-section-title .prefix-title { | |
| color: #111111 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-grid-item-wrap { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-title, #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-title a { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item:hover .prefix-single-item-title, #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-title, #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-title, #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-top svg path, #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-top svg polygon { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-bottom svg path, #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-top svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-top svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-bottom svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-bottom svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-top svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-top svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-bottom svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-top svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-top svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-bottom svg { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb. { | |
| } | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item { | |
| } | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-desc { | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item:hover .prefix-single-item-desc { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item .prefix-single-item-desc { | |
| } | |
| } | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-section-title .prefix-title { | |
| color: #1b2831; | |
| font-family: Playfair Display; | |
| font-size: 24px; | |
| font-weight: 900 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-grid-item-wrap { | |
| margin: 40px 0 0 0 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs .prefix-tabs-list { | |
| border-style: solid; | |
| border-width: 0 0 3px 0; | |
| border-color: rgba(0, 0, 0, 0); | |
| font-family: Poppins; | |
| font-size: 16px; | |
| font-weight: 400; | |
| color: #888888 | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs .prefix-tabs-list:hover, #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs .prefix-tabs-list.prefix-tab-active { | |
| color: #ea3a60; | |
| border-color: rgba(234, 58, 96, 1) | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs-content-wrap .prefix-tabs-content { | |
| padding: 20px 0 0 0; | |
| color: #888888; | |
| font-family: Poppins; | |
| font-size: 15px; | |
| font-weight: 400; | |
| line-height: 2 | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs-content-wrap .prefix-tabs-content:hover, #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs-content-wrap .prefix-tabs-content.prefix-tab-content-active { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs .prefix-tabs-list { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs-content-wrap .prefix-tabs-content { | |
| font-family: Poppins; | |
| font-size: 15px; | |
| font-weight: 400; | |
| line-height: 2 | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs .prefix-tabs-list { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs-content-wrap .prefix-tabs-content { | |
| font-family: Poppins; | |
| font-size: 15px; | |
| font-weight: 400; | |
| line-height: 2 | |
| } | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-top svg path, #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-bottom svg path, #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-top svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-top svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-bottom svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-bottom svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-top svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-top svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-bottom svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-top svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-top svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-bottom svg { | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76. { | |
| } | |
| } | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-section-title .prefix-title { | |
| padding: 0 0 0 15px; | |
| color: #1b2831; | |
| font-family: Playfair Display; | |
| font-size: 24px; | |
| font-weight: 900 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-section-title .prefix-title { | |
| } | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-grid-item-wrap { | |
| margin: 40px 0 0 0 | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-grid-item-wrap { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-grid-item-wrap { | |
| } | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-single-item-title, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-single-item-title a { | |
| color: #1b2831; | |
| font-family: Poppins; | |
| font-size: 16px; | |
| font-weight: 500; | |
| margin: 0 0 0 0 | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item:hover .prefix-single-item-title, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item:hover .prefix-single-item-title a { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-single-item-title, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-single-item-title, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-single-item-title a { | |
| } | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-top svg path, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-top svg polygon { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-bottom svg path, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-bottom svg polygon { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-top svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-top svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-top svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-top svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-top svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-top svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-bottom svg { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-block-shape-bottom svg { | |
| } | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6. { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6. { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6. { | |
| } | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item:hover { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item { | |
| } | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item-image-box { | |
| } | |
| @media only screen and (min-width: 768px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item-image-box { | |
| } | |
| } | |
| @media only screen and (min-width: 992px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item-image-box { | |
| } | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-progressbar-circular .percent, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar .percent, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar .percentunit { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-progressbar-circular { | |
| border-color: #ea3a60; | |
| height: 200px; | |
| width: 200px | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar-wrap { | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar-wrap, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar-wrap .progressbar { | |
| height: 10px | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar { | |
| background-color: #ea3a60 | |
| } | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-progressbar-circular, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar { | |
| } | |
| @media (min-width: 768px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-progressbar-circular .percent, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar .percent, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar .percentunit { | |
| } | |
| } | |
| @media (min-width: 992px) { | |
| #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-progressbar-circular .percent, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar .percent, #section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar .percentunit { | |
| } | |
| } | |
| "; | |
| /** | |
| * Call the minify_css function | |
| */ | |
| echo minify_css($css); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Result: Minified CSS Without Empty Selector | |
| */ | |
| #section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title,#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title a{color:#ffffff;font-family:Playfair Display;font-size:35px;font-weight:900;line-height:1}@media only screen and (min-width:768px){#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title,#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-title a{font-size:55px}}#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button{color:#fff;margin:0 0 0 0;padding:15px 30px 15px 30px;border-style:solid;border-width:2px 2px 2px 2px;border-color:rgba(255,255,255,1);border-top-left-radius:50px;border-top-right-radius:50px;border-bottom-right-radius:50px;border-bottom-left-radius:50px;font-family:Open Sans;font-size:14px;font-weight:600;text-transform:normal}@media only screen and (min-width:768px){#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button{font-size:14px}}@media only screen and (min-width:992px){#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-button{font-size:14px}}#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-desc{color:#ffffff;font-family:Open Sans;font-size:16px;font-weight:300}@media only screen and (min-width:768px){#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-single-item-desc{font-size:24px}}#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-bg-image,.imageSlider-repeater .prefix-single-item .prefix-bg-image{height:450px;background-size:cover;background-position:center;background-repeat:no-repeat;background-attachment:scroll}#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item-0 .prefix-bg-image,.imageSlider-repeater .prefix-single-item-0 .prefix-bg-image{background-image:url(https://www.demo.domain.com/demo-2/wp-content/uploads/sites/3/2019/09/computer-3655665_1920.jpg)}#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .bg-color-box{height:300px}#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .overlay{background-color:rgba(0,0,0,0.47)}@media (min-width:768px){#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-bg-image{height:450px}#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .bg-color-box{height:450px}}@media (min-width:992px){#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .prefix-bg-image{height:650px}#section-3dda1777-d317-4e1f-b4ae-0ffe11fa4b76 .prefix-single-item .bg-color-box{height:550px}}#section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-title,#section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-title a{font-family:Poppins;font-size:18px;font-weight:600;margin:30px 0 15px 0}#section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39{padding:40px 0 40px 0}@media only screen and (min-width:768px){#section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39{padding:60px 0 60px 0}}@media only screen and (min-width:992px){#section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39{padding:80px 0 80px 0}}#section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-desc{color:#888888;font-family:Poppins;font-size:15px;font-weight:400;line-height:2}#section-52d7a1ec-16f3-4276-a3ea-6dce87c80e39 .prefix-single-item .prefix-single-item-icon-box{color:#ea3a60;font-size:30px}#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title,#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title a{color:#1b2831;font-family:Playfair Display;font-size:32px;line-height:1.2;margin:0 0 25px 0}@media only screen and (min-width:768px){#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title,#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-title a{font-size:35px}}#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button{color:#fff;background-color:rgba(234,58,96,1);padding:15px 30px 15px 30px;border-top-left-radius:50px;border-top-right-radius:50px;border-bottom-right-radius:50px;border-bottom-left-radius:50px;font-family:Open Sans;font-size:14px;font-weight:600;text-transform:uppercase;letter-spacing:1px}#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button:hover{background-color:rgba(170,42,70,1)}@media only screen and (min-width:768px){#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button{font-size:14px}}@media only screen and (min-width:992px){#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item-button{font-size:14px}}#section-059652a8-4788-48c5-8255-73bbb2f32ffd{background-color:#fbf6fb;padding:40px 0 40px 0}@media only screen and (min-width:768px){#section-059652a8-4788-48c5-8255-73bbb2f32ffd{padding:60px 0 60px 0}}@media only screen and (min-width:992px){#section-059652a8-4788-48c5-8255-73bbb2f32ffd{padding:100px 0 100px 0}}#section-059652a8-4788-48c5-8255-73bbb2f32ffd .prefix-single-item .prefix-single-item-desc{color:#888888;font-family:Poppins;font-size:15px;font-weight:400;line-height:2}#section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-title,#section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-title a{color:#888888;font-family:Poppins;font-size:14px;font-weight:400;text-transform:uppercase;letter-spacing:2px}#section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-icon-box{color:#ea3a60;font-size:30px}#section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-number{color:#1b2831;font-family:Poppins;font-size:32px;font-weight:800}#section-5c17a073-49da-4955-834e-91674934cacc .prefix-single-item .prefix-single-item-number{margin:30px 0 0 0}#section-5c17a073-49da-4955-834e-91674934cacc{padding:40px 0 40px 0}@media only screen and (min-width:768px){#section-5c17a073-49da-4955-834e-91674934cacc{padding:60px 0 60px 0}}@media only screen and (min-width:992px){#section-5c17a073-49da-4955-834e-91674934cacc{padding:80px 0 80px 0}}#section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-title,#section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-title a{color:#ffffff;font-family:Poppins;font-size:18px;font-weight:600}#section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-content .gallery-icon{font-size:16px;color:#ffffff}#section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-content .image-gallery:hover .gallery-icon{color:#ffffff}#section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item .prefix-single-item-image-box .overlay{background:rgba(234,57,95,0.05)}#section-b683ed14-9931-4cfc-93ab-6b5a87fa2681 .prefix-single-item:hover .prefix-single-item-image-box .overlay{background:rgba(234,57,95,0.74)}#section-41f477fb-f854-41ce-8d39-661b27f870dc .prefix-section-title .prefix-title{color:#111111}#section-41f477fb-f854-41ce-8d39-661b27f870dc{background-color:#ea3a60;padding:0 0 0 0}@media only screen and (min-width:768px){#section-41f477fb-f854-41ce-8d39-661b27f870dc{padding:20px 0 10px 0}}#section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b .prefix-section-title .prefix-title{color:#111111}#section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b{background-color:#ffffff;padding:40px 0 40px 0}@media only screen and (min-width:768px){#section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b{padding:60px 0 60px 0}}@media only screen and (min-width:992px){#section-4d22afa1-3f4c-4451-9a24-686b0fc53b6b{padding:80px 0 80px 0}}#section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-section-title .prefix-title{margin:0 0 0 0;color:#ffffff;font-family:Playfair Display;font-size:32px;font-weight:900}#section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-grid-item-wrap{padding:60px 0 0 0}#section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-title,#section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-title a{font-family:Poppins;font-size:18px;font-weight:600;margin:30px 0 0 0}#section-55cf8319-5b1c-454f-a966-349e28855a44{background-image:url(https://www.demo.domain.com/demo-2/wp-content/uploads/sites/3/2019/09/computer-3655665_1920.jpg);background-size:cover;background-position:center;background-repeat:no-repeat;background-attachment:fixed;padding:40px 0 40px 0}#section-55cf8319-5b1c-454f-a966-349e28855a44.has-prefix-overlay:after{background-color:rgba(51,51,51,0.85)}@media only screen and (min-width:768px){#section-55cf8319-5b1c-454f-a966-349e28855a44{padding:60px 0 60px 0}}@media only screen and (min-width:992px){#section-55cf8319-5b1c-454f-a966-349e28855a44{padding:80px 0 80px 0}}#section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item{background:#ffffff;padding:40px 40px 40px 40px}#section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-desc{color:#888888;font-family:Poppins;font-size:15px;font-weight:400;line-height:1.6}#section-55cf8319-5b1c-454f-a966-349e28855a44 .prefix-single-item .prefix-single-item-designation{color:#999999;font-family:Poppins;font-size:15px;font-weight:300;margin:0 0 0 0}#section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-section-title .prefix-title{margin:0 0 0 0;color:#111111;font-family:Playfair Display;font-size:32px}#section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-grid-item-wrap{padding:60px 0 0 0}#section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-title,#section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-title a{font-family:Poppins;font-size:18px;font-weight:600}#section-81268378-7552-4ba2-8a62-b6bbbaa8e164{padding:40px 0 40px 0}@media only screen and (min-width:768px){#section-81268378-7552-4ba2-8a62-b6bbbaa8e164{padding:60px 0 60px 0}}@media only screen and (min-width:992px){#section-81268378-7552-4ba2-8a62-b6bbbaa8e164{padding:80px 0 80px 0}}#section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .prefix-single-item .prefix-single-item-desc{color:#888888;font-family:Poppins;font-size:15px;font-weight:400;line-height:2;margin:0 0 0 0}#section-81268378-7552-4ba2-8a62-b6bbbaa8e164 .entry-meta div{color:#999999;font-family:Poppins;font-size:14px;font-weight:400;line-height:1;margin:0 15px 15px 0}#section-eac91031-edc3-4fcd-bb15-1198cb49ffa8{background-color:#f7f7f7;padding:40px 0 0 0}@media only screen and (min-width:768px){#section-eac91031-edc3-4fcd-bb15-1198cb49ffa8{padding:50px 0 0 0}}#section-debfca48-5611-4bb0-865e-47a18f08fe3c .prefix-section-title .prefix-title{color:#111111}#section-a7a08c35-9db0-45ed-8069-420cd23fb59d .prefix-section-title .prefix-title{color:#111111}#section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item .prefix-single-item-title,#section-3de025b4-3e39-46ac-a066-28216e58cfd6 .prefix-single-item .prefix-single-item-title a{color:#ffffff;font-family:Poppins;font-size:28px;font-weight:400;text-transform:uppercase}#section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button{color:#ffffff;background-color:rgba(40,91,246,0);margin:0 0 0 0;padding:15px 30px 15px 30px;border-style:solid;border-width:1px 1px 1px 1px;border-color:rgba(255,255,255,1);border-top-left-radius:50px;border-top-right-radius:50px;border-bottom-right-radius:50px;border-bottom-left-radius:50px;font-family:Poppins;font-size:14px;font-weight:600;text-transform:uppercase;letter-spacing:1px}#section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button:hover{color:#000000;border-color:rgba(255,255,255,1);background-color:rgba(255,255,255,1)}@media only screen and (min-width:768px){#section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button{font-size:14px}}@media only screen and (min-width:992px){#section-b87121fe-7e7d-4ac5-bc09-1c3a852c5ef6 .prefix-single-item-button{font-size:14px}}#section-af669b8c-ae55-4db7-81a8-49c0b9b286a6 .prefix-section-title .prefix-title{color:#111111}#section-1cd80aa6-21aa-41bb-b4fa-db364d1e1bcb .prefix-section-title .prefix-title{color:#111111}#section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-section-title .prefix-title{color:#1b2831;font-family:Playfair Display;font-size:24px;font-weight:900}#section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-grid-item-wrap{margin:40px 0 0 0}#section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs .prefix-tabs-list{border-style:solid;border-width:0 0 3px 0;border-color:rgba(0,0,0,0);font-family:Poppins;font-size:16px;font-weight:400;color:#888888}#section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs .prefix-tabs-list:hover,#section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs .prefix-tabs-list.prefix-tab-active{color:#ea3a60;border-color:rgba(234,58,96,1)}#section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs-content-wrap .prefix-tabs-content{padding:20px 0 0 0;color:#888888;font-family:Poppins;font-size:15px;font-weight:400;line-height:2}#section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs-content-wrap .prefix-tabs-content{font-family:Poppins;font-size:15px;font-weight:400;line-height:2}#section-a40369cc-e386-47d7-9c5b-0904a4d94d76 .prefix-tabs-content-wrap .prefix-tabs-content{font-family:Poppins;font-size:15px;font-weight:400;line-height:2}#section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-section-title .prefix-title{padding:0 0 0 15px;color:#1b2831;font-family:Playfair Display;font-size:24px;font-weight:900}#section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-grid-item-wrap{margin:40px 0 0 0}#section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-single-item-title,#section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-single-item-title a{color:#1b2831;font-family:Poppins;font-size:16px;font-weight:500;margin:0 0 0 0}#section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .prefix-progressbar-circular{border-color:#ea3a60;height:200px;width:200px}#section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar-wrap,#section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar-wrap .progressbar{height:10px}#section-ca7c8fb1-3209-461c-96f9-5324bb1f1fd6 .prefix-single-item .progressbar{background-color:#ea3a60} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment