You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1301 lines
22 KiB
CSS
1301 lines
22 KiB
CSS
/**
|
|
* Template Name: Multi
|
|
* Updated: Mar 10 2023 with Bootstrap v5.2.3
|
|
* Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
|
|
* Author: BootstrapMade.com
|
|
* License: https://bootstrapmade.com/license/
|
|
*/
|
|
|
|
/*--------------------------------------------------------------
|
|
# General
|
|
--------------------------------------------------------------*/
|
|
body {
|
|
font-family: "Open Sans", sans-serif;
|
|
color: #444444;
|
|
}
|
|
|
|
a {
|
|
color: #ed502e;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: #f1775d;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: "Raleway", sans-serif;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Preloader
|
|
--------------------------------------------------------------*/
|
|
#preloader {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 9999;
|
|
overflow: hidden;
|
|
background: #fff;
|
|
}
|
|
|
|
#preloader:before {
|
|
content: "";
|
|
position: fixed;
|
|
top: calc(50% - 30px);
|
|
left: calc(50% - 30px);
|
|
border: 6px solid #ed502e;
|
|
border-top-color: white;
|
|
border-radius: 50%;
|
|
width: 60px;
|
|
height: 60px;
|
|
animation: animate-preloader 1s linear infinite;
|
|
}
|
|
|
|
@keyframes animate-preloader {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Back to top button
|
|
--------------------------------------------------------------*/
|
|
.back-to-top {
|
|
position: fixed;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
right: 15px;
|
|
bottom: 15px;
|
|
z-index: 996;
|
|
background: #ed502e;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 4px;
|
|
transition: all 0.4s;
|
|
}
|
|
|
|
.back-to-top i {
|
|
font-size: 28px;
|
|
color: #fff;
|
|
line-height: 0;
|
|
}
|
|
|
|
.back-to-top:hover {
|
|
background: #f06f54;
|
|
color: #fff;
|
|
}
|
|
|
|
.back-to-top.active {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Header
|
|
--------------------------------------------------------------*/
|
|
#header {
|
|
background: #fff;
|
|
transition: all 0.5s;
|
|
z-index: 997;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
#header.header-scrolled {
|
|
padding: 12px 0;
|
|
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
#header .logo {
|
|
font-size: 26px;
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1;
|
|
font-weight: 700;
|
|
letter-spacing: 0.5px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
#header .logo a {
|
|
color: #0b2341;
|
|
}
|
|
|
|
#header .logo img {
|
|
max-height: 40px;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Navigation Menu
|
|
--------------------------------------------------------------*/
|
|
/**
|
|
* Desktop Navigation
|
|
*/
|
|
.navbar {
|
|
padding: 0;
|
|
}
|
|
|
|
.navbar ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
list-style: none;
|
|
align-items: center;
|
|
}
|
|
|
|
.navbar li {
|
|
position: relative;
|
|
}
|
|
|
|
.navbar a,
|
|
.navbar a:focus {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 10px 0 10px 30px;
|
|
font-size: 15px;
|
|
color: #0b2341;
|
|
white-space: nowrap;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.navbar a i,
|
|
.navbar a:focus i {
|
|
font-size: 12px;
|
|
line-height: 0;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.navbar a:hover,
|
|
.navbar .active,
|
|
.navbar .active:focus,
|
|
.navbar li:hover>a {
|
|
color: #ed502e;
|
|
}
|
|
|
|
.navbar .getstarted,
|
|
.navbar .getstarted:focus {
|
|
background: #ed502e;
|
|
padding: 8px 20px;
|
|
margin-left: 30px;
|
|
border-radius: 4px;
|
|
color: #fff;
|
|
}
|
|
|
|
.navbar .getstarted:hover,
|
|
.navbar .getstarted:focus:hover {
|
|
color: #fff;
|
|
background: #ef6445;
|
|
}
|
|
|
|
.navbar .dropdown ul {
|
|
display: block;
|
|
position: absolute;
|
|
left: 14px;
|
|
top: calc(100% + 30px);
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
z-index: 99;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
background: #fff;
|
|
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.navbar .dropdown ul li {
|
|
min-width: 200px;
|
|
}
|
|
|
|
.navbar .dropdown ul a {
|
|
padding: 10px 20px;
|
|
text-transform: none;
|
|
}
|
|
|
|
.navbar .dropdown ul a i {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.navbar .dropdown ul a:hover,
|
|
.navbar .dropdown ul .active:hover,
|
|
.navbar .dropdown ul li:hover>a {
|
|
color: #ed502e;
|
|
}
|
|
|
|
.navbar .dropdown:hover>ul {
|
|
opacity: 1;
|
|
top: 100%;
|
|
visibility: visible;
|
|
}
|
|
|
|
.navbar .dropdown .dropdown ul {
|
|
top: 0;
|
|
left: calc(100% - 30px);
|
|
visibility: hidden;
|
|
}
|
|
|
|
.navbar .dropdown .dropdown:hover>ul {
|
|
opacity: 1;
|
|
top: 0;
|
|
left: 100%;
|
|
visibility: visible;
|
|
}
|
|
|
|
@media (max-width: 1366px) {
|
|
.navbar .dropdown .dropdown ul {
|
|
left: -90%;
|
|
}
|
|
|
|
.navbar .dropdown .dropdown:hover>ul {
|
|
left: -100%;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Mobile Navigation
|
|
*/
|
|
.mobile-nav-toggle {
|
|
color: #0b2341;
|
|
font-size: 28px;
|
|
cursor: pointer;
|
|
display: none;
|
|
line-height: 0;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.mobile-nav-toggle.bi-x {
|
|
color: #fff;
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.mobile-nav-toggle {
|
|
display: block;
|
|
}
|
|
|
|
.navbar ul {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.navbar-mobile {
|
|
position: fixed;
|
|
overflow: hidden;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
background: rgba(4, 12, 21, 0.9);
|
|
transition: 0.3s;
|
|
z-index: 999;
|
|
}
|
|
|
|
.navbar-mobile .mobile-nav-toggle {
|
|
position: absolute;
|
|
top: 15px;
|
|
right: 15px;
|
|
}
|
|
|
|
.navbar-mobile ul {
|
|
display: block;
|
|
position: absolute;
|
|
top: 55px;
|
|
right: 15px;
|
|
bottom: 15px;
|
|
left: 15px;
|
|
padding: 10px 0;
|
|
background-color: #fff;
|
|
overflow-y: auto;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.navbar-mobile a,
|
|
.navbar-mobile a:focus {
|
|
padding: 10px 20px;
|
|
font-size: 15px;
|
|
color: #0b2341;
|
|
}
|
|
|
|
.navbar-mobile a:hover,
|
|
.navbar-mobile .active,
|
|
.navbar-mobile li:hover>a {
|
|
color: #ed502e;
|
|
}
|
|
|
|
.navbar-mobile .getstarted,
|
|
.navbar-mobile .getstarted:focus {
|
|
margin: 15px;
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul {
|
|
position: static;
|
|
display: none;
|
|
margin: 10px 20px;
|
|
padding: 10px 0;
|
|
z-index: 99;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
background: #fff;
|
|
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul li {
|
|
min-width: 200px;
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul a {
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul a i {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul a:hover,
|
|
.navbar-mobile .dropdown ul .active:hover,
|
|
.navbar-mobile .dropdown ul li:hover>a {
|
|
color: #ed502e;
|
|
}
|
|
|
|
.navbar-mobile .dropdown>.dropdown-active {
|
|
display: block;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Hero Section
|
|
--------------------------------------------------------------*/
|
|
#hero {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: rgba(4, 12, 21, 0.8);
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
#hero .carousel,
|
|
#hero .carousel-inner,
|
|
#hero .carousel-item,
|
|
#hero .carousel-item::before {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
#hero .carousel-item {
|
|
background-size: cover;
|
|
background-position: top center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
#hero .carousel-item::before {
|
|
content: "";
|
|
background-color: rgba(4, 12, 21, 0.5);
|
|
}
|
|
|
|
#hero .carousel-container {
|
|
display: flex;
|
|
align-items: center;
|
|
position: absolute;
|
|
bottom: 0;
|
|
top: 82px;
|
|
left: 50px;
|
|
right: 50px;
|
|
}
|
|
|
|
#hero h2 {
|
|
color: #fff;
|
|
margin: 0;
|
|
font-size: 48px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
#hero p {
|
|
animation-delay: 0.4s;
|
|
color: #fff;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
#hero p {
|
|
width: 50%;
|
|
}
|
|
}
|
|
|
|
#hero .carousel-inner .carousel-item {
|
|
transition-property: opacity;
|
|
background-position: center top;
|
|
}
|
|
|
|
#hero .carousel-inner .carousel-item,
|
|
#hero .carousel-inner .active.carousel-item-start,
|
|
#hero .carousel-inner .active.carousel-item-end {
|
|
opacity: 0;
|
|
}
|
|
|
|
#hero .carousel-inner .active,
|
|
#hero .carousel-inner .carousel-item-next.carousel-item-start,
|
|
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
|
|
opacity: 1;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
#hero .carousel-inner .carousel-item-next,
|
|
#hero .carousel-inner .carousel-item-prev,
|
|
#hero .carousel-inner .active.carousel-item-start,
|
|
#hero .carousel-inner .active.carousel-item-end {
|
|
left: 0;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
#hero .carousel-control-next-icon,
|
|
#hero .carousel-control-prev-icon {
|
|
background: none;
|
|
font-size: 30px;
|
|
line-height: 0;
|
|
width: auto;
|
|
height: auto;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border-radius: 50px;
|
|
transition: 0.3s;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
width: 54px;
|
|
height: 54px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#hero .carousel-control-next-icon:hover,
|
|
#hero .carousel-control-prev-icon:hover {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
#hero .carousel-indicators li {
|
|
cursor: pointer;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
border: 0;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50px;
|
|
opacity: 0.6;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
#hero .carousel-indicators li.active {
|
|
opacity: 1;
|
|
background: #ed502e;
|
|
}
|
|
|
|
#hero .btn-get-started {
|
|
font-family: "Raleway", sans-serif;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
letter-spacing: 1px;
|
|
display: inline-block;
|
|
padding: 14px 32px;
|
|
border-radius: 4px;
|
|
transition: 0.5s;
|
|
line-height: 1;
|
|
color: #fff;
|
|
animation-delay: 0.8s;
|
|
background: #ed502e;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
#hero .btn-get-started:hover {
|
|
background: #ef6445;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
#hero {
|
|
height: 100vh;
|
|
}
|
|
|
|
#hero .carousel-container {
|
|
text-align: center;
|
|
top: 74px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
#hero h2 {
|
|
font-size: 30px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
|
|
#hero .carousel-control-prev,
|
|
#hero .carousel-control-next {
|
|
width: 5%;
|
|
}
|
|
}
|
|
|
|
@media (max-height: 500px) {
|
|
#hero {
|
|
height: 120vh;
|
|
}
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Sections General
|
|
--------------------------------------------------------------*/
|
|
section {
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.section-bg {
|
|
background-color: #f6f9fd;
|
|
}
|
|
|
|
.section-title {
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.section-title h2 {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 0;
|
|
line-height: 1px;
|
|
margin: 0 0 5px 0;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
color: #aaaaaa;
|
|
font-family: "Poppins", sans-serif;
|
|
}
|
|
|
|
.section-title h2::after {
|
|
content: "";
|
|
width: 120px;
|
|
height: 1px;
|
|
display: inline-block;
|
|
background: #f38b74;
|
|
margin: 4px 10px;
|
|
}
|
|
|
|
.section-title p {
|
|
margin: 0;
|
|
margin: 0;
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
font-family: "Poppins", sans-serif;
|
|
color: #0f2f57;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# About
|
|
--------------------------------------------------------------*/
|
|
.about .content h3 {
|
|
font-weight: 600;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.about .content ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.about .content ul li {
|
|
padding-left: 28px;
|
|
position: relative;
|
|
}
|
|
|
|
.about .content ul li+li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.about .content ul i {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 2px;
|
|
font-size: 20px;
|
|
color: #ed502e;
|
|
line-height: 1;
|
|
}
|
|
|
|
.about .content p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.about .content .btn-learn-more {
|
|
font-family: "Raleway", sans-serif;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
letter-spacing: 1px;
|
|
display: inline-block;
|
|
padding: 12px 32px;
|
|
border-radius: 5px;
|
|
transition: 0.3s;
|
|
line-height: 1;
|
|
color: #ed502e;
|
|
animation-delay: 0.8s;
|
|
margin-top: 6px;
|
|
border: 2px solid #ed502e;
|
|
}
|
|
|
|
.about .content .btn-learn-more:hover {
|
|
background: #ed502e;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Counts
|
|
--------------------------------------------------------------*/
|
|
.counts {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.counts .count-box {
|
|
box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
|
|
padding: 30px;
|
|
width: 100%;
|
|
}
|
|
|
|
.counts .count-box i {
|
|
display: block;
|
|
font-size: 30px;
|
|
color: #ed502e;
|
|
float: left;
|
|
}
|
|
|
|
.counts .count-box span {
|
|
font-size: 42px;
|
|
line-height: 24px;
|
|
display: block;
|
|
font-weight: 700;
|
|
color: #0b2341;
|
|
margin-left: 50px;
|
|
}
|
|
|
|
.counts .count-box p {
|
|
padding: 30px 0 0 0;
|
|
margin: 0;
|
|
font-family: "Raleway", sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.counts .count-box a {
|
|
font-weight: 600;
|
|
display: block;
|
|
margin-top: 20px;
|
|
color: #164682;
|
|
font-size: 15px;
|
|
font-family: "Poppins", sans-serif;
|
|
transition: ease-in-out 0.3s;
|
|
}
|
|
|
|
.counts .count-box a:hover {
|
|
color: #2169c4;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Services
|
|
--------------------------------------------------------------*/
|
|
.services .icon-box {
|
|
text-align: center;
|
|
background: #fefefe;
|
|
box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
|
|
padding: 80px 20px;
|
|
transition: all ease-in-out 0.3s;
|
|
}
|
|
|
|
.services .icon-box .icon {
|
|
margin: 0 auto;
|
|
width: 64px;
|
|
height: 64px;
|
|
background: #ed502e;
|
|
border-radius: 5px;
|
|
transition: all 0.3s ease-out 0s;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 20px;
|
|
transform-style: preserve-3d;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.services .icon-box .icon i {
|
|
color: #fff;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.services .icon-box .icon::before {
|
|
position: absolute;
|
|
content: "";
|
|
left: -8px;
|
|
top: -8px;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: #f9c6bb;
|
|
border-radius: 5px;
|
|
transition: all 0.3s ease-out 0s;
|
|
transform: translateZ(-1px);
|
|
z-index: 1;
|
|
}
|
|
|
|
.services .icon-box h4 {
|
|
font-weight: 700;
|
|
margin-bottom: 15px;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.services .icon-box h4 a {
|
|
color: #0b2341;
|
|
}
|
|
|
|
.services .icon-box p {
|
|
line-height: 24px;
|
|
font-size: 14px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.services .icon-box:hover {
|
|
background: #ed502e;
|
|
border-color: #ed502e;
|
|
}
|
|
|
|
.services .icon-box:hover .icon {
|
|
background: #fff;
|
|
}
|
|
|
|
.services .icon-box:hover .icon i {
|
|
color: #ed502e;
|
|
}
|
|
|
|
.services .icon-box:hover .icon::before {
|
|
background: #f1775d;
|
|
}
|
|
|
|
.services .icon-box:hover h4 a,
|
|
.services .icon-box:hover p {
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
# product
|
|
--------------------------------------------------------------*/
|
|
.product .content h3 {
|
|
font-weight: 600;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.product .content ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.product .content ul li {
|
|
padding-left: 28px;
|
|
position: relative;
|
|
}
|
|
|
|
.product .content ul li+li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.product .content ul i {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 2px;
|
|
font-size: 20px;
|
|
color: #ed502e;
|
|
line-height: 1;
|
|
}
|
|
|
|
.product .content p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.product .content .btn-learn-more {
|
|
font-family: "Raleway", sans-serif;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
letter-spacing: 1px;
|
|
display: inline-block;
|
|
padding: 12px 32px;
|
|
border-radius: 5px;
|
|
transition: 0.3s;
|
|
line-height: 1;
|
|
color: #ed502e;
|
|
animation-delay: 0.8s;
|
|
margin-top: 6px;
|
|
border: 2px solid #ed502e;
|
|
}
|
|
|
|
.product .content .btn-learn-more:hover {
|
|
background: #ed502e;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
/* rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
|
|
.product {
|
|
padding: 0 0 40px 0;
|
|
}
|
|
|
|
.product .entry {
|
|
padding: 30px;
|
|
margin-bottom: 60px;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.product .entry .entry-img {
|
|
max-height: 440px;
|
|
margin: -30px -30px 20px -30px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.product .entry .entry-title {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
padding: 0;
|
|
margin: 0 0 20px 0;
|
|
}
|
|
|
|
.product .entry .entry-title a {
|
|
color: #3c4133;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.product .entry .entry-title a:hover {
|
|
color: #ed502e;
|
|
}
|
|
|
|
.product .entry .entry-meta {
|
|
margin-bottom: 15px;
|
|
color: #a3ab95;
|
|
}
|
|
|
|
.product .entry .entry-meta ul {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
list-style: none;
|
|
align-items: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.product .entry .entry-meta ul li + li {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.product .entry .entry-meta i {
|
|
font-size: 16px;
|
|
margin-right: 8px;
|
|
line-height: 0;
|
|
}
|
|
|
|
.product .entry .entry-meta a {
|
|
color: #777777;
|
|
font-size: 14px;
|
|
display: inline-block;
|
|
line-height: 1;
|
|
}
|
|
|
|
.product .entry .entry-content p {
|
|
line-height: 24px;
|
|
}
|
|
|
|
.product .entry .entry-content .read-more {
|
|
-moz-text-align-last: right;
|
|
text-align-last: right;
|
|
}
|
|
|
|
.product .entry .entry-content .read-more a {
|
|
display: inline-block;
|
|
background: #ed502e;
|
|
color: #fff;
|
|
padding: 6px 20px;
|
|
transition: 0.3s;
|
|
font-size: 14px;
|
|
border-radius: 4px;
|
|
border: 1px solid #ed502e;
|
|
}
|
|
|
|
.product .entry .entry-content .read-more a:hover {
|
|
background: #fff;
|
|
color: #ed502e;
|
|
display: inline-block;
|
|
}
|
|
|
|
.product .entry .entry-content h3 {
|
|
font-size: 22px;
|
|
margin-top: 30px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.product .entry .entry-content blockquote {
|
|
overflow: hidden;
|
|
background-color: #fafafa;
|
|
padding: 60px;
|
|
position: relative;
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.product .entry .entry-content blockquote p {
|
|
color: #444444;
|
|
line-height: 1.6;
|
|
margin-bottom: 0;
|
|
font-style: italic;
|
|
font-weight: 500;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.product .entry .entry-content blockquote::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 3px;
|
|
background-color: #3c4133;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.product .entry .entry-footer {
|
|
padding-top: 10px;
|
|
border-top: 1px solid #e6e6e6;
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
# Contact
|
|
--------------------------------------------------------------*/
|
|
.contact .info-wrap {
|
|
padding: 30px;
|
|
background: #fff;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.contact .info i {
|
|
font-size: 20px;
|
|
color: #ed502e;
|
|
float: left;
|
|
width: 44px;
|
|
height: 44px;
|
|
background: #eaf4fb;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 50px;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.contact .info h4 {
|
|
padding: 0 0 0 60px;
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
margin-bottom: 5px;
|
|
color: #384046;
|
|
}
|
|
|
|
.contact .info p {
|
|
padding: 0 0 0 60px;
|
|
margin-bottom: 0;
|
|
font-size: 14px;
|
|
color: #65747f;
|
|
}
|
|
|
|
.contact .info:hover i {
|
|
background: #ed502e;
|
|
color: #fff;
|
|
}
|
|
|
|
.contact .php-email-form {
|
|
width: 100%;
|
|
padding: 30px;
|
|
background: #fff;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.contact .php-email-form .form-group {
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.contact .php-email-form .validate {
|
|
display: none;
|
|
color: red;
|
|
margin: 0 0 15px 0;
|
|
font-weight: 400;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.contact .php-email-form .error-message {
|
|
display: none;
|
|
color: #fff;
|
|
background: #ed3c0d;
|
|
text-align: left;
|
|
padding: 15px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.contact .php-email-form .error-message br+br {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.contact .php-email-form .sent-message {
|
|
display: none;
|
|
color: #fff;
|
|
background: #18d26e;
|
|
text-align: center;
|
|
padding: 15px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.contact .php-email-form .loading {
|
|
display: none;
|
|
background: #fff;
|
|
text-align: center;
|
|
padding: 15px;
|
|
}
|
|
|
|
.contact .php-email-form .loading:before {
|
|
content: "";
|
|
display: inline-block;
|
|
border-radius: 50%;
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 0 10px -6px 0;
|
|
border: 3px solid #18d26e;
|
|
border-top-color: #eee;
|
|
animation: animate-loading 1s linear infinite;
|
|
}
|
|
|
|
.contact .php-email-form input,
|
|
.contact .php-email-form textarea {
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.contact .php-email-form input {
|
|
height: 44px;
|
|
}
|
|
|
|
.contact .php-email-form textarea {
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.contact .php-email-form button[type=submit] {
|
|
background: #ed502e
|
|
;
|
|
border: 0;
|
|
padding: 10px 24px;
|
|
color: #fff;
|
|
transition: 0.4s;
|
|
border-radius: 4px;
|
|
border: 1px solid #ed502e;
|
|
}
|
|
|
|
.contact .php-email-form button[type=submit]:hover {
|
|
background: #fff;
|
|
color: #ed502e;
|
|
display: inline-block;
|
|
}
|
|
|
|
@keyframes animate-loading {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Breadcrumbs
|
|
--------------------------------------------------------------*/
|
|
.breadcrumbs {
|
|
padding: 15px 0;
|
|
background: #f6f9fd;
|
|
min-height: 40px;
|
|
margin-top: 82px;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.breadcrumbs {
|
|
margin-top: 74px;
|
|
}
|
|
}
|
|
|
|
.breadcrumbs h2 {
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
color: #0b2341;
|
|
}
|
|
|
|
.breadcrumbs ol {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
list-style: none;
|
|
padding: 0 0 10px 0;
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.breadcrumbs ol li+li {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.breadcrumbs ol li+li::before {
|
|
display: inline-block;
|
|
padding-right: 10px;
|
|
color: #123a6d;
|
|
content: "/";
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Footer
|
|
--------------------------------------------------------------*/
|
|
#footer {
|
|
background: #071527;
|
|
padding: 0 0 30px 0;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
}
|
|
|
|
#footer .footer-top {
|
|
padding: 60px 0 30px 0;
|
|
}
|
|
|
|
#footer .footer-top .footer-info {
|
|
margin-bottom: 15px;
|
|
background: #05101e;
|
|
border-top: 4px solid #ed502e;
|
|
text-align: center;
|
|
padding: 30px 20px;
|
|
}
|
|
|
|
#footer .footer-top .footer-info h3 {
|
|
font-size: 24px;
|
|
margin: 0 0 20px 0;
|
|
padding: 2px 0 2px 0;
|
|
line-height: 1;
|
|
font-weight: 700;
|
|
}
|
|
|
|
#footer .footer-top .footer-info p {
|
|
font-size: 14px;
|
|
line-height: 24px;
|
|
margin-bottom: 0;
|
|
font-family: "Poppins", sans-serif;
|
|
}
|
|
|
|
#footer .footer-top .social-links a {
|
|
font-size: 18px;
|
|
display: inline-block;
|
|
color: #fff;
|
|
line-height: 1;
|
|
padding: 8px 0;
|
|
margin-right: 4px;
|
|
border-radius: 4px;
|
|
text-align: center;
|
|
width: 36px;
|
|
height: 36px;
|
|
transition: 0.3s;
|
|
background: #0a1e38;
|
|
}
|
|
|
|
#footer .footer-top .social-links a:hover {
|
|
color: #fff;
|
|
background: #ed502e;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#footer .footer-top h4 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
position: relative;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
#footer .footer-top .footer-links {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul i {
|
|
padding-right: 2px;
|
|
color: #ef6445;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul li {
|
|
padding: 10px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul li:first-child {
|
|
padding-top: 0;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul a {
|
|
color: #fff;
|
|
transition: 0.3s;
|
|
display: inline-block;
|
|
line-height: 1;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul a:hover {
|
|
color: #ef6445;
|
|
}
|
|
|
|
#footer .footer-top .footer-newsletter form {
|
|
margin-top: 30px;
|
|
background: #fff;
|
|
padding: 6px 10px;
|
|
position: relative;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#footer .footer-top .footer-newsletter form input[type=email] {
|
|
border: 0;
|
|
padding: 4px;
|
|
width: calc(100% - 110px);
|
|
}
|
|
|
|
#footer .footer-top .footer-newsletter form input[type=submit] {
|
|
position: absolute;
|
|
top: 0;
|
|
right: -2px;
|
|
bottom: 0;
|
|
border: 0;
|
|
background: none;
|
|
font-size: 16px;
|
|
padding:0;
|
|
max-width: 575px;
|
|
}
|
|
|
|
#footer .footer-top .footer-info {
|
|
margin: -20px 0 30px 0;
|
|
}
|
|
|