diff --git a/theme_splash/README.rst b/theme_splash/README.rst new file mode 100644 index 000000000..c0d1a4b18 --- /dev/null +++ b/theme_splash/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Theme Splash +============ +* Design Web Pages with theme Splash + +Installation +============ + - www.odoo.com/documentation/16.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html) + +Company +------- +* 'Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: +Rahul Rajeev @ cybrosys + +Contacts +-------- +* Mail Contact : odoo@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 +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ + diff --git a/theme_splash/__init__.py b/theme_splash/__init__.py new file mode 100644 index 000000000..5304768ac --- /dev/null +++ b/theme_splash/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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, models diff --git a/theme_splash/__manifest__.py b/theme_splash/__manifest__.py new file mode 100644 index 000000000..d4d3aa870 --- /dev/null +++ b/theme_splash/__manifest__.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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', + '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.', + 'summary': 'Design Web Pages with Theme Splash', + 'category': 'Theme/Corporate', + 'version': '16.0.1.0.0', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'website', 'website_blog', 'website_sale_wishlist'], + 'data': [ + 'views/contact_us.xml', + 'views/views.xml', + 'views/shop.xml', + 'views/blog.xml', + 'views/blog_details.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': [ + '/theme_splash/static/src/css/website_customer_contact.css', + '/theme_splash/static/src/css/font-awesome.min.css', + ] + }, + 'images': [ + 'static/description/banner.png', + 'static/description/theme_screenshot.png' + ], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/theme_splash/controllers/__init__.py b/theme_splash/controllers/__init__.py new file mode 100644 index 000000000..438486ad7 --- /dev/null +++ b/theme_splash/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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 main diff --git a/theme_splash/controllers/main.py b/theme_splash/controllers/main.py new file mode 100644 index 000000000..0444ff678 --- /dev/null +++ b/theme_splash/controllers/main.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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(WebsiteBlogInherit, self).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(WebsiteBlogInherit, self).blog_post(blog, blog_post, + tag_id=tag_id, page=1, + enable_editor=None, + **post) + res.qcontext.update({'posts_recent': posts}) + return res diff --git a/theme_splash/doc/RELEASE_NOTES.md b/theme_splash/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..93c368b39 --- /dev/null +++ b/theme_splash/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 27.02.2023 +#### Version 16.0.1.0.0 +#### ADD +- Initial commit for Theme Splash \ No newline at end of file diff --git a/theme_splash/models/__init__.py b/theme_splash/models/__init__.py new file mode 100644 index 000000000..aa7280113 --- /dev/null +++ b/theme_splash/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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/models/theme_splash.py b/theme_splash/models/theme_splash.py new file mode 100644 index 000000000..337af1134 --- /dev/null +++ b/theme_splash/models/theme_splash.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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 models + + +class ThemeSplash(models.AbstractModel): + """class for enabling and disabling views""" + _inherit = 'theme.utils' + + def _theme_splash_post_copy(self, mod): + """function for enabling and disabling views""" + self.enable_view('website_blog.opt_blog_sidebar_show') + self.enable_view('website_blog.opt_blog_list_view') + self.enable_view('website_blog.opt_blog_post_sidebar') + self.disable_view('website_blog.opt_posts_loop_show_author') diff --git a/theme_splash/static/description/banner.png b/theme_splash/static/description/banner.png new file mode 100644 index 000000000..367049950 Binary files /dev/null and b/theme_splash/static/description/banner.png differ diff --git a/theme_splash/static/description/icon.png b/theme_splash/static/description/icon.png new file mode 100644 index 000000000..6d5714020 Binary files /dev/null and b/theme_splash/static/description/icon.png differ diff --git a/theme_splash/static/description/images/1.jpg b/theme_splash/static/description/images/1.jpg new file mode 100644 index 000000000..452743656 Binary files /dev/null and b/theme_splash/static/description/images/1.jpg differ diff --git a/theme_splash/static/description/images/2.jpg b/theme_splash/static/description/images/2.jpg new file mode 100644 index 000000000..790f2afb2 Binary files /dev/null and b/theme_splash/static/description/images/2.jpg differ diff --git a/theme_splash/static/description/images/3.jpg b/theme_splash/static/description/images/3.jpg new file mode 100644 index 000000000..89decbcd0 Binary files /dev/null and b/theme_splash/static/description/images/3.jpg differ diff --git a/theme_splash/static/description/images/4.jpg b/theme_splash/static/description/images/4.jpg new file mode 100644 index 000000000..b4fa8382a Binary files /dev/null and b/theme_splash/static/description/images/4.jpg differ diff --git a/theme_splash/static/description/images/5.jpg b/theme_splash/static/description/images/5.jpg new file mode 100644 index 000000000..2d968a2d1 Binary files /dev/null and b/theme_splash/static/description/images/5.jpg differ diff --git a/theme_splash/static/description/images/6.jpg b/theme_splash/static/description/images/6.jpg new file mode 100644 index 000000000..8136ace13 Binary files /dev/null and b/theme_splash/static/description/images/6.jpg differ diff --git a/theme_splash/static/description/images/Cybrosys.png b/theme_splash/static/description/images/Cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/theme_splash/static/description/images/Cybrosys.png differ diff --git a/theme_splash/static/description/images/cybro-logo-oca-no-text.png b/theme_splash/static/description/images/cybro-logo-oca-no-text.png new file mode 100644 index 000000000..180d15dd6 Binary files /dev/null and b/theme_splash/static/description/images/cybro-logo-oca-no-text.png differ diff --git a/theme_splash/static/description/images/cybro-logo-oca.png b/theme_splash/static/description/images/cybro-logo-oca.png new file mode 100644 index 000000000..90e4c9cb9 Binary files /dev/null and b/theme_splash/static/description/images/cybro-logo-oca.png differ diff --git a/theme_splash/static/description/images/demo-1.png b/theme_splash/static/description/images/demo-1.png new file mode 100644 index 000000000..92b0bedd4 Binary files /dev/null and b/theme_splash/static/description/images/demo-1.png differ diff --git a/theme_splash/static/description/images/demo-2.png b/theme_splash/static/description/images/demo-2.png new file mode 100644 index 000000000..3eda276b5 Binary files /dev/null and b/theme_splash/static/description/images/demo-2.png differ diff --git a/theme_splash/static/description/images/demo-3.png b/theme_splash/static/description/images/demo-3.png new file mode 100644 index 000000000..5b9ab995e Binary files /dev/null and b/theme_splash/static/description/images/demo-3.png differ diff --git a/theme_splash/static/description/images/hero.png b/theme_splash/static/description/images/hero.png new file mode 100644 index 000000000..f5d58432f Binary files /dev/null and b/theme_splash/static/description/images/hero.png differ diff --git a/theme_splash/static/description/images/laptop-screenshots.jpg b/theme_splash/static/description/images/laptop-screenshots.jpg new file mode 100644 index 000000000..1bb5552bb Binary files /dev/null and b/theme_splash/static/description/images/laptop-screenshots.jpg differ diff --git a/theme_splash/static/description/images/phone-screenshots.jpg b/theme_splash/static/description/images/phone-screenshots.jpg new file mode 100644 index 000000000..e0f3425e7 Binary files /dev/null and b/theme_splash/static/description/images/phone-screenshots.jpg differ diff --git a/theme_splash/static/description/index.html b/theme_splash/static/description/index.html new file mode 100644 index 000000000..47019f5c6 --- /dev/null +++ b/theme_splash/static/description/index.html @@ -0,0 +1,272 @@ +
+ +
+
+
+ Cybrosys Logo +
+
+
+
+
+ Theme Screenshot +
+
+

Theme Splash

+

+ 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. +

+
+
+ + + + +
+
+

Desktop View

+

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

+
+
+ Theme Screenshot +
+
+
+
+ Theme Screenshot +
+
+

Mobile View

+

+ User friendly and modern looking theme makes your page more Stylish And Beautiful. +

+
+
+ + + +
+ +
+
+
+ Theme Screenshot +
+
+

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.

+
+
+
+ + + +
+
+
+ Theme Screenshot +
+
+

Blog

+

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

+
+
+
+ +
+ + + + +
+
+ Theme Screenshot +
+
+

Overview

+

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

+
+
+ + + + +
+ +
+
+
+ Theme Screenshot +
+
+

Contact

+

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

+
+
+
+ + + +
+
+
+ Theme Screenshot +
+
+

Services

+

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

+
+
+
+ + + +
+
+
+ Theme Screenshot +
+
+

About

+

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

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

Demo Pages

+
+
+
+ +
+
+
+ +
Blog
+
+
+
+ +
+
+ +
Home
+
+
+
+ +
+
+ +
Blog Preview
+
+
+
+
+
+ + + +
+
+

Get Help

+
+

If you have anything to share with + us + based + on + your use of this module, please let us know. We are ready to offer our support.

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

A Quality Theme From

+
+
+ +
+
+ +
+
\ No newline at end of file diff --git a/theme_splash/static/description/theme_screenshot.png b/theme_splash/static/description/theme_screenshot.png new file mode 100644 index 000000000..f95905509 Binary files /dev/null and b/theme_splash/static/description/theme_screenshot.png 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..185388692 --- /dev/null +++ b/theme_splash/static/src/css/style.css @@ -0,0 +1,3310 @@ +/*@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; +} + +/** + * 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: 26px 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 { + margin-left: 20px; + color: #fff; + padding: 9px 25px !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; + padding: 10px 20px; + 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 { + background-color: #fff; + 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; +} + +.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 { + 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; + background-position: center; +} + +.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; + width: 100%; + background-repeat: no-repeat; + background-position: center; + 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 { + margin-top: 90px; + margin-bottom: 90px; +} + +.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: #7c6576 !important; +} +.o_wsale_filmstip_wrapper .btn-light :hover{ + background-color: #7c6576 !important; +} +.products_header .btn-light { + background-color: #7c6576 !important; +} +.products_header .btn-light :hover{ + background-color: #7c6576 !important; +} + +.products_header .pagination{ + margin-left: 13px !important; +} + +.o_wsale_product_grid_wrapper .o_wsale_product_btn button{ + color: #FFFFFF !important; + background-color: #7c6576 !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: #7c6576 !important; +} + +.o_wsale_product_page #o_wsale_cta_wrapper .js_add_cart_json { + color: #FFFFFF !important; + background-color: #7c6576 !important; +} + +.o_wsale_product_page .o_wsale_product_attribute .rounded-pill { + color: #FFFFFF !important; + background-color: #7c6576 !important; +} +.o_wsale_product_page .o_wsale_product_attribute .rounded-pill .sign_badge_price_extra { + color: #FFFFFF !important; + background-color: #7c6576 !important; +} +.o_wsale_product_page .o_wsale_product_attribute .rounded-pill .variant_price_extra { + color: #FFFFFF !important; + background-color: #7c6576 !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; +} +} +/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/theme_splash/static/src/css/style.css.map b/theme_splash/static/src/css/style.css.map new file mode 100644 index 000000000..80991c660 --- /dev/null +++ b/theme_splash/static/src/css/style.css.map @@ -0,0 +1,37 @@ +{ + "version": 3, + "mappings": "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", + "sources": [ + "../scss/style.scss", + "../scss/_variables.scss", + "../scss/_normalize.scss", + "../scss/layout/_layouts.scss", + "../scss/layout/_header.scss", + "../scss/layout/_navigation.scss", + "../scss/layout/_footer.scss", + "../scss/layout/_sidebar.scss", + "../scss/components/_components.scss", + "../scss/components/_banner.scss", + "../scss/components/_buttons.scss", + "../scss/components/_product.scss", + "../scss/pages/_pages.scss", + "../scss/pages/_home.scss", + "../scss/pages/home/_experience.scss", + "../scss/pages/home/_tabs.scss", + "../scss/pages/home/_about3.scss", + "../scss/pages/home/_best.scss", + "../scss/pages/home/_expect.scss", + "../scss/pages/home/_service.scss", + "../scss/pages/home/_testimonial.scss", + "../scss/pages/home/_Blog.scss", + "../scss/pages/home/_partners.scss", + "../scss/pages/_about.scss", + "../scss/pages/_services.scss", + "../scss/pages/_contact.scss", + "../scss/pages/_blog.scss", + "../scss/pages/_blog-details.scss", + "../scss/_common.scss" + ], + "names": [], + "file": "style.css" +} \ 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/scss/_common.scss b/theme_splash/static/src/scss/_common.scss new file mode 100644 index 000000000..800f3d8d3 --- /dev/null +++ b/theme_splash/static/src/scss/_common.scss @@ -0,0 +1,38 @@ +*{ + list-style-type:none; + + font-family: $font-default; + + &:focus,&:active{ + outline: none !important; + } +} +img{width: 100%;} + +.borderd_header { + font-size: 18px; + position: relative; + &::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; +} diff --git a/theme_splash/static/src/scss/_normalize.scss b/theme_splash/static/src/scss/_normalize.scss new file mode 100644 index 000000000..2f22d6482 --- /dev/null +++ b/theme_splash/static/src/scss/_normalize.scss @@ -0,0 +1,350 @@ +/*! 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; + } + + /** + * 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; + } diff --git a/theme_splash/static/src/scss/_variables.scss b/theme_splash/static/src/scss/_variables.scss new file mode 100644 index 000000000..a8f81b487 --- /dev/null +++ b/theme_splash/static/src/scss/_variables.scss @@ -0,0 +1,22 @@ +//font +$font-default:'Kumbh Sans', sans-serif; +$font-offer: 'Kaushan Script', cursive; + +//colors + +$color-brand: #24c5ce; +$color-black:#000000; +$color-white:#fff; +$color-font:#797979; +$color-font2:#535353; +$color-sub-head:#087b81;; +$color-bg:#f7f7f7; +$color-footer:#036b70; +$color-p:#aaa; +$color-border:#d6d6d6; + +//fon-size + +$font-size-subheading:36px; +$font-size-text: 18px; +$font-size-banner:60px; diff --git a/theme_splash/static/src/scss/components/_buttons.scss b/theme_splash/static/src/scss/components/_buttons.scss new file mode 100644 index 000000000..f8f5fe149 --- /dev/null +++ b/theme_splash/static/src/scss/components/_buttons.scss @@ -0,0 +1,192 @@ +.btn { + border: none !important; + outline: none !important; + &-primary { + background-color: #0aa1aa !important; + border-color: #0aa1aa; + padding: 10px 26px; + color: #fff !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + &:hover { + background-color: darken($color-sub-head, 5%) !important; + border: none; + } + } + &-qut { + background-color: #0aa1aa !important; + border-color: #0aa1aa; + padding: 10px 26px; + color: #fff !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + &:hover { + background-color: darken($color-sub-head, 5%) !important; + border: none; + } + + @media screen and(max-width:1198px){ + + font-size: 16px; + padding: 5px 45px; + } + } + &-get { + background-color: $color-white !important; + border-color: $color-white; + padding: 11px 29px; + color: $color-sub-head !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + margin-right: 10px; + &:hover { + color: $color-black !important; + border: none; + } + + @media screen and(max-width:382px) { + + margin-bottom: 20px; + margin-left: 10px; + } + } + + &-get_t { + background-color: $color-white !important; + border-color: $color-white; + padding: 11px 29px; + color: $color-sub-head !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + margin-right: 10px; + &:hover { + color: $color-black !important; + border: none; + } + + @media screen and(max-width:424px) { + + margin-bottom: 20px; + + } + } + &-quote { + background-color:transparent !important; + border-color: none; + color: #6ddbba !important; + font-size: 18px; + font-weight: 600; + outline: transparent !important; + &:hover { + color: darken(#6ddbba, 5%) !important; + border: none; + } + } + &-quoteF { + background-color:transparent !important; + border-color: none; + color: #6ddbba !important; + font-size: 18px; + font-weight: 600; + outline: transparent !important; + padding-left: 0; + &:hover { + color: darken(#6ddbba, 5%) !important; + border: none; + } + } + &-light { + margin-left: 20px; + color: #fff; + padding: 9px 25px !important; + + cursor: pointer; + + padding: 9px 35px; + &:hover { + + color: #fff; + + } + } + + &-service { + background-color: $color-white !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; + &:hover { + background-color:$color-sub-head !important; + border: none; + color: $color-white !important; + } + + } + + &-sub { + background-color: #0aa1aa !important; + border-color: #0aa1aa; + padding: 11px ; + width: 100%; + color: #fff !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + &:hover { + background-color: darken($color-sub-head, 5%) !important; + border: none; + } + } + &-booking { + background-color: transparent !important; + border-color: #ffffff; + border: 1px solid !important; + padding: 11px 29px; + color: $color-white !important; + font-size: 20px; + font-weight: 600; + border-radius: 8px; + + &:hover { + background-color:$color-white !important; + border: $color-white !important; + color: $color-black !important; + } + + } + &-reply{ + color: $color-sub-head; + font-size: 16px; + font-weight: 600; + padding: 0; + outline-style: none !important; + outline: none !important; + &:hover{ + color: $color-brand; + } + } + + &-pop{ + color: $color-font2; + font-size: 18px; + border: 1px solid !important; + border-color:$color-border !important; + border-radius: 5px; + padding: 6px 10px; + margin-bottom: 10px !important; + &:hover{ + + color: $color-white !important; + background-color: $color-sub-head; + } + } +} diff --git a/theme_splash/static/src/scss/components/_components.scss b/theme_splash/static/src/scss/components/_components.scss new file mode 100644 index 000000000..caa137d23 --- /dev/null +++ b/theme_splash/static/src/scss/components/_components.scss @@ -0,0 +1,3 @@ +@import './banner'; +@import './buttons'; +@import './product'; diff --git a/theme_splash/static/src/scss/layout/_footer.scss b/theme_splash/static/src/scss/layout/_footer.scss new file mode 100644 index 000000000..d710fb849 --- /dev/null +++ b/theme_splash/static/src/scss/layout/_footer.scss @@ -0,0 +1,131 @@ +.footer { + background-color: $color-footer; + padding-top: 90px; + +.footer_part{ + + @media screen and(max-width:996px) { + + margin-bottom: 40px; + + } +} + + h4 { + color: $color-white; + font-size: 25px; + font-weight: 600; + } + .fp { + color: $color-p; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + .fpm { + color: $color-p; + font-size: 18px; + padding-top: 10px; + a { + color: $color-p; + &:hover { + text-decoration: none; + color: $color-white; + } + } + } + .footer_icons { + + @media screen and(max-width:996px) { + + margin-bottom: 40px; + + padding-bottom: 10px; + + } + ul { + display: flex; + list-style: none; + padding-left: 0; + margin-top: 20px; + + .fb { + &:hover { + background: #3b5998; + color: #fff; + } + } + .tw { + &:hover { + background: #1da1f2; + color: #fff; + } + } + .gg { + &:hover { + background: #f44336; + color: #fff; + } + } + .dr { + &:hover { + background: #ea4c89; + color: #fff; + } + } + + li { + color: $color-p; + font-size: 18px; + width: 40px; + height: 40px; + border-radius: 50%; + margin-right: 20px; + background-color: #363434; + text-align: center; + padding-top: 11px; + + &:hover { + background-color: $color-sub-head; + } + } + } + } + .ping{ + + @media screen and(max-width:996px) { + + margin-bottom: 40px; + padding-bottom: 10px; + } + .form-inline{ + margin-bottom: 15px; + } + .md-form{ + width: 100%; + margin-bottom: 20px; + .form-control{ + width: 100%; + padding: 26px 12px; + border-radius: 5px; + } + } + } + .footer_bottom{ + margin-top: 30px; + + padding: 30px 0; + color: $color-p; + font-size: 18px; + background-color:#05393b;; + + a{ + color: $color-white; + text-decoration: none; + &:hover{ + color: $color-sub-head; + } + } + } +} diff --git a/theme_splash/static/src/scss/layout/_header.scss b/theme_splash/static/src/scss/layout/_header.scss new file mode 100644 index 000000000..ea875a6ce --- /dev/null +++ b/theme_splash/static/src/scss/layout/_header.scss @@ -0,0 +1,168 @@ + +.nav-wrapper{ + background-color: $color-white; + 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); + .navbar { + margin: auto 105px; + + @media screen and(max-width:600px){ + margin:auto; + } + #new{ + + padding-top: 35px; + padding-bottom: 35px; + } + + .navbar-toggler { + border-color: $color-sub-head; + &:hover { + background-color: $color-sub-head; + } + span { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 3px; + padding-right: 3px; + color: #149180 !important; + font-size: 26px; + color: $color-sub-head !important; + &:hover { + color: $color-white !important; + } + } + } + + .navbar-brand { + color: $color-brand; + font-size: 36px; + font-weight: 600; + } + + .nav-item { + .nav-link { + padding-right: 0.8rem; + padding-left: 0.8rem; + color: $color-font; + &:hover { + color: $color-black !important; + } + } + } + + .active { + .nav-link { + color: $color-sub-head !important; + } + } + + .search { + span { + color: $color-sub-head; + color: #036b70; + margin-right: 20px; + font-size: 20px; + width: 40px; + height: 40px; + border-radius: 50%; + display: inline-block; + text-align: center; + line-height: 41px; + &:hover { + background-color: $color-sub-head; + color: $color-white; + } + } + } +} +} +.banner{ + .carousel-indicators li{ + box-sizing: content-box; +-ms-flex: 0 1 auto; +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%; + + } + + .card{ + margin-top: 100px; + align-self: center; + background: transparent; + border: none; + + .card-title{ + color: $color-white; + font-size: 60px; + font-weight: 600; + @media screen and(max-width:768px) { + + font-size: 40px; + } + span{ + margin-top: 20px; + } + } + .card-text{ + color: $color-white; + 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; + + } diff --git a/theme_splash/static/src/scss/layout/_layouts.scss b/theme_splash/static/src/scss/layout/_layouts.scss new file mode 100644 index 000000000..4ac4cb565 --- /dev/null +++ b/theme_splash/static/src/scss/layout/_layouts.scss @@ -0,0 +1,4 @@ +@import './header'; +@import './navigation'; +@import './footer'; +@import './sidebar'; diff --git a/theme_splash/static/src/scss/layout/_sidebar.scss b/theme_splash/static/src/scss/layout/_sidebar.scss new file mode 100644 index 000000000..51292530d --- /dev/null +++ b/theme_splash/static/src/scss/layout/_sidebar.scss @@ -0,0 +1,239 @@ +.sidebar { + .sidebar_content { + padding: 30px 30px; + border: 1px solid; + border-radius: 5px; + border-color: $color-border; + margin-bottom: 30px; + h4 { + color: $color-brand; + font-size: 20px; + font-weight: 600; + padding-bottom: 10px; + } + + form { + border: 1px solid; + border-color: $color-border; + border-radius: 5px; + display: flex; + align-items: center; + padding: 10px 20px; + a { + color: $color-brand; + text-decoration: none; + } + input { + border: none !important; + + } + } + + .all_categories { + padding-left: 0; + a { + display: flex; + justify-content: space-between; + align-items: baseline; + color: $color-font2; + border: 1px solid; + border-color: transparent; + border-bottom-color: $color-border; + text-decoration: none; + &:hover { + color: $color-sub-head; + } + + li { + padding-bottom: 15px; + margin-top: 20px; + font-size: 18px; + + &: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; + } + span { + color: $color-font2; + &:hover { + color: $color-sub-head; + } + } + } + } + } + + .recent_wrapper{ + display: flex; + + .img_wrapper{ + max-width: 100px; + @media screen and(max-width:996px) { + margin-bottom: 30px + } + + @media screen and(max-width:996px) { + max-width:200px + } + + img{ + width: 100%; + border-radius: 5px; + } + } + .rec_post_info{ + margin-left: 10px; + padding-top: 20px; + + @media screen and(max-width:1200px) { + padding-top: 0; + } + + @media screen and(max-width:996px) { + padding-top: 50px; + } + + @media screen and(max-width:394px) { + padding-top: 10px; + } + h4{ + color: $color-brand; + font-size: 20px; + font-weight: 600; + + @media screen and(max-width:1200px) { + font-size: 16px; + } + + @media screen and(max-width:996px) { + font-size: 20px; + } + + @media screen and(max-width:394px) { + font-size: 18px; + } + &:hover{ + color:$color-sub-head; + } + } + } + } + + .insta_wrapper{ + + display: grid; + grid-template-columns: 1fr 1fr 1fr; + + .insta_img{ + max-width: 88px; + + @media screen and(max-width:1200px) { + max-width:70px + } + + @media screen and(max-width:996px) { + max-width:200px + } + + @media screen and(max-width:786px) { + max-width:135px + } + @media screen and(max-width:520px) { + max-width:115px + } + @media screen and(max-width:450px) { + max-width:100px + } + @media screen and(max-width:400px) { + max-width:80px + } + img{ + width: 100%; + border-radius: 5px; + } + } + } + + .adv_img{ + img{ + width: 100%; + border-radius: 5px; + } + } + + .blog_social_icon { + margin-top: 30px; + ul { + display: flex; + padding-left: 0; + li { + color: $color-white; + font-size: 14px; + width: 36px; + height: 36px; + border-radius: 50%; + margin-right: 20px; + text-align: center; + padding-top: 11px; + + &:hover { + background-color: $color-sub-head; + } + } + + .fb { + background: #3b5998; + color: #fff; + &:hover { + background: #2a4b92; + } + } + .tw { + background: #1da1f2; + color: #fff; + &:hover { + background: #0a8ee0; + } + } + .in { + background: #f44336; + color: #fff; + &:hover { + background: #f12c1d; + } + } + } + } + + p{ + color: $color-font2; + 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); + } +} diff --git a/theme_splash/static/src/scss/pages/_about.scss b/theme_splash/static/src/scss/pages/_about.scss new file mode 100644 index 000000000..44bc30b90 --- /dev/null +++ b/theme_splash/static/src/scss/pages/_about.scss @@ -0,0 +1,342 @@ + + .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; + width: 100%; + background-repeat: no-repeat; + background-position: center; + position: relative; + .b_head{ + margin-top: 100px; + + color: $color-white; + text-align: center; + font-size: 45px; + font-weight: 700; + width: 100%; + text-align: left; + } + } + // + .about_main_2{ + .exp_wrapper{ + margin-top: 50px; + .ex-1{ + padding-bottom: 40px; + h4{ + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line{ + &:after{ + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; + } + } + } + .main-head{ + h2{ + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + + } + } + } + .wrapper{ + @media screen and(max-width:576px) { + margin: 0 10px; + } + h4{ + color: $color-brand; + font-size: 25px; + margin-top: 15px; + font-weight: 600; + } + p{ + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + .about-img{ + img{ + border-radius: 5px; + width: 100%; + border-radius: 10px; + } + } + } + } + } + // + .about_main_3{ + .exp_wrapper{ + margin-top: 50px; + .ex-1{ + padding-bottom: 40px; + h4{ + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line{ + &:after{ + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; + } + } + } + .main-head{ + h2{ + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + } + } + p{ + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + .expect_bottom{ + padding-top: 20px; + display: flex; + justify-content: space-between; + margin-right: 100px; + .clean{ + display: flex; + span{ + color: $color-sub-head; + font-size: 30px; + } + .wrapper{ + margin-left: 20px; + h4{ + color: $color-brand; + font-weight: 600; + font-size: 30px; + } + p{ + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + } + } + } + } + } + .about-img{ + max-width: 450px; + @media screen and(max-width:576px) { + margin-bottom:20px; + } + img{ + border-radius: 5px; + width: 100%; + border-radius: 10px; + } + } + } + } + + // + + .about_main_4{ + .exp_wrapper{ + margin-top: 50px; + .ex-1{ + padding-bottom: 40px; + h4{ + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line{ + &:after{ + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; + } + } + } + .main-head{ + h2{ + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + + } + } + } + .expect_bottom{ + padding-top: 20px; + .clean{ + display: flex; + span{ + color: $color-sub-head; + font-size: 30px; + } + .wrapper{ + margin-left: 20px; + h4{ + color: $color-brand; + font-weight: 600; + font-size: 30px; + } + p{ + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + } + } + } + } + + } + } + // + .about_main_5{ + .exp_wrapper{ + margin-top: 50px; + .ex-1{ + padding-bottom: 40px; + h4{ + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line{ + &:after{ + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; + } + } + } + .main-head{ + h2{ + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + } + } + } + .team_wrapper{ + // .mrg{ + // @media screen and(max-width:768px) { + // margin-bottom: 3em; + // } + // @media screen and(max-width:px) { + // margin-bottom: 3em; + // } + } + .team_img{ + overflow: hidden; + img{ + width: 100%; + border-radius: 6px; + } + margin-bottom: 25px; + #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; + &: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; + } + } + } + .team_info{ + padding-top: 10px; + text-align: center; + h4{ + font-size: 22px; + font-weight: 600; + color: $color-brand; + } + p{ + color: #535353; + letter-spacing: 0.1rem; + padding-bottom: 15px; + line-height: 1.7rem; + font-size: 18px; + } + } + } + } + // + .booking{ + background-color: $color-sub-head; + .wrapper{ + padding-top: 30px; + padding-bottom: 30px; + h2{ + padding-top: 10px; + font-size: 38px; + line-height: 46px; + font-weight: 600; + color: $color-white; + } + .number{ + margin-top: 30px; + p{ + font-size: 34px; + color: $color-white; + span{ + color: $color-white; + } + } + } + .buttons{ + } + } + } \ No newline at end of file diff --git a/theme_splash/static/src/scss/pages/_blog-details.scss b/theme_splash/static/src/scss/pages/_blog-details.scss new file mode 100644 index 000000000..fb5e99d3b --- /dev/null +++ b/theme_splash/static/src/scss/pages/_blog-details.scss @@ -0,0 +1,274 @@ +.Blog_detail { + margin-top: 40px; + margin-bottom: 40px; + .blog_left{ + @media screen and(max-width:996px) { + margin-bottom: 90px; + } + } + .b_left_single { + .blog_img { + position: relative; + img { + width: 100%; + } + .blog_date { + position: absolute; + display: block; + border-radius: 5px; + background-color: $color-sub-head; + color: $color-white; + padding: 11px 29px; + font-size: 22px; + font-weight: 700; + left: 16px; + bottom: -15px; + width: 95px; + } + } + .comment { + color: $color-font; + margin-top: 40px; + font-size: 18px; + border: 1px solid; + border-color: transparent; + padding-bottom: 20px; + border-bottom-color: $color-border; + a { + color: $color-font; + text-decoration: none; + padding-right: 20px; + border: 1px solid; + border-color: transparent; + border-right-color: $color-font; + &:last-child { + border: none; + padding-left: 20px; + } + &:hover { + color: $color-brand; + } + } + span { + &:last-child { + } + margin-right: 10px; + } + } + + .p_words { + border: 3px solid; + border-color: transparent; + border-radius: 16px; + border-left-color: $color-border; + padding-left: 40px; + margin-top: 40px; + margin-bottom: 40px; + padding-top: 40px; + padding-bottom: 40px; + p { + color: $color-brand; + font-size: 22px; + font-weight: 600; + margin-bottom: 40px; + } + span { + text-align: left; + color: $color-font2; + font-size: 18px; + font-weight: 600; + } + } + .blog_details_2 { + a { + color: $color-brand; + text-decoration: none; + font-size: 28px; + margin-top: 30px; + h4 { + font-weight: 600; + } + &:hover { + color: $color-sub-head; + } + } + .d_img { + img { + border-radius: 8px; + } + } + } + .blog_details_3 { + margin-top: 40px; + } + + .blog_social_icon { + margin-top: 30px; + ul { + display: flex; + padding-left: 0; + li { + color: $color-white; + font-size: 14px; + width: 36px; + height: 36px; + border-radius: 50%; + margin-right: 20px; + text-align: center; + padding-top: 11px; + + &:hover { + background-color: $color-sub-head; + } + } + .fb { + background: #3b5998; + color: #fff; + &:hover { + background: #2a4b92; + } + } + .tw { + background: #1da1f2; + color: #fff; + &:hover { + background: #0a8ee0; + } + } + .in { + background: #f44336; + color: #fff; + &:hover { + background: #f12c1d; + } + } + h5 { + color: $color-brand; + font-size: 22px; + font-weight: 600; + margin-right: 20px; + padding-top: 9px; + } + } + } + .next_prev { + display: flex; + justify-content: space-between; + margin-top: 40px; + padding: 30px 0; + border: 1px solid; + border-color: $color-border; + border-left: none; + border-right: none; + .prev { + a { + font-size: 18px; + font-weight: 600; + text-decoration: none; + color: $color-brand; + &:hover { + color: $color-sub-head; + } + } + } + } + .comments_section { + margin-top: 90px; + h4 { + color: $color-brand; + font-size: 28px; + text-align: left; + font-weight: 600; + margin-bottom: 50px; + } + .wrapper, + .wrapper1, + .wrapper2 { + display: flex; + .c_img { + max-width: 80px; + margin-right: 20px; + img { + width: 100%; + border-radius: 50%; + } + } + .c_right { + .comment_info { + display: flex; + justify-content: space-between; + .name { + color: $color-brand; + font-size: 18px; + font-weight: 600; + } + .date { + color: $color-font2; + font-size: 16px; + font-weight: 600; + border: 1px solid; + border-color: $color-border; + padding: 4px 9px; + border-radius: 2px; + } + } + .para_c { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + } + } + + .wrapper2, + .wrapper1 { + border: 1px solid; + border-top-color: $color-border !important; + border-color: transparent; + margin-top: 30px; + padding-top: 20px; + } + } + + .message_box { + margin-top: 50px; + .form { + h3 { + margin-bottom: 30px; + color: $color-brand; + text-align: left; + font-weight: 600; + font-size: 28px; + padding-top: 10px; + } + input { + font-size: 18px; + padding: 12px 20px; + line-height: 28px; + width: 100%; + border-radius: 8px; + height: 58px; + color: $color-brand; + outline-style: none !important; + outline: none !important; + outline: transparent !important; + } + input:focus { + border-color: $color-brand; + outline-style: none !important; + outline: none !important; + outline: transparent !important; + } + .no-outline:focus { + outline: none; + } + .form-group{ + margin-top: 20px; + } + } + } + } +} diff --git a/theme_splash/static/src/scss/pages/_blog.scss b/theme_splash/static/src/scss/pages/_blog.scss new file mode 100644 index 000000000..fedd0194c --- /dev/null +++ b/theme_splash/static/src/scss/pages/_blog.scss @@ -0,0 +1,295 @@ +.Blog { + margin-top: 40px; + margin-bottom: 40px; + .b_left_single { + .blog_img { + position: relative; + + img { + width: 100%; + border-top-left-radius: 8px; + border-top-right-radius: 8px; + } + .blog_date { + position: absolute; + display: block; + border-radius: 5px; + background-color: $color-sub-head; + color: $color-white; + padding: 11px 29px; + font-size: 22px; + font-weight: 700; + left: 16px; + bottom: -15px; + width: 95px; + } + } + + .wrapper{ + border: 1px solid; + border-color: $color-border; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; + border-top-color: transparent; + padding-left: 20px; + padding-right: 20px; + padding-bottom: 30px; + } +a{ + color: $color-brand; + text-decoration: none; + &:hover{ + color: $color-sub-head; + } +} + +.blog_link{ + h4{ + margin-top: 50px; + font-weight: 600; + font-size: 20px; + } +} + .comment { + color: $color-font; + margin-top: 35px; + font-size: 18px; + border: 1px solid; + border-color: transparent; + padding-bottom: 20px; + border-bottom-color: $color-border; + a { + color: $color-font; + text-decoration: none; + padding-right: 20px; + border: 1px solid; + border-color: transparent; + border-right-color: $color-font; + &:last-child { + border: none; + padding-left: 20px; + } + &:hover { + color: $color-brand; + } + } + span { + &:last-child { + } + margin-right: 10px; + } + } + .p_words { + border: 3px solid; + border-color: transparent; + border-radius: 16px; + border-left-color: $color-border; + padding-left: 40px; + margin-top: 40px; + margin-bottom: 40px; + padding-top: 40px; + padding-bottom: 40px; + p { + color: $color-brand; + font-size: 22px; + font-weight: 600; + margin-bottom: 40px; + } + span { + text-align: left; + color: $color-font2; + font-size: 18px; + font-weight: 600; + } + } + .blog_details_2 { + a { + color: $color-brand; + text-decoration: none; + font-size: 28px; + margin-top: 30px; + h4 { + font-weight: 600; + } + &:hover { + color: $color-sub-head; + } + } + .d_img { + img { + border-radius: 8px; + } + } + } + .blog_details_3 { + margin-top: 40px; + } + + .blog_social_icon { + margin-top: 30px; + ul { + display: flex; + padding-left: 0; + li { + color: $color-white; + font-size: 14px; + width: 36px; + height: 36px; + border-radius: 50%; + margin-right: 20px; + text-align: center; + padding-top: 11px; + + &:hover { + background-color: $color-sub-head; + } + } + .fb { + background: #3b5998; + color: #fff; + &:hover { + background: #2a4b92; + } + } + .tw { + background: #1da1f2; + color: #fff; + &:hover { + background: #0a8ee0; + } + } + .in { + background: #f44336; + color: #fff; + &:hover { + background: #f12c1d; + } + } + h5 { + color: $color-brand; + font-size: 22px; + font-weight: 600; + margin-right: 20px; + padding-top: 9px; + } + } + } + .next_prev { + display: flex; + justify-content: space-between; + margin-top: 40px; + padding: 30px 0; + border: 1px solid; + border-color: $color-border; + border-left: none; + border-right: none; + .prev { + a { + font-size: 18px; + font-weight: 600; + text-decoration: none; + color: $color-brand; + &:hover { + color: $color-sub-head; + } + } + } + } + .comments_section { + margin-top: 90px; + h4 { + color: $color-brand; + font-size: 28px; + text-align: left; + font-weight: 600; + margin-bottom: 50px; + } + .wrapper, + .wrapper1, + .wrapper2 { + display: flex; + .c_img { + max-width: 80px; + margin-right: 20px; + img { + width: 100%; + border-radius: 50%; + } + } + .c_right { + .comment_info { + display: flex; + justify-content: space-between; + .name { + color: $color-brand; + font-size: 18px; + font-weight: 600; + } + .date { + color: $color-font2; + font-size: 16px; + font-weight: 600; + border: 1px solid; + border-color: $color-border; + padding: 4px 9px; + border-radius: 2px; + } + } + .para_c { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + } + } + .wrapper2, + .wrapper1 { + border: 1px solid; + border-top-color: $color-border !important; + border-color: transparent; + margin-top: 30px; + padding-top: 20px; + } + } + .message_box { + margin-top: 50px; + .form { + h3 { + margin-bottom: 30px; + color: $color-brand; + text-align: left; + font-weight: 600; + font-size: 28px; + padding-top: 10px; + } + input { + font-size: 18px; + padding: 12px 20px; + line-height: 28px; + width: 100%; + border-radius: 8px; + height: 58px; + color: $color-brand; + outline-style: none !important; + outline: none !important; + outline: transparent !important; + } + input:focus { + border-color: $color-brand; + outline-style: none !important; + outline: none !important; + outline: transparent !important; + } + .no-outline:focus { + outline: none; + } + .form-group{ + margin-top: 20px; + } + } + } + } +} diff --git a/theme_splash/static/src/scss/pages/_contact.scss b/theme_splash/static/src/scss/pages/_contact.scss new file mode 100644 index 000000000..45af6498e --- /dev/null +++ b/theme_splash/static/src/scss/pages/_contact.scss @@ -0,0 +1,97 @@ +.address{ + margin-top: 70px; + margin-bottom: 70px; + .contact_col{ + display: grid; + grid-template-columns: 1fr 1fr 1fr 1fr; + grid-gap: 20px; + @media screen and (max-width:996px) { + grid-template-columns: 2fr 2fr; + } + @media screen and (max-width:532px) { + grid-template-columns: 2fr; + } +.contact_info{ + text-align: center; + padding: 38px 12px 3px 12px; +border: 1px solid; +border-radius: 8px; +border-color: $color-border; + .contact_icon{ + max-width: 40px; + margin: auto; + img{ + width: 100%; + opacity: 0.5; + &:hover{ + opacity: 1; + } + } + } + h4{ + font-weight: 600; + color:$color-brand; + font-size: 20px; + margin-top: 18px; + } + .wrapper{ + margin-top: 25px; + } + .fpm { + + font-size: 18px; + padding-top: 5px; + margin-bottom: 0px; + a { + color: $color-font2; + &:hover { + text-decoration: none; + color: $color-brand; + } + } + } +} +} +} +.contact_form{ + padding-top: 50px; + .form{ + margin-left: 100px; + margin-right: 100px; + margin-bottom: 70px; + + @media screen and (max-width:996px) { + margin-left: 0; + margin-right: 0; + } + h3{ + margin-bottom: 30px; + color: $color-brand; + text-align: left; + font-weight: 600; + font-size: 28px; + padding-top: 10px; + } + input{ +font-size: 18px; +padding: 12px 20px; +line-height: 28px; +width: 100%; +border-radius: 8px; +height: 58px; +color: $color-brand; +outline-style: none !important; +outline: none !important; +outline: transparent !important; + } + input:focus { + border-color:$color-brand; + outline-style: none !important; + outline: none !important; + outline: transparent !important; + } + .no-outline:focus { + outline: none; + } + } +} \ No newline at end of file diff --git a/theme_splash/static/src/scss/pages/_home.scss b/theme_splash/static/src/scss/pages/_home.scss new file mode 100644 index 000000000..a47d470a3 --- /dev/null +++ b/theme_splash/static/src/scss/pages/_home.scss @@ -0,0 +1,9 @@ +@import './home/experience'; +@import './home/tabs'; +@import './home/about3'; +@import './home/best'; +@import './home/expect'; +@import './home/service'; +@import './home/testimonial'; +@import './home/Blog'; +@import './home/partners'; \ No newline at end of file diff --git a/theme_splash/static/src/scss/pages/_pages.scss b/theme_splash/static/src/scss/pages/_pages.scss new file mode 100644 index 000000000..a9e4e8d81 --- /dev/null +++ b/theme_splash/static/src/scss/pages/_pages.scss @@ -0,0 +1,6 @@ +@import './home'; +@import './about'; +@import './services'; +@import './contact'; +@import './blog'; +@import './blog-details'; diff --git a/theme_splash/static/src/scss/pages/_services.scss b/theme_splash/static/src/scss/pages/_services.scss new file mode 100644 index 000000000..c5b4a6cfa --- /dev/null +++ b/theme_splash/static/src/scss/pages/_services.scss @@ -0,0 +1,175 @@ +.services1 { + .exp_wrapper { + margin-top: 50px; + .ex-1 { + padding-bottom: 40px; + h4 { + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line { + &:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; + } + } + } + .main-head { + h2 { + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + } + } + p { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + + .progress_main { + .wrapper { + margin-bottom: 20px; + .pr { + display: grid; + grid-template-columns: 1fr auto; + width: 80%; + color: $color-brand; + font-size: 16px; + font-weight: 600; + } + } + .progress { + height: 7px; + .progress-bar { + background-color: $color-sub-head; + } + } + } + } + .about-img { + img { + border-radius: 5px; + width: 100%; + border-radius: 10px; + } + } + } +} + +// + +.tabs { + margin-top: 90px; + margin-bottom: 90px; + .nav-tabs { + justify-content: center; + margin-bottom: 30px; + border: none !important; + .nav-item { + .active { + color: $color-brand !important; + border: none; + } + .nav-link { + font-size: 20px; + color: $color-sub-head; + position: relative; + border: none; + font-weight: 600; + } + } + } + + .tab-content { + padding-top: 40px; + padding-bottom: 20px; + .tab_left { + ul { + padding-left: 0; + li { + font-size: 20px; + font-weight: 600; + color: $color-brand; + margin-bottom: 20px; + padding: 15px 20px 0; + + &: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; + } + span { + color: $color-sub-head; + margin-right: 30px; + font-weight: 600; + font-size: 30px !important; + } + } + } + } + .tab_right { + + padding: 0 20px; + .right_1 { + .th { + font-weight: 600; + font-size: 28px; + padding-top: 10px; + color: $color-brand; + } + } + .right_2 { + margin-top: 30px; + + + img { + width: 100%; + border-radius: 8px; + @media screen and(max-width:996px) { + margin-bottom: 30px; + } + } + } + .right_3 { + .th { + font-weight: 600; + font-size: 28px; + padding-top: 10px; + color: $color-brand; + } + + ul { + margin-bottom: 30px; + span { + color: $color-sub-head; + font-size: 8px; + margin-right: 15px; + } + li { + color: $color-font2; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + padding-bottom: 15px; + } + } + } + } + } +} diff --git a/theme_splash/static/src/scss/pages/home/_Blog.scss b/theme_splash/static/src/scss/pages/home/_Blog.scss new file mode 100644 index 000000000..6c26694e2 --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_Blog.scss @@ -0,0 +1,109 @@ +.blog{ + background-color:$color-bg; + margin-top: 90px; + .exp_wrapper{ + .ex-1{ + padding-bottom: 40px; + padding-top: 70px; + h4{ + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line{ + &:after{ + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; + } + } + } + .main-head{ + h2{ + color: $color-brand; + font-size: 35px; + margin-top: 20px; + font-weight: 600; + + } + } + } + } + .blog_contents{ + padding-top: 40px; + padding-bottom: 40px; + } +.card{ + text-align: left !important; + background: transparent; + + border: none; +overflow: hidden !important; +.img_wrapper2{ + overflow: hidden; +} +.wrapper{ +padding-left: 15px; +background-color: $color-white; +padding-bottom: 50px; +border-bottom-left-radius: 5px; +border-bottom-right-radius: 5px; +box-shadow: 2px 2px; +} +#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; + &: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; + +} +} + + ul{ + margin-top: 30px; + list-style: none; + padding-left: 0; + li{ + color:$color-sub-head; + font-weight: 600; + margin-right: 10px; + background: transparent; + border: none; + font-size: 16px; + + &:last-child{ + + } + } + } + + .card-body{ + padding-top: 0; + padding-bottom: 0; + padding-left: 0; + a{ + + color: $color-brand; + font-weight: 600; + font-size: 20px; + &:hover{ + color: $color-sub-head; + } + } + } +} +} diff --git a/theme_splash/static/src/scss/pages/home/_about3.scss b/theme_splash/static/src/scss/pages/home/_about3.scss new file mode 100644 index 000000000..3e764e4ee --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_about3.scss @@ -0,0 +1,51 @@ +.about3{ + .exp_wrapper{ + margin-top: 50px; + .ex-1{ + padding-bottom: 40px; + h4{ + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line{ + &:after{ + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #14c1ca; + content: ""; + display: block; + } + } + } + .main-head{ + h2{ + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + + } + } + p{ + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + } + .about-img{ + img{ + border-radius: 5px; + width: 100%; + border-radius: 10px; + } + } + } +} diff --git a/theme_splash/static/src/scss/pages/home/_best.scss b/theme_splash/static/src/scss/pages/home/_best.scss new file mode 100644 index 000000000..f02a5de27 --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_best.scss @@ -0,0 +1,63 @@ +.best{ + background-color: $color-bg; + .exp_wrapper{ + margin-top: 50px; + .best_l{ + padding-bottom: 40px; + + .main-head{ + h2{ + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + + } + } + p{ + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + } + } + + .best_r{ + .card{ + border-radius: 8px; + border: none; + margin-bottom: 30px; + &:hover{ + -webkit-box-shadow: 0px 0px 24px 2px rgba(0,0,0,0.46); +-moz-box-shadow: 0px 0px 24px 2px rgba(0,0,0,0.46); +box-shadow: 0px 0px 24px 2px rgba(0,0,0,0.46);} + .card-body{ + padding:38px 37px; + span{ + color: $color-sub-head; + font-size: 30px; + margin-bottom: 20px; + } + .card-title{ + padding-top: 10px; + a{ + color: $color-brand; + font-weight: 600; + &:hover{ + color: $color-sub-head; + text-decoration: none; + } + } + } + .card-text{ + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + } + } + } + } + + } +} \ No newline at end of file diff --git a/theme_splash/static/src/scss/pages/home/_expect.scss b/theme_splash/static/src/scss/pages/home/_expect.scss new file mode 100644 index 000000000..8d1bbe118 --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_expect.scss @@ -0,0 +1,125 @@ +.expect{ + .exp_wrapper{ + margin-top: 50px; + .ex-1{ + padding-bottom: 40px; + h4{ + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line{ + &:after{ + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #14c1ca; + content: ""; + display: block; + } + } + } + .main-head{ + h2{ + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + } + } + p{ + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + + .expect_bottom{ + padding-top: 20px; + display: flex; + justify-content: space-between; + margin-right: 100px; + .clean{ + display: flex; + span{ + color: $color-sub-head; + font-size: 30px; + } + .wrapper{ + margin-left: 20px; + h4{ + color: $color-brand; + font-weight: 600; + font-size: 30px; + } + p{ + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + } + } + } + } + } + .exp_right{ + position: relative; + margin-left: 90px; + @media screen and(max-width:577px) { + margin-left: 0; + } + .about-img{ + max-width: 600px; + img{ + border-radius: 8px; + width: 100%; + } + } + .description{ + position: absolute; + background-color: $color-sub-head; + border-radius: 8px; + bottom: 70px; + left: -98px; + -webkit-box-shadow: -1px 5px 23px -4px rgba(0,0,0,0.75); + -moz-box-shadow: -1px 5px 23px -4px rgba(0,0,0,0.75); + box-shadow: -1px 5px 23px -4px rgba(0,0,0,0.75); + @media screen and(max-width:1200px) { + bottom: 34px; + } + @media screen and(max-width:577px) { + left: 0; + } + @media screen and(max-width:376px) { + left: 0; + margin-top: 60px; + position: relative; + } + .wrapper{ + padding: 40px 37px; + color: $color-white; + h4{ + font-weight: 600; + font-size: 18px; + } + span{ + color: $color-white; + font-size: 22px; + + a{ + padding-left: 20px; + color: $color-white; + font-size: 20px; + font-weight: 600; + } + } + } + } + } +} +} diff --git a/theme_splash/static/src/scss/pages/home/_experience.scss b/theme_splash/static/src/scss/pages/home/_experience.scss new file mode 100644 index 000000000..00dfa81b7 --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_experience.scss @@ -0,0 +1,81 @@ +.experience{ + .exp_wrapper{ + margin-top: 50px; + .ex-1{ + padding-bottom: 40px; + position: relative; + h4{ + font-size: 16px; + color: $color-sub-head; + position: relative; + font-weight: 600; + .ex-line{ + &:after{ + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #14c1ca; + content: ""; + display: block; + } + } + } + .main-head{ + h2{ + color: $color-brand; + font-size: 36px; + margin-top: 20px; + font-weight: 600; + } + } + p{ + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + } + } + .about-img{ + img{ + border-radius: 5px; + width: 100%; + border-radius: 10px; + } + } + .about_desc{ + .wrapper{ + .top{ +@media screen and(max-width:767px) { + margin-top: 40px; + } + .tabs{ + } + text-indent: 76px; + + letter-spacing: 3px; + font-size: 18px; + color: $color-font2; + font-weight: 600; + padding-top: 25px; + } + h4{ + color: $color-brand; + font-weight: 600; + font-size: 28px; + padding-top: 10px; + } + .bottom{ + color: #535353; + letter-spacing: 0.1rem; + line-height: 1.7rem; + font-size: 18px; + padding-top: 15px; + } + } + } + } +} diff --git a/theme_splash/static/src/scss/pages/home/_partners.scss b/theme_splash/static/src/scss/pages/home/_partners.scss new file mode 100644 index 000000000..21f5ff0f5 --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_partners.scss @@ -0,0 +1,36 @@ +.partner{ + margin-top: 70px; + padding-bottom: 50px; + h3{ + color: #0a6368; + font-size: 40px; + font-weight: 600; + text-align: center; + margin-bottom: 20px; + } + + .wrapper{ + padding-top: 40px; + padding-bottom: 40px; + + img{ + width: 100%; + -webkit-filter: grayscale(1); +filter: grayscale(1); +transition: 0.3s ease; +opacity: .5; + &:hover{ + filter: grayscale(0); + transition: 0.3s ease; + opacity: 1; + } + @media screen and(max-width:996px) { + padding-bottom: 20px; + } + + @media screen and(max-width:600px) { + margin-bottom: 30px; + } + } + } +} \ No newline at end of file diff --git a/theme_splash/static/src/scss/pages/home/_service.scss b/theme_splash/static/src/scss/pages/home/_service.scss new file mode 100644 index 000000000..8bf977fb5 --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_service.scss @@ -0,0 +1,46 @@ +.commercial_service{ + + 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; + background-position: center; + + .card{ + margin-top: 100px; + align-self: center; + background: transparent; + border: none; + + .card-title{ + color: $color-white; + font-size: 60px; + font-weight: 600; + + @media screen and(max-width:768px) { + + font-size: 40px; + + } + + @media screen and(max-width:400px) { + + font-size: 30px; + + } + span{ + margin-top: 20px; + } + } + .card-text{ + color: $color-white; + font-size: 18px; + margin-top: 32px; + margin-bottom: 35px; + } + + } +} diff --git a/theme_splash/static/src/scss/pages/home/_tabs.scss b/theme_splash/static/src/scss/pages/home/_tabs.scss new file mode 100644 index 000000000..f270bac3f --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_tabs.scss @@ -0,0 +1,85 @@ +.tab{ + background-color: $color-bg; + + .tabs{ + @media screen and(max-width:996px) { + + margin-bottom: 0 !important; + } + } + .classic-tabs{ + .nav{ + justify-content: end; + .nav-item{ + :active{ + color: $color-sub-head !important; + background-color: $color-white !important; + padding: 10px 20px; + border-radius: 5px; + } + a{ + font-size: 22px; + padding: 20px 45px; + color: $color-brand; + font-weight: 600; + } + } + } + .tab-content{ + .wrapper{ + padding-top: 30px; + .tab_left{ + margin-top: 20px; + + h4{ + color: $color-brand; + font-weight: 600; + font-size: 28px; + padding-top: 10px; + } + p{ + padding-right: 50px; + padding-bottom: 15px; + } + + } + .tab_icons{ + display: flex; + justify-content: space-between;; + padding-top: 15px; + margin-bottom: 50px; + + .icon{ + // padding: 23px 44px 9px 44px; + background-color:$color-white; + border-radius: 9px; + + span{ + display: flex; + justify-content: center; + color: $color-sub-head; + font-size: 40px; + } + .icon-bottom{ + color: $color-brand; + font-size: 18px; + font-weight: 500; + margin-top: 15px; + } + } + } + } + .tab_right{ + + @media screen and(max-width:991px) { + + margin-top: 40px; + + } + img{ + border-radius: 5px; + } + } + } + } +} diff --git a/theme_splash/static/src/scss/pages/home/_testimonial.scss b/theme_splash/static/src/scss/pages/home/_testimonial.scss new file mode 100644 index 000000000..a66eb43e2 --- /dev/null +++ b/theme_splash/static/src/scss/pages/home/_testimonial.scss @@ -0,0 +1,113 @@ +.testmonial { + .img_wrapper { + background-color: #0000000f !important; + border-radius: 8px; + max-width: 600px; + img { + width: 100%; + height: auto; + margin-left: -2em; + margin-top: -2em; + margin-bottom: 2em; + border-radius: 6px; + + @media screen and(max-width:600px) { + + margin-left: 0; + + } + } + } + + .ex-1 { + + padding-bottom: 40px; + .carousel-indicators { + bottom: -30px; + bottom: -43px; + display: flex; + justify-content: flex-start; + margin-left: 0; + .active{ + background-color: cornflowerblue; + } + li{ + box-sizing: content-box; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 13px; + height: 13px; + margin-right: 14px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color:$color-font2; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity .6s ease; + border-radius: 50%; + } + } + h4 { + font-size: 16px; + color: $color-sub-head; + position: relative; + text-transform: uppercase; + font-weight: 600; + .ex-line { + &:after { + position: absolute; + left: -53px; + bottom: 7px; + height: 3px; + width: 40px; + background: #6984c2; + content: ""; + display: block; + } + } + } + .main-head { + h2 { + color: $color-brand; + font-size: 40px; + margin-top: 20px; + font-weight: 600; + } + + } + blockquote { + color: #535353; + letter-spacing: 0.1rem; + margin-bottom: 30px; + padding-top: 20px; + line-height: 1.7rem; + font-size: 18px; + + &:before { + color: $color-sub-head; + content: open-quote; + font-size: 3em; + font-family: initial; + line-height: 0.8; + padding-top: 8px; + display: inline-block; + } + } + .wrapper { + display: flex; + padding-top: 5px; + span { + color: $color-brand; + font-weight: 600; + font-size: 20px; + } + .bottom { + padding-top: 3px; + padding-left: 20px; + } + } + } +} diff --git a/theme_splash/static/src/scss/style.scss b/theme_splash/static/src/scss/style.scss new file mode 100644 index 000000000..b714fd38c --- /dev/null +++ b/theme_splash/static/src/scss/style.scss @@ -0,0 +1,11 @@ +// @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); +//@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700&display=swap'); + +// @import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap'); +//Global +@import './variables'; +@import './normalize'; +@import './layout/layouts'; +@import './components/components'; +@import './pages/pages'; +@import './common'; diff --git a/theme_splash/views/blog.xml b/theme_splash/views/blog.xml new file mode 100644 index 000000000..12c159877 --- /dev/null +++ b/theme_splash/views/blog.xml @@ -0,0 +1,313 @@ + + + + + + \ No newline at end of file diff --git a/theme_splash/views/blog_details.xml b/theme_splash/views/blog_details.xml new file mode 100644 index 000000000..317481eda --- /dev/null +++ b/theme_splash/views/blog_details.xml @@ -0,0 +1,121 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/contact_us.xml b/theme_splash/views/contact_us.xml new file mode 100644 index 000000000..19e8ba051 --- /dev/null +++ b/theme_splash/views/contact_us.xml @@ -0,0 +1,208 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/shop.xml b/theme_splash/views/shop.xml new file mode 100644 index 000000000..171ee06b1 --- /dev/null +++ b/theme_splash/views/shop.xml @@ -0,0 +1,84 @@ + + + + + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/about.xml b/theme_splash/views/snippets/about.xml new file mode 100644 index 000000000..46c6a8bda --- /dev/null +++ b/theme_splash/views/snippets/about.xml @@ -0,0 +1,359 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_about.xml b/theme_splash/views/snippets/index/index_about.xml new file mode 100644 index 000000000..7db9d472a --- /dev/null +++ b/theme_splash/views/snippets/index/index_about.xml @@ -0,0 +1,66 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_about_section.xml b/theme_splash/views/snippets/index/index_about_section.xml new file mode 100644 index 000000000..66ca915bd --- /dev/null +++ b/theme_splash/views/snippets/index/index_about_section.xml @@ -0,0 +1,46 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_banner.xml b/theme_splash/views/snippets/index/index_banner.xml new file mode 100644 index 000000000..e522ed585 --- /dev/null +++ b/theme_splash/views/snippets/index/index_banner.xml @@ -0,0 +1,100 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_blog.xml b/theme_splash/views/snippets/index/index_blog.xml new file mode 100644 index 000000000..019a67a12 --- /dev/null +++ b/theme_splash/views/snippets/index/index_blog.xml @@ -0,0 +1,68 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_commercial_service.xml b/theme_splash/views/snippets/index/index_commercial_service.xml new file mode 100644 index 000000000..b04f7a25b --- /dev/null +++ b/theme_splash/views/snippets/index/index_commercial_service.xml @@ -0,0 +1,24 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_expect_tab.xml b/theme_splash/views/snippets/index/index_expect_tab.xml new file mode 100644 index 000000000..d4d530dde --- /dev/null +++ b/theme_splash/views/snippets/index/index_expect_tab.xml @@ -0,0 +1,87 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_partner.xml b/theme_splash/views/snippets/index/index_partner.xml new file mode 100644 index 000000000..bbe4424dd --- /dev/null +++ b/theme_splash/views/snippets/index/index_partner.xml @@ -0,0 +1,38 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_service.xml b/theme_splash/views/snippets/index/index_service.xml new file mode 100644 index 000000000..096e483c8 --- /dev/null +++ b/theme_splash/views/snippets/index/index_service.xml @@ -0,0 +1,117 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_tab_section.xml b/theme_splash/views/snippets/index/index_tab_section.xml new file mode 100644 index 000000000..b1377b37e --- /dev/null +++ b/theme_splash/views/snippets/index/index_tab_section.xml @@ -0,0 +1,148 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/index/index_testmonial.xml b/theme_splash/views/snippets/index/index_testmonial.xml new file mode 100644 index 000000000..c5b03e46f --- /dev/null +++ b/theme_splash/views/snippets/index/index_testmonial.xml @@ -0,0 +1,140 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/service.xml b/theme_splash/views/snippets/service.xml new file mode 100644 index 000000000..8d9a0357a --- /dev/null +++ b/theme_splash/views/snippets/service.xml @@ -0,0 +1,394 @@ + + + + \ No newline at end of file diff --git a/theme_splash/views/snippets/website_snippets_templates.xml b/theme_splash/views/snippets/website_snippets_templates.xml new file mode 100644 index 000000000..6c749cedf --- /dev/null +++ b/theme_splash/views/snippets/website_snippets_templates.xml @@ -0,0 +1,53 @@ + + + + diff --git a/theme_splash/views/views.xml b/theme_splash/views/views.xml new file mode 100644 index 000000000..b2d52dd36 --- /dev/null +++ b/theme_splash/views/views.xml @@ -0,0 +1,197 @@ + + + + \ No newline at end of file