339 lines
5.7 KiB
SCSS
339 lines
5.7 KiB
SCSS
/* 1.1 Theme Reset Style */
|
|
html {
|
|
font-size: $base-font-size + px;
|
|
}
|
|
:root {
|
|
scroll-behavior: unset;
|
|
}
|
|
body {
|
|
font-family: $base-font;
|
|
color:$body-color;
|
|
background-color: $body-bg-color;
|
|
font-size: 18px;
|
|
font-size: calc-rem-value(18);
|
|
overflow-x: hidden;
|
|
@include media-query( 767px ) {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-size: 18px;
|
|
color: $body-color;
|
|
line-height: 1.8em;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
color: $heading-color;
|
|
font-family: $heading-font;
|
|
font-weight: 500;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
@include transition-time(0.2s);
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.hidden{
|
|
display: none;
|
|
}
|
|
|
|
.sr-only {
|
|
display: none !important;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
/* 1.2 Global Elements */
|
|
.App {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.page-wrapper {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wow {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.fi:before {
|
|
margin: 0;
|
|
}
|
|
|
|
.section-padding {
|
|
padding: 120px 0;
|
|
|
|
@include media-query( 991px ) {
|
|
padding: 90px 0;
|
|
}
|
|
@include media-query( 767px ) {
|
|
padding: 90px 0;
|
|
}
|
|
}
|
|
|
|
|
|
.section-padding-top-bottom{
|
|
|
|
padding-top: 120px !important;
|
|
padding-bottom: 120px !important;
|
|
|
|
}
|
|
|
|
.section-padding-top{
|
|
|
|
padding-top: 120px !important;
|
|
|
|
}
|
|
|
|
.section-padding-bottom{
|
|
|
|
padding-bottom: 120px !important;
|
|
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
.section-padding-top .section-padding-top .section {
|
|
padding-top: 60px;
|
|
padding-bottom: 60px;
|
|
padding: 60px 0px 60px 0px;
|
|
}
|
|
}
|
|
|
|
.pt-100 {
|
|
padding-top: 100px;
|
|
|
|
@include media-query( 991px ) {
|
|
padding-top: 80px;
|
|
}
|
|
@include media-query( 767px ) {
|
|
padding-top: 70px;
|
|
}
|
|
}
|
|
|
|
|
|
/*** contact form error handling ***/
|
|
.contact-validation-active {
|
|
.error-handling-messages {
|
|
width: 100% !important;
|
|
margin-top: 15px !important;
|
|
}
|
|
|
|
label.error {
|
|
color: red;
|
|
font-size: calc-rem-value(14);
|
|
font-weight: normal;
|
|
margin: 5px 0 0 0;
|
|
text-align: left;
|
|
display: block;
|
|
}
|
|
|
|
#c-loader,
|
|
#loader {
|
|
display: none;
|
|
margin-top: 10px;
|
|
|
|
i {
|
|
font-size: 30px;
|
|
font-size: calc-rem-value(30);
|
|
color: $theme-primary-color;
|
|
display: inline-block;
|
|
-webkit-animation: rotating linear 2s infinite;
|
|
animation: rotating linear 2s infinite;
|
|
}
|
|
}
|
|
|
|
#success,
|
|
#c-success,
|
|
#c-error,
|
|
#error {
|
|
width: 100%;
|
|
color: $white;
|
|
padding: 5px 10px;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
display: none;
|
|
|
|
@include media-query(767px) {
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
#c-success,
|
|
#success {
|
|
background-color: lighten(green, 5%);
|
|
border-left: 5px solid green;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#c-error,
|
|
#error {
|
|
background-color: lighten(red, 5%);
|
|
border-left: 5px solid red;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes rotating {
|
|
from {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes rotating {
|
|
from {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.rotating {
|
|
-webkit-animation: rotating 5s alternate infinite;
|
|
animation: rotating 5s alternate infinite;
|
|
}
|
|
|
|
|
|
/*** back to top **/
|
|
.back-to-top {
|
|
background-color: transparentize($theme-primary-color, 0.3);
|
|
width: 45px;
|
|
height: 45px;
|
|
line-height: 45px;
|
|
border: 2px solid $theme-primary-color;
|
|
border-radius: 45px;
|
|
text-align: center;
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 999;
|
|
right: 15px;
|
|
bottom: 15px;
|
|
@include transition-time(0.2s);
|
|
|
|
@include media-query(991px) {
|
|
width: 35px;
|
|
height: 35px;
|
|
line-height: 35px;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: $theme-primary-color;
|
|
}
|
|
}
|
|
|
|
.back-to-top i {
|
|
font-size: 18px;
|
|
font-size: calc-rem-value(18);
|
|
color: #fff;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
@include center-by-translating();
|
|
}
|
|
|
|
|
|
/** for popup image ***/
|
|
.mfp-wrap {
|
|
background-color: transparentize($black, 0.1);
|
|
z-index: 99999;
|
|
}
|
|
|
|
.mfp-with-zoom .mfp-container,
|
|
.mfp-with-zoom.mfp-bg {
|
|
opacity: 0;
|
|
-webkit-backface-visibility: hidden;
|
|
-webkit-transition: all 0.3s ease-out;
|
|
-moz-transition: all 0.3s ease-out;
|
|
-o-transition: all 0.3s ease-out;
|
|
transition: all 0.3s ease-out;
|
|
}
|
|
|
|
.mfp-with-zoom.mfp-ready .mfp-container {
|
|
opacity: 1;
|
|
}
|
|
.mfp-with-zoom.mfp-ready.mfp-bg {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.mfp-with-zoom.mfp-removing .mfp-container,
|
|
.mfp-with-zoom.mfp-removing.mfp-bg {
|
|
opacity: 0;
|
|
}
|
|
|
|
/*** for fancybox video ***/
|
|
.fancybox-overlay {
|
|
background: rgba(0, 0, 0, 0.9);
|
|
z-index: 9999 !important;
|
|
}
|
|
|
|
.fancybox-wrap {
|
|
z-index: 99999 !important;
|
|
}
|
|
|
|
|
|
|
|
ul.smothscroll {
|
|
position: fixed;
|
|
bottom: 25px;
|
|
right:30px;
|
|
list-style: none;
|
|
z-index: 99;
|
|
}
|
|
ul.smothscroll a {
|
|
// background-color: rgba(255, 74, 23, 0.7);
|
|
background-color: rgba(193, 32, 38, 1);
|
|
width: 45px;
|
|
height: 45px;
|
|
line-height: 45px;
|
|
border-radius:50%;
|
|
display: block;
|
|
text-align: center;
|
|
color: #fff;
|
|
background-size: 200%,1px;
|
|
background-position: 0;
|
|
border: 2px solid #ff4a17;
|
|
}
|
|
ul.smothscroll a:hover {
|
|
background-color: rgba(193, 32, 38, 1);
|
|
color: #fff;
|
|
}
|
|
|
|
@media(max-width:767px){
|
|
ul.smothscroll a {
|
|
width: 30px;
|
|
height: 30px;
|
|
line-height: 25px;
|
|
}
|
|
}
|