|
- @font-face {
- src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype");
- font-family: archivo-black;
- font-style: normal;
- }
- @font-face {
- src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
- font-family: open-sans;
- font-weight: bolder;
- }
- @font-face {
- src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
- font-family: open-sans;
- font-weight: bold;
- }
- @font-face {
- src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
- font-family: open-sans;
- font-style: normal;
- }
- @font-face {
- src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
- font-family: open-sans;
- font-weight: normal;
- font-style: italic;
- }
- *, *:before, *:after {
- -webkit-tap-highlight-color: transparent;
- box-sizing: border-box;
- }
-
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- a {
- color: inherit;
- text-decoration: none;
- }
-
- html, body {
- font-family: open-sans;
- }
- html.non-scrollable, body.non-scrollable {
- overflow: hidden;
- }
-
- mark {
- background-color: transparent;
- }
-
- .temp-intro,
- #footer {
- background-color: #403e41;
- display: flex;
- justify-content: space-between;
- padding: 15px 0;
- color: #808285;
- font-size: 14px;
- }
- .temp-intro .temp-name,
- #footer .temp-name {
- margin-left: 125px;
- }
- @media screen and (max-width: 1024px) {
- .temp-intro .temp-name,
- #footer .temp-name {
- margin-left: 20px;
- }
- }
- .temp-intro .temp-name mark,
- #footer .temp-name mark {
- color: white;
- font-weight: bold;
- letter-spacing: 0.8px;
- }
- .temp-intro .temp-social,
- #footer .temp-social {
- display: flex;
- margin-right: 125px;
- }
- @media screen and (max-width: 1024px) {
- .temp-intro .temp-social,
- #footer .temp-social {
- margin-right: 20px;
- }
- }
- .temp-intro .temp-social li,
- #footer .temp-social li {
- list-style: none;
- align-self: center;
- padding: 0 10px;
- font-size: 12px;
- }
- .temp-intro small,
- #footer small {
- font-size: 14px;
- }
- @media screen and (max-width: 1024px) {
- .temp-intro small,
- #footer small {
- display: block;
- text-align: center;
- padding: 5px 0;
- }
- }
- .temp-intro small:first-child,
- #footer small:first-child {
- margin-left: 125px;
- }
- @media screen and (max-width: 1024px) {
- .temp-intro small:first-child,
- #footer small:first-child {
- margin: 0;
- }
- }
- .temp-intro small:last-child,
- #footer small:last-child {
- margin-right: 125px;
- }
- @media screen and (max-width: 1024px) {
- .temp-intro small:last-child,
- #footer small:last-child {
- margin: 0;
- }
- }
- .temp-intro small mark,
- #footer small mark {
- color: #d2d4d5;
- }
-
- @media screen and (max-width: 1024px) {
- #footer {
- display: block;
- }
- }
-
- #page-header {
- height: 20vh;
- position: sticky;
- display: flex;
- top: 0;
- left: 0;
- background-color: white;
- z-index: 5;
- transition: height 500ms linear;
- }
- @media screen and (max-width: 1024px) {
- #page-header {
- height: 10vh;
- }
- }
- #page-header.minimize {
- height: 10vh;
- padding: 10px 0;
- }
- #page-header .inner-header {
- width: 80%;
- display: flex;
- justify-content: space-between;
- margin: 0 auto;
- align-self: center;
- }
- @media screen and (max-width: 1024px) {
- #page-header .inner-header {
- width: 100%;
- justify-content: space-around;
- }
- }
- #page-header .temp-brand {
- display: flex;
- align-self: center;
- width: 20%;
- justify-content: center;
- }
- #page-header .temp-brand figure {
- margin-right: 15px;
- }
- #page-header .temp-brand figure img {
- width: 100%;
- }
- #page-header .temp-brand h1 {
- font-size: 36px;
- align-self: center;
- letter-spacing: -0.65px;
- font-family: "Archivo Black", sans-serif;
- }
- #page-header .temp-brand h1 mark {
- color: #28aae2;
- }
- #page-header #desktop-navigation-menu {
- width: 55%;
- align-self: center;
- font-size: 16px;
- }
- @media screen and (max-width: 1024px) {
- #page-header #desktop-navigation-menu {
- display: none;
- }
- }
- #page-header #desktop-navigation-menu ul {
- display: flex;
- justify-content: space-between;
- }
- #page-header #desktop-navigation-menu ul li {
- list-style: none;
- color: #808285;
- }
- #page-header #desktop-navigation-menu ul li.active {
- color: #28aae2;
- }
- #page-header #mobile-hamburger-menu {
- display: none;
- position: relative;
- height: 25px;
- }
- #page-header #mobile-hamburger-menu.active .icon-line {
- transform: rotate(45deg) translate(2px, 10px);
- }
- #page-header #mobile-hamburger-menu.active .icon-line:after {
- transform: rotate(-95deg) translate(20px, 2px);
- }
- #page-header #mobile-hamburger-menu.active .icon-line:before {
- opacity: 0;
- }
- @media screen and (max-width: 1024px) {
- #page-header #mobile-hamburger-menu {
- display: block;
- align-self: center;
- }
- }
- #page-header #mobile-hamburger-menu .icon-line {
- display: inline-block;
- width: 35px;
- height: 5px;
- background-color: black;
- position: absolute;
- transition: transform 500ms ease;
- }
- #page-header #mobile-hamburger-menu .icon-line:before, #page-header #mobile-hamburger-menu .icon-line:after {
- content: "";
- display: inline-block;
- width: 35px;
- height: 5px;
- position: absolute;
- }
- #page-header #mobile-hamburger-menu .icon-line:before {
- top: 200%;
- background-color: #28aae2;
- transition: opacity 500ms ease;
- }
- #page-header #mobile-hamburger-menu .icon-line:after {
- top: 400%;
- background-color: black;
- transition: transform 500ms ease;
- }
-
- #mobile-nav-menu {
- display: none;
- }
- @media screen and (max-width: 1024px) {
- #mobile-nav-menu {
- display: block;
- height: 0;
- overflow: hidden;
- position: sticky;
- top: 10vh;
- z-index: 5;
- background-color: white;
- transition: height 500ms ease;
- }
- #mobile-nav-menu.show {
- height: 90vh;
- }
- #mobile-nav-menu.show ul {
- margin-top: 50px;
- }
- #mobile-nav-menu.show li {
- opacity: 1;
- }
- #mobile-nav-menu ul li {
- list-style: none;
- font-size: 36px;
- text-align: center;
- padding: 10px 0;
- opacity: 0;
- transition: opacity 500ms ease;
- }
- }
-
- .temp-contact-info {
- background-color: #fafafa;
- border-top: 1px solid #d2d4d5;
- color: #57595b;
- }
- .temp-contact-info ul {
- display: flex;
- width: 80%;
- margin: 0 auto;
- }
- @media screen and (max-width: 1024px) {
- .temp-contact-info ul {
- width: 100%;
- }
- }
- .temp-contact-info ul .owl-item img {
- width: 10%;
- }
- .temp-contact-info ul li {
- list-style: none;
- border-left: 2px solid #d2d4d5;
- font-size: 14px;
- display: flex;
- justify-content: center;
- width: 35%;
- padding: 20px 0;
- }
- @media screen and (max-width: 1024px) {
- .temp-contact-info ul li {
- width: 40%;
- }
- .temp-contact-info ul li .contact-content {
- display: none;
- }
- .temp-contact-info ul li img {
- width: 35%;
- }
- .temp-contact-info ul li.active {
- width: 100%;
- }
- .temp-contact-info ul li.active img {
- width: 10%;
- }
- .temp-contact-info ul li.active .contact-content {
- display: block;
- }
- }
- .temp-contact-info ul li:last-child {
- border-right: 2px solid #d2d4d5;
- }
- .temp-contact-info ul li img {
- width: 10%;
- align-self: center;
- }
- @media screen and (max-width: 1024px) {
- .temp-contact-info ul li img {
- width: 30%;
- }
- }
- .temp-contact-info ul li .contact-content {
- margin-left: 20px;
- color: #808285;
- }
- .temp-contact-info ul li .contact-content span {
- display: block;
- }
- .temp-contact-info ul li .contact-content span:last-child {
- color: #28aae2;
- }
- .temp-contact-info ul li .contact-content a {
- display: block;
- color: #28aae2;
- }
-
- /*# sourceMappingURL=common.css.map */
|