123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- :root {
- --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
- 0 1px 2px 0 rgba(0, 0, 0, 0.06);
- --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
- 0 2px 4px -1px rgba(0, 0, 0, 0.06);
- --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
- 0 4px 6px -2px rgba(0, 0, 0, 0.05);
- --color: #063f6f;
- --color2: #161d27;
- --color2-dark: #0f131a;
- }
-
- *,
- *::before,
- *::after {
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- list-style: none;
- list-style-type: none;
- text-decoration: none;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-rendering: optimizeLegibility;
- }
-
- html {
- scroll-behavior: smooth;
- height: -webkit-fill-available;
- }
-
- body {
- font-family: "Inter", sans-serif;
- font-size: 14px;
- font-weight: 400;
- line-height: 1.4;
- color: #000;
- background-color: #fff;
- transition: 0.35s;
- }
- body.darkmode {
- color: #fff;
- background-color: var(--color2-dark);
- }
-
- main {
- overflow: hidden;
- }
-
- a,
- button {
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- border: none;
- outline: none;
- background: none;
- }
-
- img,
- video {
- display: block;
- max-width: 100%;
- height: auto;
- -o-object-fit: cover;
- object-fit: cover;
- }
-
- img {
- image-rendering: -webkit-optimize-contrast;
- image-rendering: -moz-crisp-edges;
- image-rendering: crisp-edges;
- }
-
- @-webkit-keyframes slideLeft {
- 0% {
- opacity: 0;
- transform: translateX(100%);
- }
- 100% {
- opacity: 1;
- transform: translateX(0%);
- }
- }
-
- @keyframes slideLeft {
- 0% {
- opacity: 0;
- transform: translateX(100%);
- }
- 100% {
- opacity: 1;
- transform: translateX(0%);
- }
- }
- @-webkit-keyframes slideRight {
- 0% {
- opacity: 1;
- transform: translateX(0%);
- }
- 100% {
- opacity: 0;
- transform: translateX(100%);
- }
- }
- @keyframes slideRight {
- 0% {
- opacity: 1;
- transform: translateX(0%);
- }
- 100% {
- opacity: 0;
- transform: translateX(100%);
- }
- }
- .section {
- margin: 0 auto;
- padding: 6rem 0 2rem;
- }
-
- .container {
- /* max-width: 75rem; */
- height: auto;
- margin-inline: auto;
- padding-inline: 1.5rem;
- }
-
- .centered {
- text-align: center;
- vertical-align: middle;
- margin-bottom: 1rem;
- }
-
- .header {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: auto;
- z-index: 100;
- margin: 0 auto;
- background-color: #fff;
- box-shadow: var(--shadow-medium);
- }
- .darkmode .header {
- background-color: var(--color2);
- }
-
- .navbar {
- display: flex;
- flex-wrap: wrap;
- align-content: center;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100px;
- margin: 0 auto;
- }
- .navbar .navbar__left {
- display: flex;
- align-items: center;
- flex: 0 0 17%;
- }
- @media (max-width: 766px) {
- .navbar .navbar__left {
- flex: 0 0 auto;
- }
- }
- .navbar .navbar__center {
- display: flex;
- }
- @media (max-width: 766px) {
- .navbar .navbar__center {
- flex: 0 0 100%;
- order: 3;
- align-items: center;
- }
- }
- .navbar .navbar__right {
- display: flex;
- flex: 0 0 17%;
- align-items: center;
- justify-content: flex-end;
- -moz-column-gap: 1.5rem;
- column-gap: 1.5rem;
- }
- @media (max-width: 766px) {
- .navbar .navbar__right {
- flex: 0 0 auto;
- align-items: center;
- }
- .brand img {
- max-width: 200px;
- }
- }
-
- .brand {
- display: flex;
- align-items: center;
- order: 1;
- }
- .brand svg {
- width: 60px;
- height: 60px;
- }
-
-
- @media (max-width: 766px) {
- .menu {
- position: fixed;
- top: 0;
- left: 0;
- width: 350px;
- max-width: 85%;
- height: 100%;
- z-index: 100;
- overflow: hidden;
- background-color: #fff;
- transform: translate(-100%);
- transition: all 0.4s ease-in-out;
- }
- .menu.is-active {
- transform: translate(0%);
- }
- .darkmode .menu {
- background-color: var(--color2);
- }
- }
- .menu .menu__header {
- display: none;
- box-shadow: var(--shadow-medium);
- }
- @media (max-width: 766px) {
- .menu .menu__header {
- position: relative;
- top: 0;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- height: 4rem;
- z-index: 110;
- visibility: hidden;
- background: transparent;
- }
- .menu .menu__header.is-active {
- visibility: visible;
- background-color: #fff;
- }
- .menu .menu__header.is-active > .menu__arrow {
- display: flex;
- }
- .darkmode .menu .menu__header.is-active {
- background-color: var(--color2);
- }
- }
- @media (max-width: 766px) {
- .menu .menu__header .menu__arrow {
- display: none;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- width: 3rem;
- }
- .menu .menu__header .menu__arrow:hover i {
- color: var(--color);
- }
- .menu .menu__header .menu__arrow > i {
- font-size: 1.5rem;
- color: #000;
- transition: all 0.25s ease;
- }
- .darkmode .menu .menu__header .menu__arrow > i {
- color: #fff;
- }
- }
- @media (max-width: 766px) {
- .menu .menu__header .menu__title {
- cursor: pointer;
- font-weight: 500;
- text-transform: capitalize;
- color: #000;
- transition: all 0.25s ease;
- }
- .menu .menu__header .menu__title:hover {
- color: var(--color);
- }
- .darkmode .menu .menu__header .menu__title {
- color: #fff;
- }
- }
- @media (max-width: 766px) {
- .menu .menu__inner {
- height: 100%;
- margin-top: -3rem;
- overflow-y: auto;
- overflow-x: hidden;
- }
- }
- .menu .menu__inner .menu__item {
- position: static;
- display: inline-block;
- padding-right: 20px;
- padding: 15px 25px 15px 0;
- }
- .menu .menu__inner .menu__item:last-child {
- padding-right: 0;
- }
- .menu .menu__inner .menu__item:hover > .menu__link {
- color: var(--color);
- }
- .darkmode .menu .menu__inner .menu__item:hover > .menu__link {
- color: var(--color);
- }
- @media (max-width: 766px) {
- .menu .menu__inner .menu__item {
- display: block;
- padding: 0;
- }
- }
- @media (min-width: 767px) {
- .menu .menu__inner .menu__item:hover > .menu__link i {
- transform: rotate(-90deg);
- }
- }
- @media (min-width: 767px) {
- .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
- opacity: 1;
- visibility: visible;
- top: 95%;
- }
- }
- .menu .menu__inner .menu__item .menu__link {
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- font-size: 16px;
- font-weight: 500;
- color: #000;
- text-transform: capitalize;
- transition: all 0.25s ease;
- }
- @media (max-width: 766px) {
- .menu .menu__inner .menu__item .menu__link {
- justify-content: space-between;
- padding: 20px;
- }
- }
- .menu .menu__inner .menu__item .menu__link > i {
- margin-left: 5px;
- font-size: 1.35rem;
- transform: rotate(90deg);
- transition: 0.35s;
- }
- @media (max-width: 766px) {
- .menu .menu__inner .menu__item .menu__link > i {
- margin-left: 10px;
- transform: rotate(0deg);
- }
- }
- .darkmode .menu .menu__inner .menu__item .menu__link {
- color: #fff;
- }
-
- .submenu {
- position: absolute;
- z-index: 100;
- top: 110%;
- left: 50%;
- width: 100%;
- height: auto;
- padding: 20px 15px;
- border-radius: 0.25rem;
- border-top: 2px solid var(--color);
- background-color: #fff;
- box-shadow: var(--shadow-medium);
- opacity: 0;
- visibility: hidden;
- transition: all 0.35s ease-in-out;
- transform: translateX(-50%);
- }
- .darkmode .submenu {
- border-top: 2px solid var(--color);
- background-color: var(--color2);
- }
- @media (max-width: 766px) {
- .submenu {
- position: absolute;
- display: none;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- max-width: none;
- min-width: auto;
- margin: 0;
- padding: 100px 15px 0 15px;
- border-radius: 0;
- border-top: 0;
- box-shadow: none;
- opacity: 1;
- overflow-y: auto;
- visibility: visible;
- transform: translateX(0%);
- }
- .submenu.is-active {
- display: block;
- }
- }
- @media (min-width: 767px) {
- .submenu {
- -webkit-animation: none !important;
- animation: none !important;
- }
- }
- @media (min-width: 767px) {
- .submenu.megamenu__normal {
- left: 65%;
- max-width: 250px;
- width: 100%;
- height: auto;
- margin: 0 auto;
- }
- .submenu.megamenu__normal.process {
- left: 48%;
- }
- }
- @media (min-width: 767px) {
- .submenu.megamenu__text, .submenu.megamenu__image {
- display: flex;
- flex-wrap: wrap;
- max-width: 95%;
- height: auto;
- margin: 0 auto;
- justify-content: space-around;
- }
- }
- @media (min-width: 975px) {
- .submenu.megamenu__text, .submenu.megamenu__image {
- max-width: 992px;
- }
- }
- .submenu.megamenu__image .submenu__inner a {
- display: flex;
- flex-flow: column;
- align-items: center;
- }
- @media (max-width: 766px) {
- .submenu.megamenu__image .submenu__inner a {
- flex-flow: row;
- align-items: center;
- padding-bottom: 20px;
- }
- }
- .submenu.megamenu__image .submenu__inner a img {
- display: block;
- width: 100%;
- height: 150px;
- margin-bottom: 15px;
- -o-object-fit: cover;
- object-fit: cover;
- border-radius: 10px;
- }
- @media (max-width: 766px) {
- .submenu.megamenu__image .submenu__inner a img {
- width: 30%;
- height: 80px;
- margin-bottom: 0;
- margin-right: 15px;
- }
- }
- .submenu .submenu__inner {
- /* width: 25%; */
- padding: 0 15px;
- }
- @media (max-width: 766px) {
- .submenu .submenu__inner {
- width: 100%;
- padding: 0;
- }
- }
- .submenu .submenu__inner .submenu__title {
- font-size: 16px;
- font-weight: 500;
- color: var(--color);
- text-transform: uppercase;
- margin-left: 30px;
- transition: all 0.3s ease;
- }
- .darkmode .submenu .submenu__inner .submenu__title {
- color: var(--color);
- }
- @media (max-width: 766px) {
- .submenu .submenu__list {
- margin-bottom: 20px;
- }
- }
- .submenu .submenu__list li {
- display: block;
- line-height: 1;
- margin: 0 auto;
- }
- .submenu .submenu__list li a {
- display: inline-block;
- padding: 10px 0;
- line-height: 1.4;
- text-transform: capitalize;
- color: #000;
- transition: all 0.25s ease-in-out;
- }
- .submenu .submenu__list li a:hover {
- color: var(--color);
- }
- @media (max-width: 766px) {
- .submenu .submenu__list li a {
- display: block;
- }
- }
- .darkmode .submenu .submenu__list li a {
- color: #fff;
- }
- .darkmode .submenu .submenu__list li a:hover {
- color: var(--color);
- }
-
- .switch {
- position: relative;
- display: block;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- margin-right: 10px;
- }
- .switch .switch__light,
- .switch .switch__dark {
- position: absolute;
- top: 50%;
- left: 50%;
- transform-origin: center;
- transform: translate(-50%, -50%);
- transition: all 0.3s ease-in;
- }
- .switch .switch__light {
- font-size: 20px;
- visibility: visible;
- color: #000;
- }
- .darkmode .switch .switch__light {
- font-size: 0;
- visibility: hidden;
- }
- .switch .switch__dark {
- font-size: 0;
- visibility: hidden;
- color: #fff;
- }
- .darkmode .switch .switch__dark {
- font-size: 20px;
- visibility: visible;
- }
-
- .overlay {
- position: fixed;
- display: block;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 9;
- opacity: 0;
- visibility: hidden;
- background-color: rgba(0, 0, 0, 0.7);
- transition: all 0.45s ease-in-out;
- pointer-events: none;
- }
- @media (max-width: 766px) {
- .overlay {
- cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
- pointer-events: visible;
- }
- .overlay.is-active {
- opacity: 1;
- visibility: visible;
- }
- }
-
- .burger {
- position: relative;
- display: block;
- cursor: pointer;
- width: 25px;
- height: 15px;
- margin-right: 15px;
- opacity: 0;
- visibility: hidden;
- background: transparent;
- }
- @media (max-width: 766px) {
- .burger {
- opacity: 1;
- visibility: visible;
- }
- }
- .burger .burger-line {
- position: absolute;
- display: block;
- left: 0;
- width: 100%;
- height: 2px;
- opacity: 1;
- border-radius: 15px;
- background: #000;
- }
- .darkmode .burger .burger-line {
- background: #fff;
- }
- .burger .burger-line:nth-child(1) {
- top: 0px;
- }
- .burger .burger-line:nth-child(2) {
- top: 8px;
- width: 70%;
- }
- .burger .burger-line:nth-child(3) {
- top: 16px;
- }
-
-
|