diff --git a/theme_splash/README.rst b/theme_splash/README.rst new file mode 100644 index 000000000..ffc693c2b --- /dev/null +++ b/theme_splash/README.rst @@ -0,0 +1,49 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Theme Splash +============ +* Design Web Pages with Theme Splash + +Configuration +============ + - www.odoo.com/documentation/18.0/administration/on_premise.html + - Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developers: (V18) Adarsh K, + (V17) Sruthi M, +* Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +-------- +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com" + +Further information +=================== +HTML Description: ``__ diff --git a/theme_splash/__init__.py b/theme_splash/__init__.py new file mode 100644 index 000000000..a52c1f82a --- /dev/null +++ b/theme_splash/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import controllers diff --git a/theme_splash/__manifest__.py b/theme_splash/__manifest__.py new file mode 100644 index 000000000..b1048abf8 --- /dev/null +++ b/theme_splash/__manifest__.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Theme Splash', + 'version': '18.0.1.0.0', + 'category': 'Theme/Corporate', + 'summary': 'Design Web Pages with Theme Splash', + 'description': 'Theme Splash is an attractive and unique front-end theme ' + 'mainly suitable for eCommerce website. Many custom ' + 'designed snippets facilitates to add better user experience' + 'Contains best deals with new arrival products slider, ' + 'testimonial slider that are configured from the backend. ' + 'This theme fully customized the eCommerce website, ' + 'shop view, custom categories view, product view,' + ' contact us page...etc. it contains price filter ' + 'and clear cart options by default.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'website_sale_wishlist', 'website_blog', 'website_mass_mailing'], + 'data': [ + 'views/contact_us_templates.xml', + 'views/website_layout_templates.xml', + 'views/shop_templates.xml', + 'views/blog_templates.xml', + 'views/snippets/website_snippets_templates.xml', + 'views/snippets/about.xml', + 'views/snippets/service.xml', + 'views/snippets/index/index_banner.xml', + 'views/snippets/index/index_about.xml', + 'views/snippets/index/index_tab_section.xml', + 'views/snippets/index/index_about_section.xml', + 'views/snippets/index/index_service.xml', + 'views/snippets/index/index_expect_tab.xml', + 'views/snippets/index/index_commercial_service.xml', + 'views/snippets/index/index_testmonial.xml', + 'views/snippets/index/index_blog.xml', + 'views/snippets/index/index_partner.xml' + ], + 'assets': { + 'web.assets_frontend': [ + 'https://use.fontawesome.com/releases/v5.7.0/css/all.css', + '/theme_splash/static/src/css/style.css', + '/theme_splash/static/src/js/custom.js', + '/theme_splash/static/src/css/font-awesome.min.css', + ] + }, + 'images': [ + 'static/description/banner.jpg', + 'static/description/theme_screenshot.jpg' + ], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/theme_splash/controllers/__init__.py b/theme_splash/controllers/__init__.py new file mode 100644 index 000000000..6169dc4f5 --- /dev/null +++ b/theme_splash/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import theme_splash diff --git a/theme_splash/controllers/theme_splash.py b/theme_splash/controllers/theme_splash.py new file mode 100644 index 000000000..920485ac9 --- /dev/null +++ b/theme_splash/controllers/theme_splash.py @@ -0,0 +1,80 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, http +from odoo.addons.website_blog.controllers.main import WebsiteBlog +from odoo.http import request +from odoo.osv import expression + + +class WebsiteBlogInherit(WebsiteBlog): + """Overrides the blog() and blog_post() methods to add recent posts to + their respective contexts.It also sets limits and orders for the posts + displayed on the blog and blog post pages.""" + + @http.route() + def blog(self, blog=None, tag=None, search=None, **opt): + """It fetches recent blog posts that are published on the website and + updates the context of the blog page with the recent posts.""" + posts = request.env['blog.post'].search(expression.AND([ + [('website_published', '=', True), + ('post_date', '<=', fields.Datetime.now())], + request.website.website_domain() + ]), limit=3, order='published_date desc') + res = super().blog(blog=blog, tag=tag, page=1, search=search, **opt) + res.qcontext.update({'posts_recent': posts}) + return res + + @http.route() + def blog_post(self, blog, blog_post, tag_id=None, **post): + """It adds a context variable 'posts_recent', which contains a list of + recent blog posts (limited to 3) to be displayed on the blog + post page.""" + posts = request.env['blog.post'].search(expression.AND([ + [('website_published', '=', True), + ('post_date', '<=', fields.Datetime.now())], + request.website.website_domain() + ]), limit=3, order='published_date desc') + res = super().blog_post(blog, blog_post, tag_id=tag_id, page=1, + enable_editor=None, **post) + res.qcontext.update({'posts_recent': posts}) + return res + + @http.route('/subscribe_newsletter', auth='public', type='json') + def subscribe_newsletter(self, **kw): + """ To save email to newsletter mail list """ + if request.env['mailing.contact'].sudo().search([ + ("email", "=", kw.get("email")), + ("list_ids", "in", [ + request.env.ref('mass_mailing.mailing_list_data').id])]): + return False + if request.env.user._is_public(): + visitor_sudo = (request.env['website.visitor'].sudo() + ._get_visitor_from_request()) + name = visitor_sudo.display_name if visitor_sudo else "Website Visitor" + else: + name = request.env.user.partner_id.name + request.env['mailing.contact'].sudo().create({ + "name": name, + "email": kw.get('email'), + "list_ids": [request.env.ref('mass_mailing.mailing_list_data').id] + }) + return True \ No newline at end of file diff --git a/theme_splash/doc/RELEASE_NOTES.md b/theme_splash/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..a1e3370d1 --- /dev/null +++ b/theme_splash/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 02.01.2025 +#### Version 18.0.1.0.0 +#### ADD +- Initial commit for Theme Splash + diff --git a/theme_splash/static/description/banner.jpg b/theme_splash/static/description/banner.jpg new file mode 100644 index 000000000..f9e740a22 Binary files /dev/null and b/theme_splash/static/description/banner.jpg differ diff --git a/theme_splash/static/description/icon.png b/theme_splash/static/description/icon.png new file mode 100644 index 000000000..85d12595f Binary files /dev/null and b/theme_splash/static/description/icon.png differ diff --git a/theme_splash/static/description/img/1.jpg b/theme_splash/static/description/img/1.jpg new file mode 100644 index 000000000..452743656 Binary files /dev/null and b/theme_splash/static/description/img/1.jpg differ diff --git a/theme_splash/static/description/img/2.jpg b/theme_splash/static/description/img/2.jpg new file mode 100644 index 000000000..790f2afb2 Binary files /dev/null and b/theme_splash/static/description/img/2.jpg differ diff --git a/theme_splash/static/description/img/3.jpg b/theme_splash/static/description/img/3.jpg new file mode 100644 index 000000000..89decbcd0 Binary files /dev/null and b/theme_splash/static/description/img/3.jpg differ diff --git a/theme_splash/static/description/img/4.jpg b/theme_splash/static/description/img/4.jpg new file mode 100644 index 000000000..8136ace13 Binary files /dev/null and b/theme_splash/static/description/img/4.jpg differ diff --git a/theme_splash/static/description/img/5.png b/theme_splash/static/description/img/5.png new file mode 100644 index 000000000..3d278433d Binary files /dev/null and b/theme_splash/static/description/img/5.png differ diff --git a/theme_splash/static/description/img/6.png b/theme_splash/static/description/img/6.png new file mode 100644 index 000000000..6c2087421 Binary files /dev/null and b/theme_splash/static/description/img/6.png differ diff --git a/theme_splash/static/description/img/arrows-repeat.svg b/theme_splash/static/description/img/arrows-repeat.svg new file mode 100644 index 000000000..94fb8f7f9 --- /dev/null +++ b/theme_splash/static/description/img/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_splash/static/description/img/check.svg b/theme_splash/static/description/img/check.svg new file mode 100644 index 000000000..8bc79333d --- /dev/null +++ b/theme_splash/static/description/img/check.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_splash/static/description/img/feature-star.svg b/theme_splash/static/description/img/feature-star.svg new file mode 100644 index 000000000..a913270e8 --- /dev/null +++ b/theme_splash/static/description/img/feature-star.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/theme_splash/static/description/img/gear.svg b/theme_splash/static/description/img/gear.svg new file mode 100644 index 000000000..ce383059d --- /dev/null +++ b/theme_splash/static/description/img/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_splash/static/description/img/hire-odoo.svg b/theme_splash/static/description/img/hire-odoo.svg new file mode 100644 index 000000000..9cfec4e44 --- /dev/null +++ b/theme_splash/static/description/img/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/theme_splash/static/description/img/life-ring-icon.svg b/theme_splash/static/description/img/life-ring-icon.svg new file mode 100644 index 000000000..b6c797ba1 --- /dev/null +++ b/theme_splash/static/description/img/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/theme_splash/static/description/img/odoo-consultancy.svg b/theme_splash/static/description/img/odoo-consultancy.svg new file mode 100644 index 000000000..c2c27e608 --- /dev/null +++ b/theme_splash/static/description/img/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme_splash/static/description/img/odoo-licencing.svg b/theme_splash/static/description/img/odoo-licencing.svg new file mode 100644 index 000000000..8a520b40f --- /dev/null +++ b/theme_splash/static/description/img/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_splash/static/description/img/patter.svg b/theme_splash/static/description/img/patter.svg new file mode 100644 index 000000000..9b7b0d7cd --- /dev/null +++ b/theme_splash/static/description/img/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/theme_splash/static/description/img/phone-screenshots.jpg b/theme_splash/static/description/img/phone-screenshots.jpg new file mode 100644 index 000000000..e0f3425e7 Binary files /dev/null and b/theme_splash/static/description/img/phone-screenshots.jpg differ diff --git a/theme_splash/static/description/img/puzzle-piece-icon.svg b/theme_splash/static/description/img/puzzle-piece-icon.svg new file mode 100644 index 000000000..ab5e56fa7 --- /dev/null +++ b/theme_splash/static/description/img/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_splash/static/description/img/screenshot-img.png b/theme_splash/static/description/img/screenshot-img.png new file mode 100644 index 000000000..a425d9ede Binary files /dev/null and b/theme_splash/static/description/img/screenshot-img.png differ diff --git a/theme_splash/static/description/img/screenshot-main.png b/theme_splash/static/description/img/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/theme_splash/static/description/img/screenshot-main.png differ diff --git a/theme_splash/static/description/img/translate.svg b/theme_splash/static/description/img/translate.svg new file mode 100644 index 000000000..eea729542 --- /dev/null +++ b/theme_splash/static/description/img/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_splash/static/description/img/visual_screenshots.jpg b/theme_splash/static/description/img/visual_screenshots.jpg new file mode 100644 index 000000000..89decbcd0 Binary files /dev/null and b/theme_splash/static/description/img/visual_screenshots.jpg differ diff --git a/theme_splash/static/description/img/wrench-icon.svg b/theme_splash/static/description/img/wrench-icon.svg new file mode 100644 index 000000000..4e0ce1d01 --- /dev/null +++ b/theme_splash/static/description/img/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_splash/static/description/index.html b/theme_splash/static/description/index.html new file mode 100644 index 000000000..6258844c7 --- /dev/null +++ b/theme_splash/static/description/index.html @@ -0,0 +1,787 @@ + + + + + + + app index + + + + + + + + + + +
+ + + +
+
+
+
+ +
+
+
+
+ +
+ Supports: +
+ Community +
+
+ Enterprise +
+
+
+
+
+ Availability: +
+ Odoo Online +
+
+ Odoo.sh +
+
+ On Premise +
+
+
+
+
+
+ + + + +
+
+ +
+
+ + + + + +
+
+
+
+
+

Our Features

+ +

info includes 300+ elements that you may need to create website without + external plugins.

+
+
+
+
+
+
+
+ +

A striking frontend theme

+ +

Theme Splash : A striking frontend theme tailored for eCommerce.

+
+ +
+
+
+
+
+ +

Custom-designed snippets

+ +

Custom-designed snippets enhance user experience.

+
+ +
+
+
+
+
+ +

Features dynamic elements

+ +

Features dynamic elements like product sliders and testimonials.

+
+ + +
+
+
+
+
+ +

Customized eCommerce websites

+ +

Fully customizes eCommerce websites, including shop and product views.

+
+ +
+
+
+
+
+ +

Modified Structure

+ +

Modified Structure for All Type Views.

+
+ +
+
+
+
+
+ +

User-friendly interface

+ +

User-friendly interface for both desktop and mobile devices.

+
+ +
+
+
+
+
+ + +
+
+
+ +
+
+ + + +
+
+
+

Theme Features

+
+
+
+
+ HIGHLIGHT +

Home Page

+

It is easy to customize and use. Just drag and drop the building + blocks to make attractive webpages.Customizable building blocks in home page design helps you + to edit them as per needs.

+ +
+
+ Grid item +
+ +
+
+
+ + + + +
+
+
+
+ HIGHLIGHT +

Blog

+

It is easy to customize and use. Just drag and drop the building + blocks to make attractive webpages.

+ +
+
+ Grid item +
+ +
+
+ +
+
+
+ HIGHLIGHT +

Overview

+

It is easy to customize and use. Just drag and drop the building + blocks to make attractive webpages.

+ +
+
+ Grid item +
+ +
+
+
+ + + + +
+
+
+
+ HIGHLIGHT +

Services

+

It is easy to customize and use. Just drag and drop the building blocks + to make attractive webpages.

+ +
+
+ Grid item +
+ +
+
+ +
+
+
+ HIGHLIGHT +

About

+

It is easy to customize and use. Just drag and drop the building blocks + to make attractive webpages.

+ +
+
+ Grid item +
+ +
+
+
+ + + + +
+
+
+
+ HIGHLIGHT +

Contact

+

It is easy to customize and use. Just drag and drop the building + blocks to make attractive webpages.

+ +
+
+ Grid item +
+ +
+
+
+ + +
+
+
+
+ +
+ + +
+ + + + + + + +
+
+
+
+

+ Transform Your
+ Website into a + Visual Masterpiece. +

+ +
+

Unlock the full potential of your online presence with a stunning website design. Whether + viewed on desktop, tablet, or mobile, your site will look incredible and function seamlessly. Delight + visitors with a visually striking, user-friendly interface that keeps them coming back.

+
    +
  • High-Quality Visuals
  • +
  • Fast Load Times
  • +
  • Intuitive Navigation and User Experience
  • +
  • Responsive and Adaptive Design
  • +
+
+
+
+
+
+
+ +
+ +
+
+
+
+ + + +
+
+
+
+
+ +
+ +
+
+
+
+

+ Designed for Mobile,
+ Built to Impress +

+ +
+

Every detail of your website is crafted to deliver a stunning, user-friendly experience on + any mobile device. Your customers will love the seamless navigation and clear visuals.

+
    +
  • Fast Loading Times
  • +
  • User-Friendly Navigation
  • +
  • Responsive Design for Any Device
  • +
+
+
+
+ +
+
+ + + + + + + + +
+ + + + \ No newline at end of file diff --git a/theme_splash/static/description/theme_screenshot.jpg b/theme_splash/static/description/theme_screenshot.jpg new file mode 100644 index 000000000..ce44567b5 Binary files /dev/null and b/theme_splash/static/description/theme_screenshot.jpg differ diff --git a/theme_splash/static/src/css/font-awesome.min.css b/theme_splash/static/src/css/font-awesome.min.css new file mode 100644 index 000000000..540440ce8 --- /dev/null +++ b/theme_splash/static/src/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/theme_splash/static/src/css/style.css b/theme_splash/static/src/css/style.css new file mode 100644 index 000000000..f682a81fc --- /dev/null +++ b/theme_splash/static/src/css/style.css @@ -0,0 +1,3416 @@ +/*@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700&display=swap");*/ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ +/* Document + ========================================================================== */ +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ +html { + line-height: 1.15; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ +} + +/* Sections + ========================================================================== */ +/** + * Remove the margin in all browsers. + */ +body { + margin: 0; +} + +.btn-light:hover { + background-color: black; +} +.btn-light { + background-color: grey; +} + +/** + * Render the `main` element consistently in IE. + */ +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ +hr { + box-sizing: content-box; + /* 1 */ + height: 0; + /* 1 */ + overflow: visible; + /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +pre { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ +/** + * Remove the gray background on active links in IE 10. + */ +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ +abbr[title] { + border-bottom: none; + /* 1 */ + text-decoration: underline; + /* 2 */ + text-decoration: underline dotted; + /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +code, +kbd, +samp { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ +/** + * Remove the border on images inside links in IE 10. + */ +img { + border-style: none; +} + +/* Forms + ========================================================================== */ +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ +button, +input, +optgroup, +select, +textarea { + font-family: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + line-height: 1.15; + /* 1 */ + margin: 0; + /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ +button, +input { + /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ +button, +select { + /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ +legend { + box-sizing: border-box; + /* 1 */ + color: inherit; + /* 2 */ + display: table; + /* 1 */ + max-width: 100%; + /* 1 */ + padding: 0; + /* 3 */ + white-space: normal; + /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ +[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ +} + +/* Interactive + =========================================== + =============================== */ +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ +/** + * Add the correct display in IE 10+. + */ +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ +[hidden] { + display: none; +} + +.nav-wrapper { + background-color: #fff; + box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); + z-index: 9999; + animation: 300ms ease-in-out 0s normal none 1 running fadeInDown; + -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); +} + +.nav-wrapper .navbar { + margin: auto 105px; +} + +@media screen and (max-width: 600px) { + .nav-wrapper .navbar { + margin: auto; + } +} + +.nav-wrapper .navbar #new { + padding-top: 35px; + padding-bottom: 35px; +} + +.nav-wrapper .navbar .navbar-toggler { + border-color: #087b81; +} + +.nav-wrapper .navbar .navbar-toggler:hover { + background-color: #087b81; +} + +.nav-wrapper .navbar .navbar-toggler span { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 3px; + padding-right: 3px; + color: #149180 !important; + font-size: 26px; + color: #087b81 !important; +} + +.nav-wrapper .navbar .navbar-toggler span:hover { + color: #fff !important; +} + +.nav-wrapper .navbar .navbar-brand { + color: #24c5ce; + font-size: 36px; + font-weight: 600; +} + +.nav-wrapper .navbar .nav-item .nav-link { + padding-right: 0.8rem; + padding-left: 0.8rem; + color: #797979; +} + +.nav-wrapper .navbar .nav-item .nav-link:hover { + color: #000000 !important; +} + +.nav-wrapper .navbar .active .nav-link { + color: #087b81 !important; +} + +.nav-wrapper .navbar .search span { + color: #087b81; + color: #036b70; + margin-right: 20px; + font-size: 20px; + width: 40px; + height: 40px; + border-radius: 50%; + display: inline-block; + text-align: center; + line-height: 41px; +} + +.nav-wrapper .navbar .search span:hover { + background-color: #087b81; + color: #fff; +} + +.banner .carousel-indicators li { + box-sizing: content-box; + flex: 0 1 auto; + width: 15px; + height: 15px; + margin-right: 14px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity .6s ease; + border-radius: 50%; +} + + +.banner .card { + margin-top: 100px; + align-self: center; + background: transparent !important; + border: none; + +} + +.card-body{ + background: transparent !important; + } + +.banner .card .card-title { + color: #fff; + font-size: 60px; + font-weight: 600; +} + +@media screen and (max-width: 768px) { + .banner .card .card-title { + font-size: 40px; + } +} + +.banner .card .card-title span { + margin-top: 20px; +} + +.banner .card .card-text { + color: #fff; + font-size: 18px; + margin-top: 32px; + margin-bottom: 35px; +} + +.banner-1 { + display: flex; + align-items: flex-start; + justify-content: center; + background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%), url(./../images/banner/banner1.jpg); + height: 100vh; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; +} + +.banner-2 { + display: flex; + align-items: flex-start; + justify-content: center; + background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%), url(./../images/banner/banner2.jpg); + height: 100vh; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; +} + +.banner-3 { + display: flex; + align-items: flex-start; + justify-content: center; + background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%), url(./../images/banner/banner3.jpg); + height: 100vh; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; +} + +.footer { + background-color: #036b70; + padding-top: 90px; +} + +@media screen and (max-width: 996px) { + .footer .footer_part { + margin-bottom: 40px; + } +} + +.footer h4 { + color: #fff; + font-size: 25px; + font-weight: 600; +} + +.footer .fp { + color: #aaa; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.footer .fpm { + color: #aaa; + font-size: 18px; + padding-top: 10px; +} + +.footer .fpm a { + color: #aaa; +} + +.footer .fpm a:hover { + text-decoration: none; + color: #fff; +} + +@media screen and (max-width: 996px) { + .footer .footer_icons { + margin-bottom: 40px; + padding-bottom: 10px; + } +} + +.footer .footer_icons ul { + display: flex; + list-style: none; + padding-left: 0; + margin-top: 20px; +} + +.footer .footer_icons ul .fb:hover { + background: #3b5998; + color: #fff; +} + +.footer .footer_icons ul .tw:hover { + background: #1da1f2; + color: #fff; +} + +.footer .footer_icons ul .gg:hover { + background: #f44336; + color: #fff; +} + +.footer .footer_icons ul .dr:hover { + background: #ea4c89; + color: #fff; +} + +.footer .footer_icons ul li { + color: #aaa; + font-size: 18px; + width: 40px; + height: 40px; + border-radius: 50%; + margin-right: 20px; + background-color: #363434; + text-align: center; + padding-top: 11px; +} + +.footer .footer_icons ul li:hover { + background-color: #087b81; +} + +@media screen and (max-width: 996px) { + .footer .ping { + margin-bottom: 40px; + padding-bottom: 10px; + } +} + +.footer .ping .form-inline { + margin-bottom: 15px; +} + +.footer .ping .md-form { + width: 100%; + margin-bottom: 20px; +} + +.footer .ping .md-form .form-control { + width: 100%; + padding: 12px; + border-radius: 5px; +} + +.footer .footer_bottom { + margin-top: 30px; + padding: 30px 0; + color: #aaa; + font-size: 18px; + background-color: #05393b; +} + +.footer .footer_bottom a { + color: #fff; + text-decoration: none; +} + +.footer .footer_bottom a:hover { + color: #087b81; +} +/*.sidebar{ +margin-top: 40px; +}*/ +.sidebar .sidebar_content { + padding: 30px 30px; + border: 1px solid; + border-radius: 5px; + border-color: #d6d6d6; + margin-bottom: 30px; +} + +.sidebar .sidebar_content h4 { + color: #24c5ce; + font-size: 20px; + font-weight: 600; + padding-bottom: 10px; +} + +.sidebar .sidebar_content form { + border: 1px solid; + border-color: #d6d6d6; + border-radius: 5px; + display: flex; + align-items: center; + padding: 10px 20px; +} + +.sidebar .sidebar_content form a { + color: #24c5ce; + text-decoration: none; +} + +.sidebar .sidebar_content form input { + border: none !important; +} + +.sidebar .sidebar_content .all_categories { + padding-left: 0; +} + +.sidebar .sidebar_content .all_categories a { + display: flex; + justify-content: space-between; + align-items: baseline; + color: #535353; + border: 1px solid; + border-color: transparent; + border-bottom-color: #d6d6d6; + text-decoration: none; +} + +.sidebar .sidebar_content .all_categories a:hover { + color: #087b81; +} + +.sidebar .sidebar_content .all_categories a li { + padding-bottom: 15px; + margin-top: 20px; + font-size: 18px; +} + +.sidebar .sidebar_content .all_categories a li:hover { + animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; + transform: translate3d(0, 0, 0); + backface-visibility: hidden; + perspective: 1000px; +} + +.sidebar .sidebar_content .all_categories a li span { + color: #535353; +} + +.sidebar .sidebar_content .all_categories a li span:hover { + color: #087b81; +} + +.sidebar .sidebar_content .recent_wrapper { + display: flex; + padding-bottom: 20px; + +} +.img_wrap{ + height: 100px !important; + width: 100px !important; +} + +.sidebar .sidebar_content .recent_wrapper .img_wrapper { + max-width: 100px; + width: 100px !important; + +} + +@media screen and (max-width: 996px) { + .sidebar .sidebar_content .recent_wrapper .img_wrapper { + margin-bottom: 30px; + } +} + +@media screen and (max-width: 996px) { + .sidebar .sidebar_content .recent_wrapper .img_wrapper { + max-width: 200px; + } +} + +.sidebar .sidebar_content .recent_wrapper .img_wrapper img { + width: 100%; + border-radius: 5px; +} + +.sidebar .sidebar_content .recent_wrapper .rec_post_info { + margin-left: 10px; + padding-top: 20px; +} + +@media screen and (max-width: 1200px) { + .sidebar .sidebar_content .recent_wrapper .rec_post_info { + padding-top: 0; + } +} + + + +@media screen and (max-width: 996px) { + .sidebar .sidebar_content .recent_wrapper .rec_post_info { + padding-top: 50px; + } +} + +@media screen and (max-width: 394px) { + .sidebar .sidebar_content .recent_wrapper .rec_post_info { + padding-top: 10px; + } +} + +.sidebar .sidebar_content .recent_wrapper .rec_post_info h4 { + color: #24c5ce; + font-size: 20px; + font-weight: 600; +} + +@media screen and (max-width: 1200px) { + .sidebar .sidebar_content .recent_wrapper .rec_post_info h4 { + font-size: 16px; + } +} + +@media screen and (max-width: 996px) { + .sidebar .sidebar_content .recent_wrapper .rec_post_info h4 { + font-size: 20px; + } +} + +@media screen and (max-width: 394px) { + .sidebar .sidebar_content .recent_wrapper .rec_post_info h4 { + font-size: 18px; + } +} + +.sidebar .sidebar_content .recent_wrapper .rec_post_info h4:hover { + color: #087b81; +} + +.sidebar .sidebar_content .insta_wrapper { + display: grid; + grid-template-columns: 1fr 1fr 1fr; +} + +.sidebar .sidebar_content .insta_wrapper .insta_img { + max-width: 88px; +} + +@media screen and (max-width: 1200px) { + .sidebar .sidebar_content .insta_wrapper .insta_img { + max-width: 70px; + } +} + +@media screen and (max-width: 996px) { + .sidebar .sidebar_content .insta_wrapper .insta_img { + max-width: 200px; + } +} + +@media screen and (max-width: 786px) { + .sidebar .sidebar_content .insta_wrapper .insta_img { + max-width: 135px; + } +} + +@media screen and (max-width: 520px) { + .sidebar .sidebar_content .insta_wrapper .insta_img { + max-width: 115px; + } +} + +@media screen and (max-width: 450px) { + .sidebar .sidebar_content .insta_wrapper .insta_img { + max-width: 100px; + } +} + +@media screen and (max-width: 400px) { + .sidebar .sidebar_content .insta_wrapper .insta_img { + max-width: 80px; + } +} + +.sidebar .sidebar_content .insta_wrapper .insta_img img { + width: 100%; + border-radius: 5px; +} + +.sidebar .sidebar_content .adv_img img { + width: 100%; + border-radius: 5px; +} + +.sidebar .sidebar_content .blog_social_icon { + margin-top: 30px; +} + +.sidebar .sidebar_content .blog_social_icon ul { + display: flex; + padding-left: 0; +} + +.sidebar .sidebar_content .blog_social_icon ul li { + color: #fff; + font-size: 14px; + width: 36px; + height: 36px; + border-radius: 50%; + margin-right: 20px; + text-align: center; + padding-top: 11px; +} + +.sidebar .sidebar_content .blog_social_icon ul li:hover { + background-color: #087b81; +} + +.sidebar .sidebar_content .blog_social_icon ul .fb { + background: #3b5998; + color: #fff; +} + +.sidebar .sidebar_content .blog_social_icon ul .fb:hover { + background: #2a4b92; +} + +.sidebar .sidebar_content .blog_social_icon ul .tw { + background: #1da1f2; + color: #fff; +} + +.sidebar .sidebar_content .blog_social_icon ul .tw:hover { + background: #0a8ee0; +} + +.sidebar .sidebar_content .blog_social_icon ul .in { + background: #f44336; + color: #fff; +} + +.sidebar .sidebar_content .blog_social_icon ul .in:hover { + background: #f12c1d; +} + +.sidebar .sidebar_content p { + color: #535353; + font-size: 16px; + letter-spacing: 0.1rem; +} + +@keyframes shake { + 10%, + 90% { + transform: translate3d(-1px, 0, 0); + } + 20%, + 80% { + transform: translate3d(2px, 0, 0); + } + 30%, + 50%, + 70% { + transform: translate3d(-4px, 0, 0); + } + 40%, + 60% { + transform: translate3d(4px, 0, 0); + } +} + +.btn { + border: none !important; + outline: none !important; +} + +.btn-primary { + background-color: #0aa1aa !important; + border-color: #0aa1aa; + padding: 10px 26px; + color: #fff !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; +} + +.btn-primary:hover { + background-color: #076469 !important; + border: none; +} + +.btn-qut { + background-color: #0aa1aa !important; + border-color: #0aa1aa; + padding: 10px 26px; + color: #fff !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; +} + +.btn-qut:hover { + background-color: #076469 !important; + border: none; +} + +@media screen and (max-width: 1198px) { + .btn-qut { + font-size: 16px; + padding: 5px 45px; + } +} + +.btn-get { + background-color: #fff !important; + border-color: #fff; + padding: 11px 29px; + color: #087b81 !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + margin-right: 10px; +} + +.btn-get:hover { + color: #000000 !important; + border: none; +} + +@media screen and (max-width: 382px) { + .btn-get { + margin-bottom: 20px; + margin-left: 10px; + } +} + +.btn-get_t { + background-color: #fff !important; + border-color: #fff; + padding: 11px 29px; + color: #087b81 !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + margin-right: 10px; +} + +.btn-get_t:hover { + color: #000000 !important; + border: none; +} + +@media screen and (max-width: 424px) { + .btn-get_t { + margin-bottom: 20px; + } +} + +.btn-quote { + background-color: transparent !important; + border-color: none; + color: #6ddbba !important; + font-size: 18px; + font-weight: 600; + outline: transparent !important; +} + +.btn-quote:hover { + color: #59d6b0 !important; + border: none; +} + +.btn-quoteF { + background-color: transparent !important; + border-color: none; + color: #6ddbba !important; + font-size: 18px; + font-weight: 600; + outline: transparent !important; + padding-left: 0; +} + +.btn-quoteF:hover { + color: #59d6b0 !important; + border: none; +} + +.btn-light { + color: #fff; + padding: 0.375rem 1rem !important; + cursor: pointer; + padding: 9px 35px; +} + +.btn-light:hover { + color: #fff; +} + +.btn-service { + background-color: #fff !important; + border-color: #0aa1aa; + border: 1px solid !important; + padding: 11px 29px; + color: #0aa1aa !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + margin-top: 20px; +} + +.btn-service:hover { + background-color: #087b81 !important; + border: none; + color: #fff !important; +} + +.btn-sub { + background-color: #0aa1aa !important; + border-color: #0aa1aa; + padding: 11px; + width: 100%; + color: #fff !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; +} + +.btn-sub:hover { + background-color: #076469 !important; + border: none; +} + +.btn-booking { + background-color: transparent !important; + border-color: #ffffff; + border: 1px solid !important; + padding: 11px 29px; + color: #fff !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; +} + +.btn-booking:hover { + background-color: #fff !important; + border: #fff !important; + color: #000000 !important; +} + +.btn-reply { + color: #087b81; + font-size: 16px; + font-weight: 600; + padding: 0; + outline-style: none !important; + outline: none !important; +} + +.btn-reply:hover { + color: #24c5ce; +} + +.btn-pop { + color: #535353; + font-size: 18px; + border: 1px solid !important; + border-color: #d6d6d6 !important; + border-radius: 5px; + padding: 6px 10px; + margin-bottom: 10px !important; +} + +.btn-pop:hover { + color: #fff !important; + background-color: #087b81; +} + +.experience .exp_wrapper { + margin-top: 50px; +} + +.experience .exp_wrapper .ex-1 { + padding-bottom: 40px; + position: relative; +} + +.experience .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + font-weight: 600; +} + +.experience .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #14c1ca; + content: ""; + display: block; +} + +.experience .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 36px; + margin-top: 20px; + font-weight: 600; +} + +.experience .exp_wrapper .ex-1 p { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.experience .exp_wrapper .about-img img { + border-radius: 5px; + width: 100%; + border-radius: 10px; +} + +.experience .exp_wrapper .about_desc .wrapper .top { + text-indent: 76px; + letter-spacing: 3px; + font-size: 18px; + color: #535353; + font-weight: 600; + padding-top: 25px; +} + +@media screen and (max-width: 767px) { + .experience .exp_wrapper .about_desc .wrapper .top { + margin-top: 40px; + } +} + +.experience .exp_wrapper .about_desc .wrapper h4 { + color: #24c5ce; + font-weight: 600; + font-size: 28px; + padding-top: 10px; +} + +.experience .exp_wrapper .about_desc .wrapper .bottom { + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + padding-top: 15px; +} + +.tab { + background-color: #f7f7f7; +} + +@media screen and (max-width: 996px) { + .tab .tabs { + margin-bottom: 0 !important; + } +} + +.tab .classic-tabs .nav { + justify-content: end; +} + +.tab .classic-tabs .nav .nav-item :active { + color: #087b81 !important; + background-color: #fff !important; + border-radius: 5px; +} + +.tab .classic-tabs .nav .nav-item a { + font-size: 22px; + padding: 20px 45px; + color: #24c5ce; + font-weight: 600; +} + +.tab .classic-tabs .tab-content .wrapper { + padding-top: 30px; +} + +.tab .classic-tabs .tab-content .wrapper .tab_left { + margin-top: 20px; +} + +.tab .classic-tabs .tab-content .wrapper .tab_left h4 { + color: #24c5ce; + font-weight: 600; + font-size: 28px; + padding-top: 10px; +} + +.tab .classic-tabs .tab-content .wrapper .tab_left p { + padding-right: 50px; + padding-bottom: 15px; +} + +.tab .classic-tabs .tab-content .wrapper .tab_icons { + display: flex; + justify-content: space-between; + padding-top: 15px; + margin-bottom: 50px; +} + +.tab .classic-tabs .tab-content .wrapper .tab_icons .icon { + border-radius: 9px; +} + +.tab .classic-tabs .tab-content .wrapper .tab_icons .icon span { + display: flex; + justify-content: center; + color: #087b81; + font-size: 40px; +} + +.tab .classic-tabs .tab-content .wrapper .tab_icons .icon .icon-bottom { + color: #24c5ce; + font-size: 18px; + font-weight: 500; + margin-top: 15px; +} + +@media screen and (max-width: 991px) { + .tab .classic-tabs .tab-content .tab_right { + margin-top: 40px; + } +} + +.tab .classic-tabs .tab-content .tab_right img { + border-radius: 5px; +} + +.about3 .exp_wrapper { + margin-top: 50px; +} + +.about3 .exp_wrapper .ex-1 { + padding-bottom: 40px; +} + +.about3 .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.about3 .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #14c1ca; + content: ""; + display: block; +} + +.about3 .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +.about3 .exp_wrapper .ex-1 p { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.about3 .exp_wrapper .about-img img { + border-radius: 5px; + width: 100%; + border-radius: 10px; +} + + div.o_wsale_product_sub .o_wsale_product_btn button{ + background-color: #0aa1aa !important; +} + +.best { + background-color: #f7f7f7; +} + +.best .exp_wrapper { + margin-top: 50px; +} + +.best .exp_wrapper .best_l { + padding-bottom: 40px; +} + +.best .exp_wrapper .best_l .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +.best .exp_wrapper .best_l p { + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; +} + +.best .exp_wrapper .best_r .card { + border-radius: 8px; + border: none; + margin-bottom: 30px; +} + +.best .exp_wrapper .best_r .card:hover { + box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.46); +} + +.best .exp_wrapper .best_r .card .card-body { + padding: 38px 37px; +} + +.best .exp_wrapper .best_r .card .card-body span { + color: #087b81; + font-size: 30px; + margin-bottom: 20px; +} + +.best .exp_wrapper .best_r .card .card-body .card-title { + padding-top: 10px; +} + +.best .exp_wrapper .best_r .card .card-body .card-title a { + color: #24c5ce; + font-weight: 600; +} + +.best .exp_wrapper .best_r .card .card-body .card-title a:hover { + color: #087b81; + text-decoration: none; +} + +.best .exp_wrapper .best_r .card .card-body .card-text { + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; +} + +.expect .exp_wrapper { + margin-top: 50px; +} + +.expect .exp_wrapper .ex-1 { + padding-bottom: 40px; +} + +.expect .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.expect .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #14c1ca; + content: ""; + display: block; +} + +.expect .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +.expect .exp_wrapper .ex-1 p { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.expect .exp_wrapper .ex-1 .expect_bottom { + padding-top: 20px; + display: flex; + justify-content: space-between; + margin-right: 100px; +} + +.expect .exp_wrapper .ex-1 .expect_bottom .clean { + display: flex; +} + +.expect .exp_wrapper .ex-1 .expect_bottom .clean span { + color: #087b81; + font-size: 30px; +} + +.expect .exp_wrapper .ex-1 .expect_bottom .clean .wrapper { + margin-left: 20px; +} + +.expect .exp_wrapper .ex-1 .expect_bottom .clean .wrapper h4 { + color: #24c5ce; + font-weight: 600; + font-size: 30px; +} + +.expect .exp_wrapper .ex-1 .expect_bottom .clean .wrapper p { + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; +} + +.expect .exp_wrapper .exp_right { + position: relative; + margin-left: 90px; +} + +@media screen and (max-width: 577px) { + .expect .exp_wrapper .exp_right { + margin-left: 0; + } +} + +.expect .exp_wrapper .exp_right .about-img { + max-width: 600px; +} + +.expect .exp_wrapper .exp_right .about-img img { + border-radius: 8px; + width: 100%; +} + +.expect .exp_wrapper .exp_right .description { + position: absolute; + background-color: #087b81; + border-radius: 8px; + bottom: 70px; + left: -98px; + box-shadow: -1px 5px 23px -4px rgba(0, 0, 0, 0.75); +} + +@media screen and (max-width: 1200px) { + .expect .exp_wrapper .exp_right .description { + bottom: 34px; + } +} + +@media screen and (max-width: 577px) { + .expect .exp_wrapper .exp_right .description { + left: 0; + } +} + +@media screen and (max-width: 376px) { + .expect .exp_wrapper .exp_right .description { + left: 0; + margin-top: 60px; + position: relative; + } +} + +.expect .exp_wrapper .exp_right .description .wrapper { + padding: 40px 37px; + color: #fff; +} + +.expect .exp_wrapper .exp_right .description .wrapper h4 { + font-weight: 600; + font-size: 18px; +} + +.expect .exp_wrapper .exp_right .description .wrapper span { + color: #fff; + font-size: 22px; +} + +.expect .exp_wrapper .exp_right .description .wrapper span a { + padding-left: 20px; + color: #fff; + font-size: 20px; + font-weight: 600; +} + +.commercial_service .card { + margin-top: 100px; + align-self: center; + background: transparent; + border: none; +} + +.commercial_service .card .card-title { + color: #fff; + font-size: 60px; + font-weight: 600; +} + +@media screen and (max-width: 768px) { + .commercial_service .card .card-title { + font-size: 40px; + } +} + +@media screen and (max-width: 400px) { + .commercial_service .card .card-title { + font-size: 30px; + } +} + +.commercial_service .card .card-title span { + margin-top: 20px; +} + +.commercial_service .card .card-text { + color: #fff; + font-size: 18px; + margin-top: 32px; + margin-bottom: 35px; +} + +.testmonial .img_wrapper { + background-color: #0000000f !important; + border-radius: 8px; + max-width: 600px; +} + +.testmonial .img_wrapper img { + width: 100%; + height: auto; + margin-left: -2em; + margin-top: -2em; + margin-bottom: 2em; + border-radius: 6px; +} + +@media screen and (max-width: 600px) { + .testmonial .img_wrapper img { + margin-left: 0; + } +} + +.testmonial .ex-1 { + padding-bottom: 40px; +} + +.testmonial .ex-1 .carousel-indicators { + bottom: -30px; + bottom: -43px; + display: flex; + justify-content: flex-start; + margin-left: 0; +} + +.testmonial .ex-1 .carousel-indicators .active { + background-color: cornflowerblue; +} + +.testmonial .ex-1 .carousel-indicators li { + box-sizing: content-box; + flex: 0 1 auto; + width: 13px; + height: 13px; + margin-right: 14px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #535353; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity .6s ease; + border-radius: 50%; +} + +.testmonial .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.testmonial .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; +} + +.testmonial .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +.testmonial .ex-1 blockquote { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.testmonial .ex-1 blockquote:before { + color: #087b81; + content: open-quote; + font-size: 3em; + font-family: initial; + line-height: 0.8; + padding-top: 8px; + display: inline-block; +} + +.testmonial .ex-1 .wrapper { + display: flex; + padding-top: 5px; +} + +.testmonial .ex-1 .wrapper span { + color: #24c5ce; + font-weight: 600; + font-size: 20px; +} + +.testmonial .ex-1 .wrapper .bottom { + padding-top: 3px; + padding-left: 20px; +} + +.blog { + background-color: #f7f7f7; + margin-top: 90px; +} + +.blog .exp_wrapper .ex-1 { + padding-bottom: 40px; + padding-top: 70px; +} + +.blog .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.blog .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; +} + +.blog .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 35px; + margin-top: 20px; + font-weight: 600; +} + +.blog .blog_contents { + padding-top: 40px; + padding-bottom: 40px; +} + +.blog .card { + text-align: left !important; + background: transparent; + border: none; + overflow: hidden !important; +} + +.blog .card .img_wrapper2 { + overflow: hidden; +} + +.blog .card .wrapper { + padding-left: 15px; + background-color: #fff; + padding-bottom: 50px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; + box-shadow: 2px 2px; +} + +.blog .card #zoomIn { + transform: scale(1); + transition: .3s ease-in-out; + border-radius: 6px 6px 0px 0px; + -webkit-border-radius: 6px 6px 0px 0px; + -o-border-radius: 6px 6px 0px 0px; + -moz-border-radius: 6px 6px 0px 0px; +} + +.blog .card #zoomIn:hover { + transform: scale(1.3); + border-radius: 6px 6px 0px 0px; + -webkit-border-radius: 6px 6px 0px 0px; + -o-border-radius: 6px 6px 0px 0px; + -moz-border-radius: 6px 6px 0px 0px; +} + +.blog .card ul { + margin-top: 30px; + list-style: none; + padding-left: 0; +} + +.blog .card ul li { + color: #087b81; + font-weight: 600; + margin-right: 10px; + background: transparent; + border: none; + font-size: 16px; +} + +.blog .card .card-body { + padding-top: 0; + padding-bottom: 0; + padding-left: 0; +} + +.blog .card .card-body a { + color: #24c5ce; + font-weight: 600; + font-size: 20px; +} + +.blog .card .card-body a:hover { + color: #087b81; +} + +.partner { + margin-top: 70px; + padding-bottom: 50px; +} + +.partner h3 { + color: #0a6368; + font-size: 40px; + font-weight: 600; + text-align: center; + margin-bottom: 20px; +} + +.partner .wrapper { + padding-top: 40px; + padding-bottom: 40px; +} + +.partner .wrapper img { + width: 100%; + filter: grayscale(1); + transition: 0.3s ease; + opacity: .5; +} + +.partner .wrapper img:hover { + filter: grayscale(0); + transition: 0.3s ease; + opacity: 1; +} + +@media screen and (max-width: 996px) { + .partner .wrapper img { + padding-bottom: 20px; + } +} + +@media screen and (max-width: 600px) { + .partner .wrapper img { + margin-bottom: 30px; + } +} + +.banner_about { + background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%), url(./../images/banner/banner1.jpg); + padding: 135px 0; + background-size: cover !important; + width: 100%; + background-repeat: no-repeat; + position: relative; +} + +.banner_about .b_head { + margin-top: 100px; + color: #fff; + text-align: center; + font-size: 45px; + font-weight: 700; + width: 100%; + text-align: left; +} + +.about_main_2 .exp_wrapper { + margin-top: 50px; +} + +.about_main_2 .exp_wrapper .ex-1 { + padding-bottom: 40px; +} + +.about_main_2 .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.about_main_2 .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; +} + +.about_main_2 .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +@media screen and (max-width: 576px) { + .about_main_2 .exp_wrapper .wrapper { + margin: 0 10px; + } +} + +.about_main_2 .exp_wrapper .wrapper h4 { + color: #24c5ce; + font-size: 25px; + margin-top: 15px; + font-weight: 600; +} + +.about_main_2 .exp_wrapper .wrapper p { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.about_main_2 .exp_wrapper .wrapper .about-img img { + border-radius: 5px; + width: 100%; + border-radius: 10px; +} + +.about_main_3 .exp_wrapper { + margin-top: 50px; +} + +.about_main_3 .exp_wrapper .ex-1 { + padding-bottom: 40px; +} + +.about_main_3 .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.about_main_3 .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; +} + +.about_main_3 .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +.about_main_3 .exp_wrapper .ex-1 p { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.about_main_3 .exp_wrapper .ex-1 .expect_bottom { + padding-top: 20px; + display: flex; + justify-content: space-between; + margin-right: 100px; +} + +.about_main_3 .exp_wrapper .ex-1 .expect_bottom .clean { + display: flex; +} + +.about_main_3 .exp_wrapper .ex-1 .expect_bottom .clean span { + color: #087b81; + font-size: 30px; +} + +.about_main_3 .exp_wrapper .ex-1 .expect_bottom .clean .wrapper { + margin-left: 20px; +} + +.about_main_3 .exp_wrapper .ex-1 .expect_bottom .clean .wrapper h4 { + color: #24c5ce; + font-weight: 600; + font-size: 30px; +} + +.about_main_3 .exp_wrapper .ex-1 .expect_bottom .clean .wrapper p { + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; +} + +.about_main_3 .exp_wrapper .about-img { + max-width: 450px; +} + +@media screen and (max-width: 576px) { + .about_main_3 .exp_wrapper .about-img { + margin-bottom: 20px; + } +} + +.about_main_3 .exp_wrapper .about-img img { + border-radius: 5px; + width: 100%; + border-radius: 10px; +} + +.about_main_4 .exp_wrapper { + margin-top: 50px; +} + +.about_main_4 .exp_wrapper .ex-1 { + padding-bottom: 40px; +} + +.about_main_4 .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.about_main_4 .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; +} + +.about_main_4 .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +.about_main_4 .exp_wrapper .expect_bottom { + padding-top: 20px; +} + +.about_main_4 .exp_wrapper .expect_bottom .clean { + display: flex; +} + +.about_main_4 .exp_wrapper .expect_bottom .clean span { + color: #087b81; + font-size: 30px; +} + +.about_main_4 .exp_wrapper .expect_bottom .clean .wrapper { + margin-left: 20px; +} + +.about_main_4 .exp_wrapper .expect_bottom .clean .wrapper h4 { + color: #24c5ce; + font-weight: 600; + font-size: 30px; +} + +.about_main_4 .exp_wrapper .expect_bottom .clean .wrapper p { + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; +} + +.about_main_5 .exp_wrapper { + margin-top: 50px; +} + +.about_main_5 .exp_wrapper .ex-1 { + padding-bottom: 40px; +} + +.about_main_5 .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.about_main_5 .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; +} + +.about_main_5 .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +.about_main_5 .exp_wrapper .team_img { + overflow: hidden; + margin-bottom: 25px; +} + +.about_main_5 .exp_wrapper .team_img img { + width: 100%; + border-radius: 6px; +} + +.about_main_5 .exp_wrapper .team_img #zoomIn { + transform: scale(1); + transition: .3s ease-in-out; + border-radius: 6px 6px 6px 6px; + -webkit-border-radius: 6px 6px 6px 6px; + -o-border-radius: 6px 6px 6px 6px; + -moz-border-radius: 6px 6px 6px 6px !important; +} + +.about_main_5 .exp_wrapper .team_img #zoomIn:hover { + transform: scale(1.3); + border-radius: 6px 6px 6px 6px !important; + -webkit-border-radius: 6px 6px 6px 6px !important; + -o-border-radius: 6px 6px 6px 6px !important; + -moz-border-radius: 6px 6px 6px 6px !important; +} + +.about_main_5 .exp_wrapper .team_info { + padding-top: 10px; + text-align: center; +} + +.about_main_5 .exp_wrapper .team_info h4 { + font-size: 22px; + font-weight: 600; + color: #24c5ce; +} + +.about_main_5 .exp_wrapper .team_info p { + color: #535353; + letter-spacing: 0.1rem; + padding-bottom: 15px; + line-height: 1.7rem; + font-size: 18px; +} + +.booking { + background-color: #087b81; +} + +.booking .wrapper { + padding-top: 30px; + padding-bottom: 30px; +} + +.booking .wrapper h2 { + padding-top: 10px; + font-size: 38px; + line-height: 46px; + font-weight: 600; + color: #fff; +} + +.booking .wrapper .number { + margin-top: 30px; +} + +.booking .wrapper .number p { + font-size: 34px; + color: #fff; +} + +.booking .wrapper .number p span { + color: #fff; +} + +.services1 .exp_wrapper { + margin-top: 50px; +} + +.services1 .exp_wrapper .ex-1 { + padding-bottom: 40px; +} + +.services1 .exp_wrapper .ex-1 h4 { + font-size: 16px; + color: #087b81; + position: relative; + text-transform: uppercase; + font-weight: 600; +} + +.services1 .exp_wrapper .ex-1 h4 .ex-line:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; +} + +.services1 .exp_wrapper .ex-1 .main-head h2 { + color: #24c5ce; + font-size: 40px; + margin-top: 20px; + font-weight: 600; +} + +.services1 .exp_wrapper .ex-1 p { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.services1 .exp_wrapper .ex-1 .progress_main .wrapper { + margin-bottom: 20px; +} + +.services1 .exp_wrapper .ex-1 .progress_main .wrapper .pr { + display: grid; + grid-template-columns: 1fr auto; + width: 80%; + color: #24c5ce; + font-size: 16px; + font-weight: 600; +} + +.services1 .exp_wrapper .ex-1 .progress_main .progress { + height: 7px; +} + +.services1 .exp_wrapper .ex-1 .progress_main .progress .progress-bar { + background-color: #087b81; +} + +.services1 .exp_wrapper .about-img img { + border-radius: 5px; + width: 100%; + border-radius: 10px; +} + +.tabs .nav-tabs { + justify-content: center; + margin-bottom: 30px; + border: none !important; +} + +.tabs .nav-tabs .nav-item .active { + color: #24c5ce !important; + border: none; +} + +.tabs .nav-tabs .nav-item .nav-link { + font-size: 20px; + color: #087b81; + position: relative; + border: none; + font-weight: 600; +} + +.tabs .tab-content { + padding-top: 40px; + padding-bottom: 20px; +} + +.tabs .tab-content .tab_left ul { + padding-left: 0; +} + +.tabs .tab-content .tab_left ul li { + font-size: 20px; + font-weight: 600; + color: #24c5ce; + margin-bottom: 20px; + padding: 15px 20px 0; +} + +.tabs .tab-content .tab_left ul li:hover { + box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.33); + transition: 0.3s ease; + -webkit-transition: 0.3s ease; + -moz-transition: 0.3s ease; + -ms-transition: 0.3s ease; + -o-transition: 0.3s ease; +} + +.tabs .tab-content .tab_left ul li span { + color: #087b81; + margin-right: 30px; + font-weight: 600; + font-size: 30px !important; +} + +.tabs .tab-content .tab_right { + padding: 0 20px; +} + +.tabs .tab-content .tab_right .right_1 .th { + font-weight: 600; + font-size: 28px; + padding-top: 10px; + color: #24c5ce; +} + +.tabs .tab-content .tab_right .right_2 { + margin-top: 30px; +} + +.tabs .tab-content .tab_right .right_2 img { + width: 100%; + border-radius: 8px; +} + +@media screen and (max-width: 996px) { + .tabs .tab-content .tab_right .right_2 img { + margin-bottom: 30px; + } +} + +.tabs .tab-content .tab_right .right_3 .th { + font-weight: 600; + font-size: 28px; + padding-top: 10px; + color: #24c5ce; +} + +.tabs .tab-content .tab_right .right_3 ul { + margin-bottom: 30px; +} + +.tabs .tab-content .tab_right .right_3 ul span { + color: #087b81; + font-size: 8px; + margin-right: 15px; +} + +.tabs .tab-content .tab_right .right_3 ul li { + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + padding-bottom: 15px; +} + +.address { + margin-top: 70px; + margin-bottom: 70px; +} + +.address .contact_col { + display: grid; + grid-template-columns: 1fr 1fr 1fr 1fr; + grid-gap: 20px; +} + +@media screen and (max-width: 996px) { + .address .contact_col { + grid-template-columns: 2fr 2fr; + } +} + +@media screen and (max-width: 532px) { + .address .contact_col { + grid-template-columns: 2fr; + } +} + +.address .contact_col .contact_info { + text-align: center; + padding: 38px 12px 3px 12px; + border: 1px solid; + border-radius: 8px; + border-color: #d6d6d6; +} + +.address .contact_col .contact_info .contact_icon { + max-width: 40px; + margin: auto; +} + +.address .contact_col .contact_info .contact_icon img { + width: 100%; + opacity: 0.5; +} + +.address .contact_col .contact_info .contact_icon img:hover { + opacity: 1; +} + +.address .contact_col .contact_info h4 { + font-weight: 600; + color: #24c5ce; + font-size: 20px; + margin-top: 18px; +} + +.address .contact_col .contact_info .wrapper { + margin-top: 25px; +} + +.address .contact_col .contact_info .fpm { + font-size: 18px; + padding-top: 5px; + margin-bottom: 0px; +} + +.address .contact_col .contact_info .fpm a { + color: #535353; +} + +.address .contact_col .contact_info .fpm a:hover { + text-decoration: none; + color: #24c5ce; +} + +.contact_form { + padding-top: 50px; +} + +.contact_form .form { + margin-left: 100px; + margin-right: 100px; + margin-bottom: 70px; +} + +@media screen and (max-width: 996px) { + .contact_form .form { + margin-left: 0; + margin-right: 0; + } +} + +.contact_form .form h3 { + margin-bottom: 30px; + color: #24c5ce; + text-align: left; + font-weight: 600; + font-size: 28px; + padding-top: 10px; +} + +.contact_form .form input { + font-size: 18px; + padding: 12px 20px; + line-height: 28px; + width: 100%; + border-radius: 8px; + height: 58px; + color: #24c5ce; + outline-style: none !important; + outline: none !important; + outline: transparent !important; +} + +.contact_form .form input:focus { + border-color: #24c5ce; + outline-style: none !important; + outline: none !important; + outline: transparent !important; +} + +.contact_form .form .no-outline:focus { + outline: none; +} + +.Blog { + margin-top: 40px; + margin-bottom: 40px; +} + +.Blog .b_left_single .blog_img { + position: relative; +} + +.Blog .b_left_single .blog_img img { + width: 100%; + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} + +.Blog .b_left_single .blog_img .blog_date { + position: absolute; + display: block; + border-radius: 5px; + background-color: #087b81; + color: #fff; + padding: 11px 29px; + font-size: 22px; + font-weight: 700; + left: 16px; + bottom: -15px; + width: 95px; +} + +.Blog .b_left_single .wrapper { + border: 1px solid; + border-color: #d6d6d6; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; + border-top-color: transparent; + padding-left: 20px; + padding-right: 20px; + padding-bottom: 30px; +} + +.Blog .b_left_single a { + color: #24c5ce; + text-decoration: none; +} + +.Blog .b_left_single a:hover { + color: #087b81; +} + +.Blog .b_left_single .blog_link h4 { + margin-top: 50px; + font-weight: 600; + font-size: 20px; +} + +.Blog .b_left_single .comment { + color: #797979; + margin-top: 35px; + font-size: 18px; + border: 1px solid; + border-color: transparent; + padding-bottom: 20px; + border-bottom-color: #d6d6d6; +} + +.Blog .b_left_single .comment a { + color: #797979; + text-decoration: none; + padding-right: 20px; + border: 1px solid; + border-color: transparent; + border-right-color: #797979; +} + +.Blog .b_left_single .comment a:last-child { + border: none; + padding-left: 20px; +} + +.Blog .b_left_single .comment a:hover { + color: #24c5ce; +} + +.Blog .b_left_single .comment span { + margin-right: 10px; +} + +.Blog .b_left_single .p_words { + border: 3px solid; + border-color: transparent; + border-radius: 16px; + border-left-color: #d6d6d6; + padding-left: 40px; + margin-top: 40px; + margin-bottom: 40px; + padding-top: 40px; + padding-bottom: 40px; +} + +.Blog .b_left_single .p_words p { + color: #24c5ce; + font-size: 22px; + font-weight: 600; + margin-bottom: 40px; +} + +.Blog .b_left_single .p_words span { + text-align: left; + color: #535353; + font-size: 18px; + font-weight: 600; +} + +.Blog .b_left_single .blog_details_2 a { + color: #24c5ce; + text-decoration: none; + font-size: 28px; + margin-top: 30px; +} + +.Blog .b_left_single .blog_details_2 a h4 { + font-weight: 600; +} + +.Blog .b_left_single .blog_details_2 a:hover { + color: #087b81; +} + +.Blog .b_left_single .blog_details_2 .d_img img { + border-radius: 8px; +} + +.Blog .b_left_single .blog_details_3 { + margin-top: 40px; +} + +.Blog .b_left_single .blog_social_icon { + margin-top: 30px; +} + +.Blog .b_left_single .blog_social_icon ul { + display: flex; + padding-left: 0; +} + +.Blog .b_left_single .blog_social_icon ul li { + color: #fff; + font-size: 14px; + width: 36px; + height: 36px; + border-radius: 50%; + margin-right: 20px; + text-align: center; + padding-top: 11px; +} + +.Blog .b_left_single .blog_social_icon ul li:hover { + background-color: #087b81; +} + +.Blog .b_left_single .blog_social_icon ul .fb { + background: #3b5998; + color: #fff; +} + +.Blog .b_left_single .blog_social_icon ul .fb:hover { + background: #2a4b92; +} + +.Blog .b_left_single .blog_social_icon ul .tw { + background: #1da1f2; + color: #fff; +} + +.Blog .b_left_single .blog_social_icon ul .tw:hover { + background: #0a8ee0; +} + +.Blog .b_left_single .blog_social_icon ul .in { + background: #f44336; + color: #fff; +} + +.Blog .b_left_single .blog_social_icon ul .in:hover { + background: #f12c1d; +} + +.Blog .b_left_single .blog_social_icon ul h5 { + color: #24c5ce; + font-size: 22px; + font-weight: 600; + margin-right: 20px; + padding-top: 9px; +} + +.Blog .b_left_single .next_prev { + display: flex; + justify-content: space-between; + margin-top: 40px; + padding: 30px 0; + border: 1px solid; + border-color: #d6d6d6; + border-left: none; + border-right: none; +} + +.Blog .b_left_single .next_prev .prev a { + font-size: 18px; + font-weight: 600; + text-decoration: none; + color: #24c5ce; +} + +.Blog .b_left_single .next_prev .prev a:hover { + color: #087b81; +} + +.Blog .b_left_single .comments_section { + margin-top: 90px; +} + +.Blog .b_left_single .comments_section h4 { + color: #24c5ce; + font-size: 28px; + text-align: left; + font-weight: 600; + margin-bottom: 50px; +} + +.Blog .b_left_single .comments_section .wrapper, +.Blog .b_left_single .comments_section .wrapper1, +.Blog .b_left_single .comments_section .wrapper2 { + display: flex; +} + +.Blog .b_left_single .comments_section .wrapper .c_img, +.Blog .b_left_single .comments_section .wrapper1 .c_img, +.Blog .b_left_single .comments_section .wrapper2 .c_img { + max-width: 80px; + margin-right: 20px; +} + +.Blog .b_left_single .comments_section .wrapper .c_img img, +.Blog .b_left_single .comments_section .wrapper1 .c_img img, +.Blog .b_left_single .comments_section .wrapper2 .c_img img { + width: 100%; + border-radius: 50%; +} + +.Blog .b_left_single .comments_section .wrapper .c_right .comment_info, +.Blog .b_left_single .comments_section .wrapper1 .c_right .comment_info, +.Blog .b_left_single .comments_section .wrapper2 .c_right .comment_info { + display: flex; + justify-content: space-between; +} + +.Blog .b_left_single .comments_section .wrapper .c_right .comment_info .name, +.Blog .b_left_single .comments_section .wrapper1 .c_right .comment_info .name, +.Blog .b_left_single .comments_section .wrapper2 .c_right .comment_info .name { + color: #24c5ce; + font-size: 18px; + font-weight: 600; +} + +.Blog .b_left_single .comments_section .wrapper .c_right .comment_info .date, +.Blog .b_left_single .comments_section .wrapper1 .c_right .comment_info .date, +.Blog .b_left_single .comments_section .wrapper2 .c_right .comment_info .date { + color: #535353; + font-size: 16px; + font-weight: 600; + border: 1px solid; + border-color: #d6d6d6; + padding: 4px 9px; + border-radius: 2px; +} + +.Blog .b_left_single .comments_section .wrapper .c_right .para_c, +.Blog .b_left_single .comments_section .wrapper1 .c_right .para_c, +.Blog .b_left_single .comments_section .wrapper2 .c_right .para_c { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.Blog .b_left_single .comments_section .wrapper2, +.Blog .b_left_single .comments_section .wrapper1 { + border: 1px solid; + border-top-color: #d6d6d6 !important; + border-color: transparent; + margin-top: 30px; + padding-top: 20px; +} + +.Blog .b_left_single .message_box { + margin-top: 50px; +} + +.Blog .b_left_single .message_box .form h3 { + margin-bottom: 30px; + color: #24c5ce; + text-align: left; + font-weight: 600; + font-size: 28px; + padding-top: 10px; +} + +.Blog .b_left_single .message_box .form input { + font-size: 18px; + padding: 12px 20px; + line-height: 28px; + width: 100%; + border-radius: 8px; + height: 58px; + color: #24c5ce; + outline-style: none !important; + outline: none !important; + outline: transparent !important; +} + +.Blog .b_left_single .message_box .form input:focus { + border-color: #24c5ce; + outline-style: none !important; + outline: none !important; + outline: transparent !important; +} + +.Blog .b_left_single .message_box .form .no-outline:focus { + outline: none; +} + +.Blog .b_left_single .message_box .form .form-group { + margin-top: 20px; +} + + +.Blog_detail { + margin-top: 40px; + margin-bottom: 40px; +} + +@media screen and (max-width: 996px) { + .Blog_detail .blog_left { + margin-bottom: 90px; + } +} + +.Blog_detail .b_left_single .blog_img { + position: relative; +} + +.b_detail{ +margin-top: 40px; +} +.Blog_detail .b_left_single .blog_img img { + width: 100%; +} + +.Blog_detail .b_left_single .blog_img .blog_date { + position: absolute; + display: block; + border-radius: 5px; + background-color: #087b81; + color: #fff; + padding: 11px 29px; + font-size: 22px; + font-weight: 700; + left: 16px; + bottom: -15px; + width: 95px; +} + +.Blog_detail .b_left_single .comment { + color: #797979; + margin-top: 40px; + font-size: 18px; + border: 1px solid; + border-color: transparent; + padding-bottom: 20px; + border-bottom-color: #d6d6d6; +} + +.Blog_detail .b_left_single .comment a { + color: #797979; + text-decoration: none; + padding-right: 20px; + border: 1px solid; + border-color: transparent; + border-right-color: #797979; +} + +.Blog_detail .b_left_single .comment a:last-child { + border: none; + padding-left: 20px; +} + +.Blog_detail .b_left_single .comment a:hover { + color: #24c5ce; +} + +.Blog_detail .b_left_single .comment span { + margin-right: 10px; +} + +.Blog_detail .b_left_single .p_words { + border: 3px solid; + border-color: transparent; + border-radius: 16px; + border-left-color: #d6d6d6; + padding-left: 40px; + margin-top: 40px; + margin-bottom: 40px; + padding-top: 40px; + padding-bottom: 40px; +} + +.Blog_detail .b_left_single .p_words p { + color: #24c5ce; + font-size: 22px; + font-weight: 600; + margin-bottom: 40px; +} + +.Blog_detail .b_left_single .p_words span { + text-align: left; + color: #535353; + font-size: 18px; + font-weight: 600; +} + +.Blog_detail .b_left_single .blog_details_2 a { + color: #24c5ce; + text-decoration: none; + font-size: 28px; + margin-top: 30px; +} + +.Blog_detail .b_left_single .blog_details_2 a h4 { + font-weight: 600; +} + +.Blog_detail .b_left_single .blog_details_2 a:hover { + color: #087b81; +} + +.Blog_detail .b_left_single .blog_details_2 .d_img img { + border-radius: 8px; +} + +.Blog_detail .b_left_single .blog_details_3 { + margin-top: 40px; +} + +.Blog_detail .b_left_single .blog_social_icon { + margin-top: 30px; +} + +.Blog_detail .b_left_single .blog_social_icon ul { + display: flex; + padding-left: 0; +} + +.Blog_detail .b_left_single .blog_social_icon ul li { + color: #fff; + font-size: 14px; + width: 36px; + height: 36px; + border-radius: 50%; + margin-right: 20px; + text-align: center; + padding-top: 11px; +} + +.Blog_detail .b_left_single .blog_social_icon ul li:hover { + background-color: #087b81; +} + +.Blog_detail .b_left_single .blog_social_icon ul .fb { + background: #3b5998; + color: #fff; +} + +.Blog_detail .b_left_single .blog_social_icon ul .fb:hover { + background: #2a4b92; +} + +.Blog_detail .b_left_single .blog_social_icon ul .tw { + background: #1da1f2; + color: #fff; +} + +.Blog_detail .b_left_single .blog_social_icon ul .tw:hover { + background: #0a8ee0; +} + +.Blog_detail .b_left_single .blog_social_icon ul .in { + background: #f44336; + color: #fff; +} + +.Blog_detail .b_left_single .blog_social_icon ul .in:hover { + background: #f12c1d; +} + +.Blog_detail .b_left_single .blog_social_icon ul h5 { + color: #24c5ce; + font-size: 22px; + font-weight: 600; + margin-right: 20px; + padding-top: 9px; +} + +.Blog_detail .b_left_single .next_prev { + display: flex; + justify-content: space-between; + margin-top: 40px; + padding: 30px 0; + border: 1px solid; + border-color: #d6d6d6; + border-left: none; + border-right: none; +} + +.Blog_detail .b_left_single .next_prev .prev a { + font-size: 18px; + font-weight: 600; + text-decoration: none; + color: #24c5ce; +} + +.Blog_detail .b_left_single .next_prev .prev a:hover { + color: #087b81; +} + +.Blog_detail .b_left_single .comments_section { + margin-top: 90px; +} + +.Blog_detail .b_left_single .comments_section h4 { + color: #24c5ce; + font-size: 28px; + text-align: left; + font-weight: 600; + margin-bottom: 50px; +} + +.Blog_detail .b_left_single .comments_section .wrapper, +.Blog_detail .b_left_single .comments_section .wrapper1, +.Blog_detail .b_left_single .comments_section .wrapper2 { + display: flex; +} + +.Blog_detail .b_left_single .comments_section .wrapper .c_img, +.Blog_detail .b_left_single .comments_section .wrapper1 .c_img, +.Blog_detail .b_left_single .comments_section .wrapper2 .c_img { + max-width: 80px; + margin-right: 20px; +} + +.Blog_detail .b_left_single .comments_section .wrapper .c_img img, +.Blog_detail .b_left_single .comments_section .wrapper1 .c_img img, +.Blog_detail .b_left_single .comments_section .wrapper2 .c_img img { + width: 100%; + border-radius: 50%; +} + +.Blog_detail .b_left_single .comments_section .wrapper .c_right .comment_info, +.Blog_detail .b_left_single .comments_section .wrapper1 .c_right .comment_info, +.Blog_detail .b_left_single .comments_section .wrapper2 .c_right .comment_info { + display: flex; + justify-content: space-between; +} + +.Blog_detail .b_left_single .comments_section .wrapper .c_right .comment_info .name, +.Blog_detail .b_left_single .comments_section .wrapper1 .c_right .comment_info .name, +.Blog_detail .b_left_single .comments_section .wrapper2 .c_right .comment_info .name { + color: #24c5ce; + font-size: 18px; + font-weight: 600; +} + +.Blog_detail .b_left_single .comments_section .wrapper .c_right .comment_info .date, +.Blog_detail .b_left_single .comments_section .wrapper1 .c_right .comment_info .date, +.Blog_detail .b_left_single .comments_section .wrapper2 .c_right .comment_info .date { + color: #535353; + font-size: 16px; + font-weight: 600; + border: 1px solid; + border-color: #d6d6d6; + padding: 4px 9px; + border-radius: 2px; +} + +.Blog_detail .b_left_single .comments_section .wrapper .c_right .para_c, +.Blog_detail .b_left_single .comments_section .wrapper1 .c_right .para_c, +.Blog_detail .b_left_single .comments_section .wrapper2 .c_right .para_c { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} + +.Blog_detail .b_left_single .comments_section .wrapper2, +.Blog_detail .b_left_single .comments_section .wrapper1 { + border: 1px solid; + border-top-color: #d6d6d6 !important; + border-color: transparent; + margin-top: 30px; + padding-top: 20px; +} + +.Blog_detail .b_left_single .message_box { + margin-top: 50px; +} + +.Blog_detail .b_left_single .message_box .form h3 { + margin-bottom: 30px; + color: #24c5ce; + text-align: left; + font-weight: 600; + font-size: 28px; + padding-top: 10px; +} + +.Blog_detail .b_left_single .message_box .form input { + font-size: 18px; + padding: 12px 20px; + line-height: 28px; + width: 100%; + border-radius: 8px; + height: 58px; + color: #24c5ce; + outline-style: none !important; + outline: none !important; + outline: transparent !important; +} + +.Blog_detail .b_left_single .message_box .form input:focus { + border-color: #24c5ce; + outline-style: none !important; + outline: none !important; + outline: transparent !important; +} + +.Blog_detail .b_left_single .message_box .form .no-outline:focus { + outline: none; +} + +.Blog_detail .b_left_single .message_box .form .form-group { + margin-top: 20px; +} + +* { + list-style-type: none; + font-family: "Kumbh Sans", sans-serif; +} + +*:focus, *:active { + outline: none !important; +} + +img { + width: 100%; +} + +.borderd_header { + font-size: 18px; + position: relative; +} + +.borderd_header::after { + position: absolute; + left: 0; + bottom: -4px; + height: 2px; + width: 70px; + background: #db4242; + content: ""; + display: block; +} + +.para { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; +} +html { + scroll-behavior: smooth; +} + + +.banner_details{ + padding: 135px 0; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; + position: relative; +} + +.blockquote{ + color: #24c5ce !important; + font-size: 22px; + font-weight: 600; + margin-bottom: 40px; +} + +.o_wsale_filmstip_wrapper .btn-light { + background-color: #0aa1aa; + color: white ; +} +.products_header .btn-light { + background-color: #0aa1aa; + color: white; +} +.badge, .o_filter_tag { + background-color: #0aa1aa !important; + border-color: #0aa1aa !important; + color: white; +} + +.bg-primary { + background-color: #0aa1aa !important; + border-color: #0aa1aa !important; +} + +.bg-primary a { + color: white !important; +} + +.one_kanban a, .o_cta_navigation_container a, #address_on_payment a, #cart_products a, .oe_website_sale a { + color: #0aa1aa; +} + +.products_header .pagination{ + margin-left: 13px !important; +} + +.o_wsale_product_grid_wrapper .o_wsale_product_btn button{ + color: #FFFFFF !important; + background-color: #0aa1aa !important; +} + +.products_header .oe_search_button{ + color: #FFFFFF !important; + background-color: #0aa1aa !important; +} + +.o_wsale_product_page .oe_website_sale .oe_search_button{ + color: #FFFFFF !important; + background-color: #0aa1aa !important; +} +.o_wsale_product_page .o_pricelist_dropdown a{ + color: #FFFFFF !important; + background-color: #0aa1aa !important; +} + +.o_wsale_product_page #o_wsale_cta_wrapper .js_add_cart_json { + color: #FFFFFF !important; + background-color: #0aa1aa !important; +} + +.o_wsale_product_page .o_wsale_product_attribute .rounded-pill { + color: #FFFFFF !important; + background-color: #0aa1aa !important; +} +.o_wsale_product_page .o_wsale_product_attribute .rounded-pill .sign_badge_price_extra { + color: #FFFFFF !important; + background-color: #0aa1aa !important; +} +.o_wsale_product_page .o_wsale_product_attribute .rounded-pill .variant_price_extra { + color: #FFFFFF !important; + background-color: #0aa1aa !important; +} + +@media (max-width: 575.98px) { +.o_wsale_products_page .products_header .o_wsale_apply_layout{ + margin-top: 90px; + margin-left: -196px !important; +} + +.o_wsale_products_page .products_header .btn-splash{ + margin-top: 90px; + margin-left: 5px !important; +} +} + +@media (max-width: 767px) { + td.td-qty .css_quantity .btn{ + display: block !important; + } +} + +.commercial_service_section{ + display: flex; + align-items: flex-start; + justify-content: center; + background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%), url(./../images/banner/banner4.jpg); + background-size: cover; + width: 100%; + background-repeat: no-repeat; +} + +@media (max-width: 767px) { + .o_cart_product .flex-grow-1 .js_delete_product{ + background-color: white; + color: black; + } +} + +@media (max-width: 700px){ + .modal-content .oe_advanced_configurator_modal{ + overflow-x: scroll; + } +} + +div.o_legacy_dialog{ + margin-top: 4%; + height: 94%; +} + +div#basicExampleNav div{ + margin-left:1%; +} + +div#basicExampleNav .oi-search{ + margin-left:4%; +} + +@media (max-width: 700px){ + div#basicExampleNav div{ + margin-top:3%; + } + div#basicExampleNav .oi-search{ + margin-top:5%; + } + div#basicExampleNav .navbar-expand{ + width:90%; + } +} +.o_wsale_product_btn .o_add_wishlist { + padding: 0.375rem 1rem !important; +} + +.page-link.active, .active > .page-link, .form-check-input:checked { + background-color: #0aa1aa; + border-color: #0aa1aa; +} +.text-primary { + color: #0aa1aa !important; +} +.css_attribute_color.active { + border-color: #0aa1aa !important; +} +.btn { + color: #0aa1aa; +} + +.carousel-indicators .active { + background-color: #0aa1aa !important; +} + +.o_wsale_product_btn .btn-light:hover { + background-color: #076469 !important; +} + +.nav-wrapper .navbar .nav-item .nav-link.active { + color: #0aa1aa !important; +} +.dropdown-item.active, .dropdown-item:active { + background-color: #0aa1aa !important; + color: white !important; +} +.dropdown-item:active i { + color: white !important; +} +#o_portal_navbar_content .btn-light { + background-color: #0aa1aa; + color: white !important; +} + +#o_portal_navbar_content .btn-light:hover { + background-color: #076469 !important; +} +.o_portal_wrap a{ + color: #0aa1aa; +} \ No newline at end of file diff --git a/theme_splash/static/src/fonts/ElegantIcons.eot b/theme_splash/static/src/fonts/ElegantIcons.eot new file mode 100644 index 000000000..2fe8892f7 Binary files /dev/null and b/theme_splash/static/src/fonts/ElegantIcons.eot differ diff --git a/theme_splash/static/src/fonts/ElegantIcons.svg b/theme_splash/static/src/fonts/ElegantIcons.svg new file mode 100644 index 000000000..93538d7e2 --- /dev/null +++ b/theme_splash/static/src/fonts/ElegantIcons.svg @@ -0,0 +1,1832 @@ + + + + +This is a custom SVG font generated by IcoMoon. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_splash/static/src/fonts/ElegantIcons.ttf b/theme_splash/static/src/fonts/ElegantIcons.ttf new file mode 100644 index 000000000..12ff68002 Binary files /dev/null and b/theme_splash/static/src/fonts/ElegantIcons.ttf differ diff --git a/theme_splash/static/src/fonts/ElegantIcons.woff b/theme_splash/static/src/fonts/ElegantIcons.woff new file mode 100644 index 000000000..393305253 Binary files /dev/null and b/theme_splash/static/src/fonts/ElegantIcons.woff differ diff --git a/theme_splash/static/src/fonts/FontAwesome.otf b/theme_splash/static/src/fonts/FontAwesome.otf new file mode 100644 index 000000000..401ec0f36 Binary files /dev/null and b/theme_splash/static/src/fonts/FontAwesome.otf differ diff --git a/theme_splash/static/src/fonts/fontawesome-webfont.eot b/theme_splash/static/src/fonts/fontawesome-webfont.eot new file mode 100644 index 000000000..e9f60ca95 Binary files /dev/null and b/theme_splash/static/src/fonts/fontawesome-webfont.eot differ diff --git a/theme_splash/static/src/fonts/fontawesome-webfont.svg b/theme_splash/static/src/fonts/fontawesome-webfont.svg new file mode 100644 index 000000000..855c845e5 --- /dev/null +++ b/theme_splash/static/src/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_splash/static/src/fonts/fontawesome-webfont.ttf b/theme_splash/static/src/fonts/fontawesome-webfont.ttf new file mode 100644 index 000000000..35acda2fa Binary files /dev/null and b/theme_splash/static/src/fonts/fontawesome-webfont.ttf differ diff --git a/theme_splash/static/src/fonts/fontawesome-webfont.woff b/theme_splash/static/src/fonts/fontawesome-webfont.woff new file mode 100644 index 000000000..400014a4b Binary files /dev/null and b/theme_splash/static/src/fonts/fontawesome-webfont.woff differ diff --git a/theme_splash/static/src/fonts/fontawesome-webfont.woff2 b/theme_splash/static/src/fonts/fontawesome-webfont.woff2 new file mode 100644 index 000000000..4d13fc604 Binary files /dev/null and b/theme_splash/static/src/fonts/fontawesome-webfont.woff2 differ diff --git a/theme_splash/static/src/images/Services/services.jpg b/theme_splash/static/src/images/Services/services.jpg new file mode 100644 index 000000000..d410ec620 Binary files /dev/null and b/theme_splash/static/src/images/Services/services.jpg differ diff --git a/theme_splash/static/src/images/Team/team1.jpg b/theme_splash/static/src/images/Team/team1.jpg new file mode 100644 index 000000000..7b4d23835 Binary files /dev/null and b/theme_splash/static/src/images/Team/team1.jpg differ diff --git a/theme_splash/static/src/images/Team/team2.jpg b/theme_splash/static/src/images/Team/team2.jpg new file mode 100644 index 000000000..d055165bd Binary files /dev/null and b/theme_splash/static/src/images/Team/team2.jpg differ diff --git a/theme_splash/static/src/images/Team/team3.jpg b/theme_splash/static/src/images/Team/team3.jpg new file mode 100644 index 000000000..12da0fc57 Binary files /dev/null and b/theme_splash/static/src/images/Team/team3.jpg differ diff --git a/theme_splash/static/src/images/about3/image1.jpg b/theme_splash/static/src/images/about3/image1.jpg new file mode 100644 index 000000000..4e1cd7feb Binary files /dev/null and b/theme_splash/static/src/images/about3/image1.jpg differ diff --git a/theme_splash/static/src/images/about_main/about2.jpg b/theme_splash/static/src/images/about_main/about2.jpg new file mode 100644 index 000000000..e0b0a925e Binary files /dev/null and b/theme_splash/static/src/images/about_main/about2.jpg differ diff --git a/theme_splash/static/src/images/about_main/about3.jpg b/theme_splash/static/src/images/about_main/about3.jpg new file mode 100644 index 000000000..15a27777c Binary files /dev/null and b/theme_splash/static/src/images/about_main/about3.jpg differ diff --git a/theme_splash/static/src/images/about_main/image3.jpg b/theme_splash/static/src/images/about_main/image3.jpg new file mode 100644 index 000000000..78f3c182b Binary files /dev/null and b/theme_splash/static/src/images/about_main/image3.jpg differ diff --git a/theme_splash/static/src/images/banner/banner1.jpg b/theme_splash/static/src/images/banner/banner1.jpg new file mode 100644 index 000000000..95bb8b718 Binary files /dev/null and b/theme_splash/static/src/images/banner/banner1.jpg differ diff --git a/theme_splash/static/src/images/banner/banner2.jpg b/theme_splash/static/src/images/banner/banner2.jpg new file mode 100644 index 000000000..f5646b757 Binary files /dev/null and b/theme_splash/static/src/images/banner/banner2.jpg differ diff --git a/theme_splash/static/src/images/banner/banner3.jpg b/theme_splash/static/src/images/banner/banner3.jpg new file mode 100644 index 000000000..f7e6379fd Binary files /dev/null and b/theme_splash/static/src/images/banner/banner3.jpg differ diff --git a/theme_splash/static/src/images/banner/banner4.jpg b/theme_splash/static/src/images/banner/banner4.jpg new file mode 100644 index 000000000..b58bcaf19 Binary files /dev/null and b/theme_splash/static/src/images/banner/banner4.jpg differ diff --git a/theme_splash/static/src/images/blog-page/banner1.jpg b/theme_splash/static/src/images/blog-page/banner1.jpg new file mode 100644 index 000000000..3f67f3386 Binary files /dev/null and b/theme_splash/static/src/images/blog-page/banner1.jpg differ diff --git a/theme_splash/static/src/images/blog-page/banner2.jpg b/theme_splash/static/src/images/blog-page/banner2.jpg new file mode 100644 index 000000000..fc4301cc5 Binary files /dev/null and b/theme_splash/static/src/images/blog-page/banner2.jpg differ diff --git a/theme_splash/static/src/images/blog-page/banner3.jpg b/theme_splash/static/src/images/blog-page/banner3.jpg new file mode 100644 index 000000000..8b6caeb14 Binary files /dev/null and b/theme_splash/static/src/images/blog-page/banner3.jpg differ diff --git a/theme_splash/static/src/images/blog-page/banner4.jpg b/theme_splash/static/src/images/blog-page/banner4.jpg new file mode 100644 index 000000000..34298e234 Binary files /dev/null and b/theme_splash/static/src/images/blog-page/banner4.jpg differ diff --git a/theme_splash/static/src/images/blog/blog1.jpg b/theme_splash/static/src/images/blog/blog1.jpg new file mode 100644 index 000000000..9c12868bf Binary files /dev/null and b/theme_splash/static/src/images/blog/blog1.jpg differ diff --git a/theme_splash/static/src/images/blog/blog2.jpg b/theme_splash/static/src/images/blog/blog2.jpg new file mode 100644 index 000000000..ec75f9292 Binary files /dev/null and b/theme_splash/static/src/images/blog/blog2.jpg differ diff --git a/theme_splash/static/src/images/blog/blog3.jpg b/theme_splash/static/src/images/blog/blog3.jpg new file mode 100644 index 000000000..09985a702 Binary files /dev/null and b/theme_splash/static/src/images/blog/blog3.jpg differ diff --git a/theme_splash/static/src/images/contact/envelope.png b/theme_splash/static/src/images/contact/envelope.png new file mode 100644 index 000000000..767d97d68 Binary files /dev/null and b/theme_splash/static/src/images/contact/envelope.png differ diff --git a/theme_splash/static/src/images/contact/office.png b/theme_splash/static/src/images/contact/office.png new file mode 100644 index 000000000..f47b28e7f Binary files /dev/null and b/theme_splash/static/src/images/contact/office.png differ diff --git a/theme_splash/static/src/images/contact/support.png b/theme_splash/static/src/images/contact/support.png new file mode 100644 index 000000000..2716fb198 Binary files /dev/null and b/theme_splash/static/src/images/contact/support.png differ diff --git a/theme_splash/static/src/images/contact/time.png b/theme_splash/static/src/images/contact/time.png new file mode 100644 index 000000000..cafe765e1 Binary files /dev/null and b/theme_splash/static/src/images/contact/time.png differ diff --git a/theme_splash/static/src/images/exp/about.jpg b/theme_splash/static/src/images/exp/about.jpg new file mode 100644 index 000000000..b48dbe879 Binary files /dev/null and b/theme_splash/static/src/images/exp/about.jpg differ diff --git a/theme_splash/static/src/images/exp/image2.jpg b/theme_splash/static/src/images/exp/image2.jpg new file mode 100644 index 000000000..0b46afc33 Binary files /dev/null and b/theme_splash/static/src/images/exp/image2.jpg differ diff --git a/theme_splash/static/src/images/partner/logo1.jpg b/theme_splash/static/src/images/partner/logo1.jpg new file mode 100644 index 000000000..6177c1f6d Binary files /dev/null and b/theme_splash/static/src/images/partner/logo1.jpg differ diff --git a/theme_splash/static/src/images/partner/logo2.jpg b/theme_splash/static/src/images/partner/logo2.jpg new file mode 100644 index 000000000..5d70df2c2 Binary files /dev/null and b/theme_splash/static/src/images/partner/logo2.jpg differ diff --git a/theme_splash/static/src/images/partner/logo3.jpg b/theme_splash/static/src/images/partner/logo3.jpg new file mode 100644 index 000000000..dff84972b Binary files /dev/null and b/theme_splash/static/src/images/partner/logo3.jpg differ diff --git a/theme_splash/static/src/images/partner/logo4.jpg b/theme_splash/static/src/images/partner/logo4.jpg new file mode 100644 index 000000000..94884be07 Binary files /dev/null and b/theme_splash/static/src/images/partner/logo4.jpg differ diff --git a/theme_splash/static/src/images/snippets/about-feature-block-1.png b/theme_splash/static/src/images/snippets/about-feature-block-1.png new file mode 100644 index 000000000..3b93c98ac Binary files /dev/null and b/theme_splash/static/src/images/snippets/about-feature-block-1.png differ diff --git a/theme_splash/static/src/images/snippets/banner.png b/theme_splash/static/src/images/snippets/banner.png new file mode 100644 index 000000000..f27bed344 Binary files /dev/null and b/theme_splash/static/src/images/snippets/banner.png differ diff --git a/theme_splash/static/src/images/snippets/blog-block.png b/theme_splash/static/src/images/snippets/blog-block.png new file mode 100644 index 000000000..56ba3dbbe Binary files /dev/null and b/theme_splash/static/src/images/snippets/blog-block.png differ diff --git a/theme_splash/static/src/images/snippets/blog-view-block.png b/theme_splash/static/src/images/snippets/blog-view-block.png new file mode 100644 index 000000000..f20b1737c Binary files /dev/null and b/theme_splash/static/src/images/snippets/blog-view-block.png differ diff --git a/theme_splash/static/src/images/snippets/blogs-block.png b/theme_splash/static/src/images/snippets/blogs-block.png new file mode 100644 index 000000000..1eea61495 Binary files /dev/null and b/theme_splash/static/src/images/snippets/blogs-block.png differ diff --git a/theme_splash/static/src/images/snippets/contact-details.png b/theme_splash/static/src/images/snippets/contact-details.png new file mode 100644 index 000000000..142cc76f0 Binary files /dev/null and b/theme_splash/static/src/images/snippets/contact-details.png differ diff --git a/theme_splash/static/src/images/snippets/experience-block.png b/theme_splash/static/src/images/snippets/experience-block.png new file mode 100644 index 000000000..dff6020cf Binary files /dev/null and b/theme_splash/static/src/images/snippets/experience-block.png differ diff --git a/theme_splash/static/src/images/snippets/feature-block-1.png b/theme_splash/static/src/images/snippets/feature-block-1.png new file mode 100644 index 000000000..71036e125 Binary files /dev/null and b/theme_splash/static/src/images/snippets/feature-block-1.png differ diff --git a/theme_splash/static/src/images/snippets/feature-block-2.png b/theme_splash/static/src/images/snippets/feature-block-2.png new file mode 100644 index 000000000..00d37547c Binary files /dev/null and b/theme_splash/static/src/images/snippets/feature-block-2.png differ diff --git a/theme_splash/static/src/images/snippets/feature-block-3.png b/theme_splash/static/src/images/snippets/feature-block-3.png new file mode 100644 index 000000000..1a743b463 Binary files /dev/null and b/theme_splash/static/src/images/snippets/feature-block-3.png differ diff --git a/theme_splash/static/src/images/snippets/feature-two-image-block.png b/theme_splash/static/src/images/snippets/feature-two-image-block.png new file mode 100644 index 000000000..80a2e775a Binary files /dev/null and b/theme_splash/static/src/images/snippets/feature-two-image-block.png differ diff --git a/theme_splash/static/src/images/snippets/features-block.png b/theme_splash/static/src/images/snippets/features-block.png new file mode 100644 index 000000000..ab7c6a25c Binary files /dev/null and b/theme_splash/static/src/images/snippets/features-block.png differ diff --git a/theme_splash/static/src/images/snippets/footer-block.png b/theme_splash/static/src/images/snippets/footer-block.png new file mode 100644 index 000000000..39ffdaf5e Binary files /dev/null and b/theme_splash/static/src/images/snippets/footer-block.png differ diff --git a/theme_splash/static/src/images/snippets/highlight-banner-block.png b/theme_splash/static/src/images/snippets/highlight-banner-block.png new file mode 100644 index 000000000..7d471fc77 Binary files /dev/null and b/theme_splash/static/src/images/snippets/highlight-banner-block.png differ diff --git a/theme_splash/static/src/images/snippets/professional-block.png b/theme_splash/static/src/images/snippets/professional-block.png new file mode 100644 index 000000000..5f62bc3cf Binary files /dev/null and b/theme_splash/static/src/images/snippets/professional-block.png differ diff --git a/theme_splash/static/src/images/snippets/services-block.png b/theme_splash/static/src/images/snippets/services-block.png new file mode 100644 index 000000000..f1918d367 Binary files /dev/null and b/theme_splash/static/src/images/snippets/services-block.png differ diff --git a/theme_splash/static/src/images/snippets/services-tab-block.png b/theme_splash/static/src/images/snippets/services-tab-block.png new file mode 100644 index 000000000..80b72f1c4 Binary files /dev/null and b/theme_splash/static/src/images/snippets/services-tab-block.png differ diff --git a/theme_splash/static/src/images/snippets/services.png b/theme_splash/static/src/images/snippets/services.png new file mode 100644 index 000000000..c8f7f98eb Binary files /dev/null and b/theme_splash/static/src/images/snippets/services.png differ diff --git a/theme_splash/static/src/images/snippets/suppliers-block.png b/theme_splash/static/src/images/snippets/suppliers-block.png new file mode 100644 index 000000000..a7df181f2 Binary files /dev/null and b/theme_splash/static/src/images/snippets/suppliers-block.png differ diff --git a/theme_splash/static/src/images/snippets/testimonials.png b/theme_splash/static/src/images/snippets/testimonials.png new file mode 100644 index 000000000..c3044cc3d Binary files /dev/null and b/theme_splash/static/src/images/snippets/testimonials.png differ diff --git a/theme_splash/static/src/images/tab/commercialsan.jpg b/theme_splash/static/src/images/tab/commercialsan.jpg new file mode 100644 index 000000000..5e0825b4b Binary files /dev/null and b/theme_splash/static/src/images/tab/commercialsan.jpg differ diff --git a/theme_splash/static/src/images/tab/residentsan.jpg b/theme_splash/static/src/images/tab/residentsan.jpg new file mode 100644 index 000000000..07b2777d8 Binary files /dev/null and b/theme_splash/static/src/images/tab/residentsan.jpg differ diff --git a/theme_splash/static/src/images/testimonial/about.jpg b/theme_splash/static/src/images/testimonial/about.jpg new file mode 100644 index 000000000..13b01ba1a Binary files /dev/null and b/theme_splash/static/src/images/testimonial/about.jpg differ diff --git a/theme_splash/static/src/images/testimonial/testimonials.jpg b/theme_splash/static/src/images/testimonial/testimonials.jpg new file mode 100644 index 000000000..86dc35e3a Binary files /dev/null and b/theme_splash/static/src/images/testimonial/testimonials.jpg differ diff --git a/theme_splash/static/src/js/custom.js b/theme_splash/static/src/js/custom.js new file mode 100644 index 000000000..d85fa2b03 --- /dev/null +++ b/theme_splash/static/src/js/custom.js @@ -0,0 +1,39 @@ +/** @odoo-module */ +import PublicWidget from "@web/legacy/js/public/public_widget" +import { _t } from "@web/core/l10n/translation"; +import { rpc } from "@web/core/network/rpc"; + +PublicWidget.registry.customSplash = PublicWidget.Widget.extend({ + selector: "#wrapwrap", + events: { + 'click .btn-sub': 'onClickSubscribe', + }, + async onClickSubscribe(ev) { + let $button = $(ev.currentTarget) + let $input = $(ev.currentTarget.parentElement).find('input') + let $warning = $(ev.currentTarget.parentElement).find('.warning') + if (this.emailCheck($input.val())) { + if ($button.text() === "Subscribe") { + const data = await rpc('/subscribe_newsletter', { + email: $input.val() + }) + if (data) { + $warning.hide() + $input.css('pointer-events', 'none') + $button.css('background-color', 'green') + $button.text("Thanks") + } else { + $warning.text("Already subscribed to the newsletter.") + $warning.show() + } + } + } else { + $warning.text("Enter a valid email.") + $warning.show() + } + }, + emailCheck(str) { + const specialChars = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; + return specialChars.test(str) + } +}) \ No newline at end of file diff --git a/theme_splash/views/blog_templates.xml b/theme_splash/views/blog_templates.xml new file mode 100644 index 000000000..c94617d33 --- /dev/null +++ b/theme_splash/views/blog_templates.xml @@ -0,0 +1,320 @@ + + + + + + \ No newline at end of file diff --git a/theme_splash/views/contact_us_templates.xml b/theme_splash/views/contact_us_templates.xml new file mode 100644 index 000000000..52a11cb66 --- /dev/null +++ b/theme_splash/views/contact_us_templates.xml @@ -0,0 +1,195 @@ + + +