292 lines
5.3 KiB
CSS
292 lines
5.3 KiB
CSS
html {
|
|
width: 100%;
|
|
/* overflow-x: hidden; */
|
|
scroll-behavior: smooth;
|
|
font-family: Helvetica;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
color: #222;
|
|
}
|
|
|
|
* {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--main-color: #1668e4;
|
|
--dark-color: #201e1e;
|
|
--sec-color-3: #688e26;
|
|
--sec-color-4: #adb2d3;
|
|
--sec-color-5: #c2a878;
|
|
--light-color-1: #ddd;
|
|
--transparent-white: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
margin: 0px;
|
|
padding: 40px;
|
|
top: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
background-color: var(--dark-color);
|
|
color: white;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: white;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--sec-color-2);
|
|
}
|
|
|
|
button {
|
|
padding: 10px 25px;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: inherit;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
hr {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: var(--dark-color);
|
|
/* background-color: #c52532; */
|
|
color: white;
|
|
border-color: var(--transparent-white);
|
|
}
|
|
|
|
form * {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
}
|
|
|
|
header {
|
|
z-index: 1000000;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 52px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* ################################################# -- Sliders */
|
|
aside,
|
|
.side-nav-block {
|
|
scrollbar-width: none;
|
|
}
|
|
/* width */
|
|
aside::-webkit-scrollbar,
|
|
.side-nav-block::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
/* Track */
|
|
aside::-webkit-scrollbar-track,
|
|
.side-nav-block::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
}
|
|
|
|
/* Handle */
|
|
aside::-webkit-scrollbar-thumb,
|
|
.side-nav-block::-webkit-scrollbar-thumb {
|
|
background: #dbe1eb;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
aside::-webkit-scrollbar-thumb:hover,
|
|
.side-nav-block::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
|
|
/*############################################# -- Common Actions */
|
|
|
|
.visible {
|
|
display: flex;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.fixed {
|
|
position: fixed;
|
|
}
|
|
|
|
.absolute {
|
|
position: absolute;
|
|
}
|
|
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
|
|
.no-pointer-events {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.pointer-events {
|
|
pointer-events: visible;
|
|
}
|
|
|
|
.spacer {
|
|
display: block;
|
|
width: 100%;
|
|
height: 80px;
|
|
}
|
|
|
|
/*############################################# -- Header */
|
|
|
|
header {
|
|
color: white;
|
|
}
|
|
|
|
.logo-link-block h1 {
|
|
font-size: 28px;
|
|
margin: 0;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
nav a {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
nav a:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.active-page {
|
|
opacity: 1;
|
|
border-bottom: 2px solid white;
|
|
}
|
|
|
|
/*############################################# -- Shuffled Text */
|
|
|
|
#__next {
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0;
|
|
animation-name: shuffle;
|
|
animation-timing-function: ease-out;
|
|
animation-duration: 1s;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
.shuffled-text-span span {
|
|
animation-name: shuffle;
|
|
animation-timing-function: ease-out;
|
|
animation-delay: 0.5s;
|
|
}
|
|
|
|
@keyframes shuffle {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
/*############################################# -- Hero Section */
|
|
.hero-sub-text {
|
|
font-size: 24px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.hero-ctas-section {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 20px;
|
|
gap: 20px;
|
|
}
|
|
|
|
.hero-ctas-section a {
|
|
padding: 10px 25px;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: inherit;
|
|
color: var(--dark-color);
|
|
background-color: white;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.hero-ctas-section a:hover {
|
|
background-color: var(--dark-color);
|
|
color: white;
|
|
border-color: var(--transparent-white);
|
|
}
|
|
|
|
/*############################################# -- 404 page */
|
|
.not-found-page-wrapper {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/*############################################# -- Contact Forms */
|
|
form {
|
|
margin-top: 40px;
|
|
max-width: 1000px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
input,
|
|
textarea {
|
|
padding: 15px 20px;
|
|
background-color: transparent;
|
|
color: white;
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
width: 100%;
|
|
resize: none;
|
|
}
|
|
|
|
/* ###############################################################################################
|
|
##################################################################################################
|
|
##################################################################################################
|
|
##################################################################################################
|
|
##################################### -- Mobile Styles -- ########################################
|
|
##################################################################################################
|
|
##################################################################################################
|
|
##################################################################################################
|
|
############################################################################################### */
|
|
|
|
@media (max-width: 1200px) {
|
|
}
|
|
|
|
@media (max-width: 990px) {
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
}
|
|
|
|
@media (max-width: 350px) {
|
|
}
|