123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- /* fonts */
- @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
- @import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
- @font-face {
- font-family: "Helvetica Neue";
- src: url('../fonts/helveticaneuecyr-light.otf');
- }
- @font-face {
- font-family: "AvenirNextLTPro-Demi";
- src: url('../fonts/AvenirNextLTPro-Demi.otf');
- }
- /* fonts */
- body{
- font-family: "Helvetica Neue", Arial, sans-serif;
- margin: 0;
- overflow-x: hidden;
- }
- h1,h2,h3{
- margin: 0;
- font-weight: bold;
- }
- h1 {
- font-size: 32px;
- letter-spacing: 1px;
- }
- h2 {
- font-size: 22px;
- }
- ul,li {
- margin: 0;
- padding: 0;
- list-style-type: none;
- }
- body * {
- box-sizing: border-box;
- }
- .preload-screen {
- position: absolute;
- width: 100%;
- line-height: 100vh;
- background: #1D1D1F;
- text-align: center;
- transition: all 0.6s cubic-bezier(.645,.045,.355,1);
- }
- .preload-screen img{
- vertical-align: middle;
- }
- .overlay {
- position: absolute;
- width: 100%;
- height: 100vh;
- background-color: rgba(29,29,31,.6);
- z-index: 3;
- opacity: 0;
- transition: opacity .6s cubic-bezier(.645,.045,.355,1);
- pointer-events: none;
- }
- .overlay-active {
- pointer-events: auto;
- opacity: 1;
- }
- /* header-line */
- .header-line {
- z-index: 2;
- position: -webkit-sticky;position: sticky;
- top: 0;
- width: 100%;
- height: 50px;
- background-color: #FFF;
- border-bottom: 1px solid rgb(222, 223, 224);
- }
- .header-line .fa-bars {
- display: inline-block;
- cursor: pointer;
- color: #222;
- width: 10%;
- padding-left: 25px;
- padding-top: 15px;
- text-align: left;
- font-size: 22px;
- }
- .header-line .logo {
- display: inline-block;
- font-family: "Helvetica Neue",Arial,sans-serif;
- font-weight: bolder;
- font-size: 25px;
- letter-spacing: 0.1em;
- width: 80%;
- text-align: center;
- }
- .header-line .undefined-btn {
- width: 80%;
- display: inline-block;
- }
- /* header-line */
- /* navmenu */
- .nav-menu {
- position: absolute;
- top: 0;
- left: 0;
- height: 100vh;
- width: 281px;
- background-color: #1D1D1F;
- padding: 50px;
- padding-top: 100px;
- transform: translateX(-281px);
- }
- .nav-menu span.nav-menu-title{
- display: block;
- color: #fff;
- font-size: 15px;
- margin-top: 10px;
- margin-bottom: 40px;
- }
- .nav-menu li {
- list-style-type: none;
- padding: 18px 0;
- transition: all .5s cubic-bezier(.39,.575,.565,1);
- cursor: pointer;
- }
- .nav-menu li:hover {
- transform: translateX(4px);
- }
- .nav-menu li:hover a{
- color: #fff;
- }
- .nav-menu li a, .nav-menu span{
- font-family: "AvenirNextLTPro-Demi", Arial, sans-serif;
- color: #9c9c9c;
- text-decoration: none;
- text-transform: uppercase;
- font-size: 12px;
- letter-spacing: .2em;
- }
- .nav-menu li.active-link a{
- color: #fff;
- }
- .nav-menu-icons-wrapper {
- position: absolute;
- display: -webkit-flex;
- display: -ms-flex;
- display: flex;
- bottom: 0;
- left: 0;
- width: 100%;
- border-top: 1px solid #333;
- }
- .nav-menu-icon {
- display: inline-block;
- width: 33.3%;
- }
- .nav-menu-icon a {
- display: block;
- font-size: 19px;
- color: #BCBCBC;
- text-align: center;
- padding: 15px 0;
- transition: all .5s ease;
- }
- .nav-menu-icon a:hover {
- background-color: #000;
- color: #fff;
- }
- .nav-menu-icon:nth-child(1) a {
- border-right: 1px solid #333;
- }
- .nav-menu-icon:nth-child(2){
- }
- .nav-menu-icon:nth-child(3) a {
- border-left: 1px solid #333;
- }
- .open-menu {
- transition: all 0.6s cubic-bezier(.645,.045,.355,1);
- transform: translateX(281px);
- }
- .close-menu {
- transition: all 0.6s cubic-bezier(.645,.045,.355,1);
- transform: translateX(0px);
- }
- /* navmenu */
- /* main-slider */
- .main-slider {
- height: 100vh;
- overflow: hidden;
- position: relative;
- }
- .main-slider-overlay {
- z-index: 1;
- position: absolute;
- width: 100%;
- height: 100%;
- background: rgba(0,0,0,.35);
- }
- .main-slider-back-overlay {
- z-index: -1;
- position: absolute;
- width: 100%;
- height: 100vh;
- opacity: 1;
- transition: all 3s ease;
- }
- .main-slider img {
- max-width: 100%;
- }
- .main-slider img.ng-enter, .main-slider img.ng-leave {
- transition: all 3s ease;
- }
- .main-slider img.ng-enter {
- transform: translateX(100%);
- }
- .main-slider img.ng-enter-active {
- transform: translateX(0);
- }
- .main-slider img.ng-leave {
- transform: translateX(0) translateY(-100.5%);
- }
- .main-slider img.ng-leave-active {
- transform: translateX(-100%) translateY(-100.5%);
- }
- /* .main-slider img.ng-leave-stagger {
- transition-delay: 0.2s;
- transition-duration: 0;
- } */
- .main-slider-content {
- position: absolute;
- z-index: 1;
- width: 100%;
- }
- .main-slider-text {
- text-align: center;
- font-size: 56px;
- color: #fff;
- z-index: 2;
- width: 1180px;
- margin: 0 auto;
- margin-top: 220px;
- margin-bottom: 60px;
- }
- .main-slider-text p {
- font-weight: bold;
- font-family: 'Montserrat', Arial, sans-serif;
- letter-spacing: 2px;
- }
- .main-slider-buttons {
- display: flex;
- justify-content: space-around;
- z-index: 2;
- border: red;
- width: 550px;
- margin: 0 auto;
- }
- .main-slider-buttons a {
- padding: 12px 32px;
- text-decoration: none;
- color: #fff;
- border: 1px solid rgba(255,255,255,.6);
- background: rgba(0,0,0,.5);
- font-size: 20px;
- font-weight: bold;
- font-family: 'Montserrat', Arial, sans-serif;
- transition: all ease .5s;
- }
- .main-slider-buttons a:hover {
- background: rgba(150,150,150,.5);
- }
- .main-slider-bars-wrapper {
- display: flex;
- margin: 0 auto;
- margin-top: 150px;
- width: 155px;
- justify-content: space-between;
- }
- .main-slider-bar {
- display: inline-block;
- width: 46px;
- height: 7px;
- background: #fff;
- cursor: pointer;
- opacity: 0.4;
- background: #fff;
- }
- .main-slider-bar-active {
- opacity: 0.7;
- }
- /* main-slider */
- /* main-page */
- .main-page {
- margin-top: -50px;
- }
- .main-page .about h1,h2 {
- font-weight: bolder;
- }
- .main-page .about {
- padding: 60px 0;
- /* background: linear-gradient(to bottom,rgb(244, 244, 246), rgb(260, 260, 260)); */
- background: rgb(241, 241, 245);
- }
- .main-page .about-wrapper {
- margin: 0 auto;
- max-width: 1180px;
- }
- .main-page .about h1 {
- text-align: center;
- color: #2A2627;
- margin-bottom: 80px;
- }
- .main-page .about h1::after {
- content: '';
- display: block;
- position: relative;
- top: 35px;
- left: 0;
- right: 0;
- margin: 0 auto;
- height: 2px;
- width: 100px;
- background-color: #000;
- }
- .main-page .about-description {
- text-align: center;
- margin-bottom: 35px;
- }
- .main-page .about-item-wrapper {
- display: flex;
- justify-content: space-between;
- }
- .main-page .about-item {
- width: 30%;
- height: 283px;
- position: relative;
- z-index: 1;
- perspective: 600px;
- }
- .main-page .about-item-description {
- font-family: 'Roboto', sans-serif;
- letter-spacing: 0.3px;
- }
- .main-page .about-item-first-side {
- text-align: center;
- background-color: #fff;
- padding: 40px 30px;
- box-shadow: 0 0 22px #cacaca;
- /* border: 1px solid rgba(29, 29, 31,.1); */
- position: absolute;
- transform: rotateY(0deg);
- /* background: linear-gradient(to top,rgb(252, 252, 252), rgb(260, 260, 260)); */
- /* background-color: #fff; */
- background: rgb(252, 252, 254);
- }
- .main-page .about-item-second-side {
- display: block;
- position: absolute;
- background-color: #1D1D1F;
- padding: 40px 30px;
- box-shadow: 0 0 22px #cacaca;
- width: 100%;
- height: 272px;
- transform: rotateY(90deg);
- text-align: center;
- cursor: pointer
- }
- .main-page .about-item-second-side span {
- display: inline-block;
- color: #fff;
- font-size: 29px;
- margin-top: 85px;
- transform: scale(-1, 1);
- opacity: 0;
- transition: all 1.6s ease;
- }
- .main-page .about-item:hover .about-item-first-side{
- transform: rotateY(90deg);
- }
- .main-page .about-item:hover .about-item-second-side{
- transform: rotateY(180deg);
- opacity: 1;
- }
- .main-page .about-item:hover .about-item-second-side span {
- opacity: 1;
- }
- .main-page .about-item-img {
- margin-bottom: 35px;
- }
- .main-page .about-item-img i {
- font-size: 50px;
- color: #1D1D1F;
- }
- .main-page .about-item h2 {
- color: #2A2627;
- margin-bottom: 25px;
- }
- .main-page .steps {
- padding: 60px 0;
- background: rgb(252, 252, 254);
- }
- .main-page .steps-wrapper {
- max-width: 860px;
- margin: 0 auto;
- }
- .main-page h1.steps-title {
- text-align: center;
- margin-bottom: 30px;
- }
- .main-page .steps-description {
- text-align: center;
- font-size: 18px;
- margin-bottom: 50px;
- }
- .main-page .steps-item-wrapper {
- display: flex;
- justify-content: space-around;
- flex-wrap: wrap;
- perspective: 600px;
- }
- .main-page .steps-item {
- opacity: 0;
- width: 42%;
- position: relative;
- margin-bottom: 60px;
- background: rgb(252, 252, 254);
- box-shadow: 0 0 10px #cacaca;
- transition: all 1s cubic-bezier(.645,.045,.355,1);
- }
- .main-page .steps-item:nth-child(1), .main-page .steps-item:nth-child(3) {
- transform: translateX(-200%);
- }
- .main-page .steps-item:nth-child(2), .main-page .steps-item:nth-child(4) {
- transform: translateX(200%);
- }
- /* .main-page .steps-item:hover {
- transform-origin: 50% 0%;
- transform: rotateX(8deg);
- box-shadow: 0 0 20px #cacaca;
- } */
- .main-page .steps-item-content {
- text-align: center;
- border: 2px solid rgba(29, 29, 31,.7);
- padding: 70px 40px 40px;
- font-size: 17px;
- font-family: 'Roboto', sans-serif;
- }
- .main-page .steps-item-number {
- position: absolute;
- background: rgba(29, 29, 31,.9);
- color: #fff;
- font-size: 17px;
- font-weight: bold;
- padding: 10px 25px;
- top: 20px;
- left: -10px;
- font-style: italic;
- box-shadow: 0 0 10px #cacaca;
- }
- .main-page .steps-item-number::after {
- content: '';
- display: block;
- position: absolute;
- top: -10px;
- left: 0;
- width: 0;
- height: 0;
- border-style: solid;
- border-width: 0 0 10px 10px;
- border-color: transparent transparent #000 transparent;
- }
- .main-page .steps-scroll-class .steps-item:nth-child(1), .steps-scroll-class .steps-item:nth-child(2) {
- transform: translateX(0);
- opacity: 1;
- }
- .main-page .steps-scroll-class-second .steps-item:nth-child(3), .steps-scroll-class-second .steps-item:nth-child(4){
- transform: translateX(0);
- opacity: 1;
- }
- .main-page .steps-scroll-class-hover .steps-item:hover {
- transition: all 0.7s ease;
- transform: translateX(0) rotateX(7deg);
- transform-origin: 50% 0%;
- box-shadow: 0 0 20px #cacaca;
- }
- .main-page .loyalty-programs {
- background: rgb(241, 241, 245);
- padding: 60px 0;
- }
- .main-page .loyalty-programs-wrapper {
- max-width: 1024px;
- margin: 0 auto;
- }
- .main-page h1.loyalty-programs-title {
- text-align: center;
- text-transform: uppercase;
- margin-bottom: 60px;
- }
- .main-page .loyalty-programs-item-wrapper {
- display: flex;
- justify-content: space-between;
- perspective: 1000px;
- }
- .main-page .loyalty-programs-item {
- width: 18%;
- text-align: center;
- position: relative;
- }
- .main-page .loyalty-programs-item-circle {
- }
- .main-page .loyalty-programs-item-circle-front {
- display: inline-block;
- padding: 30px;
- border-radius: 50%;
- background: rgb(252, 252, 254);
- transition: all 0.3s 0.3s ease-out;
- transform: rotateY(90deg);
- box-shadow: 0 0 5px #cacaca;
- }
- .main-page .loyalty-programs-scroll-class-hover .loyalty-programs-item-circle:hover .loyalty-programs-item-circle-front {
- transition: all 0.4s 0s ease;
- box-shadow: 0 0 10px #cacaca;
- transform: scale(1.05);
- }
- .main-page .loyalty-programs-item-circle-back {
- top: 0;
- position: absolute;
- left: 0;
- right: 0;
- margin: 0 auto;
- width: 113.09px;
- padding: 30px;
- border-radius: 50%;
- background: #1D1D1F;
- transition: all 0.3s ease-in;
- transform: rotateY(180deg);
- box-shadow: 0 0 5px #cacaca;
- }
- .main-page .loyalty-programs-item:nth-child(1) .loyalty-programs-item-circle-front{
- transition: all 0.3s 0.3s ease-out;
- }
- .main-page .loyalty-programs-item:nth-child(1) .loyalty-programs-item-circle-back{
- transition: all 0.3s ease-in;
- }
- .main-page .loyalty-programs-item:nth-child(2) .loyalty-programs-item-circle-front{
- transition: all 0.3s 0.4s ease-out;
- }
- .main-page .loyalty-programs-item:nth-child(2) .loyalty-programs-item-circle-back{
- transition: all 0.3s 0.1s ease-in;
- }
- .main-page .loyalty-programs-item:nth-child(3) .loyalty-programs-item-circle-front{
- transition: all 0.3s 0.5s ease-out;
- }
- .main-page .loyalty-programs-item:nth-child(3) .loyalty-programs-item-circle-back{
- transition: all 0.3s 0.2s ease-in;
- }
- .main-page .loyalty-programs-item:nth-child(4) .loyalty-programs-item-circle-front{
- transition: all 0.3s 0.6s ease-out;
- }
- .main-page .loyalty-programs-item:nth-child(4) .loyalty-programs-item-circle-back{
- transition: all 0.3s 0.3s ease-in;
- }
- .main-page .loyalty-programs-item:nth-child(5) .loyalty-programs-item-circle-front{
- transition: all 0.3s 0.7s ease-out;
- }
- .main-page .loyalty-programs-item:nth-child(5) .loyalty-programs-item-circle-back{
- transition: all 0.3s 0.4s ease-in;
- }
- .main-page .loyalty-programs-scroll-class .loyalty-programs-item-circle-front {
- transform: rotateY(0deg);
- }
- .main-page .loyalty-programs-scroll-class .loyalty-programs-item-circle-back {
- transform: rotateY(90deg);
- opacity: 0;
- }
- .main-page .loyalty-programs-item-description {
- margin-top: 30px;
- font-size: 17px;
- font-family: 'Roboto', sans-serif;
- }
- .main-page .loyalty-programs-item img {
- width: 50px;
- height: 50px;
- }
- /* main-page */
- /* footer */
- .footer {
- background-color: #1D1D1F;
- padding: 60px 0;
- }
- .footer-icons {
- display: flex;
- justify-content: space-between;
- margin: 0 auto;
- width: 180px;
- margin-bottom: 40px;
- }
- .footer-icon {
- width: 33.3%;
- cursor: pointer;
- }
- .footer-icon a {
- display: block;
- text-align: center;
- position: relative;
- }
- .footer-icon i {
- transition: all 0.3s ease;
- }
- .footer-icon i:nth-of-type(1) {
- font-size: 19px;
- color: #9c9c9c;
- }
- .footer-icon i:nth-of-type(2) {
- position: absolute;
- top: -11px;
- left: 0;
- right: 0;
- margin: 0 auto;
- width: 40px;
- height: 40px;
- border: 1.5px solid rgb(156,156,156);
- border-radius: 50%;
- }
- .footer-icon:hover i:.fa, {
- color: #fff!important;
- }
- .footer-icon:hover i:nth-of-type(2) {
- border-color: #F1F1F5;
- }
- .footer-navbar {
- text-align: center;
- margin-bottom: 30px;
- }
- .footer-navbar ul {
- display: inline-block;
- }
- .footer-navbar ul li {
- display: inline-block;
- padding: 0 10px;
- border-right: 1px solid rgba(156,156,156,.5);
- }
- .footer-navbar ul li:last-child {
- border-right: none;
- }
- .footer-navbar ul a {
- text-decoration: none;
- color: rgb(156,156,156);
- font-size: 18px;
- transition: all 0.3s ease;
- }
- .footer-navbar ul li:hover a {
- color: #F1F1F5;
- }
- .footer-copyright {
- color: rgb(156,156,156);
- font-family: 'Roboto', sans-serif;
- text-align: center;
- font-size: 14px;
- }
- /* footer */
|