|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964 |
- @import "_variables";
- @import "_reset";
- @import "_mixins";
- @import "_breakpoints";
-
- #menu {
- position: absolute;
- opacity: 0;
-
- &:checked {
- +.hamberger-menu {
- .patty {
- background-color: white;
-
- &::before {
- transform: rotate(-45deg);
- top: 0;
- }
-
- &::after {
- transform: rotate(45deg);
- top: 0;
- }
- }
- }
-
- ~.nav-holder {
- height: 45vh;
- }
- }
-
-
- }
-
- header {
- @include container();
- @include flex-center();
- padding: 2rem;
- border-right: $verticle-line;
- justify-content: space-between;
- position: relative;
-
- @include sm {
- @include container-sm();
- @include flex-column-baseline();
- @include flex-left();
- padding: 2rem;
- padding-bottom: 0;
- padding-right: 0;
- margin-right: 1rem;
- width: auto;
- margin-left: auto
- }
-
- .logo-holder {
- @include flex-left();
- flex-direction: column;
- }
-
- .logo-holder h1 {
- text-transform: uppercase;
- font-size: 3rem;
-
- @include sm {
- font-size: 2rem
- }
- }
-
- .search-lang-nav-holder {
- @include flex-right();
- flex-direction: column;
-
- @include sm {
- @include flex-column-center();
- width: 100%;
- }
-
- .search-lang-holder {
- padding-bottom: 3rem;
- display: flex;
-
- @include sm {
- @include flex-column-center();
- width: 100%;
- padding-bottom: 0;
- }
-
-
- .header-form {
- @include flex-right();
-
- @include sm {
- @include flex-center();
- margin: 2rem 0;
- width: 100%;
- }
-
-
- .search {
- border: 1px solid $lite-mid-gray;
- margin-right: 1rem;
- border-radius: 0.3rem;
-
- @include sm {
- width: 80%;
- @include flex-row-center;
- }
-
-
- input {
- border: none;
- background-color: transparent;
- padding: 0.2rem 0.5rem;
- outline: transparent;
- width: 6rem;
-
- @include sm {
- width: 100%;
- padding: 1rem;
- }
- }
-
- .search-button {
- border: none;
- background-color: transparent;
- padding: 0.2rem;
-
- @include sm {
- padding: 0.5rem;
- }
-
- img {
- width: 1rem;
-
- @include sm {
- width: 1.5rem;
- }
- }
- }
- }
-
- .lang select {
- padding: 0.2rem;
- margin: 0;
- background-color: transparent;
- border: none;
- }
- }
- }
-
-
-
- .hamberger-menu {
- display: none;
- cursor: pointer;
-
- @include sm {
- display: block;
- position: absolute;
- top: 3rem;
- right: 2rem;
-
- .patty {
- width: 1rem;
- height: 0.2rem;
- background-color: black;
- position: relative;
- transition: transform 0.3s;
-
- &::before {
- content: "";
- position: absolute;
- top: -0.5rem;
- left: -0.25rem;
- width: 1.5rem;
- height: 0.2rem;
- background-color: black;
- transition: transform 0.3s;
- }
-
- &::after {
- content: "";
- position: absolute;
- top: 0.5rem;
- left: -0.25rem;
- width: 1.5rem;
- height: 0.2rem;
- background-color: black;
- transition: transform 0.3s;
- }
- }
- }
-
-
-
- }
-
- .hamberger-menu.active {
- .patty {
- color: white;
-
- &::before {
- transform: translateY(2rem) rotate(45deg);
- }
-
- &::after {
- transform: translateY(2rem) rotate(-45deg);
- }
- }
- }
-
- .nav-holder {
- display: flex;
-
- @include sm {
- width: 100% + 5%;
- background-color: white;
- height: 0;
- overflow: hidden;
- text-align: center;
- position: absolute;
- z-index: 1;
- top: 12.5rem;
- left: 0;
- @include flex-column-center();
- box-shadow: 0rem 1rem 1rem rgba(0, 0, 0, 0.473);
- transition: height 1s;
- }
-
- a {
- margin-right: 3rem;
- text-decoration: none;
- color: rgb(51, 51, 51);
-
- @include sm {
- margin: 2rem 0;
- width: auto;
- }
-
- &:last-child {
- margin: 0;
-
- @include sm {
- margin: 2rem 0;
- width: auto;
- }
- }
- }
-
- a.active {
- position: relative;
-
- &::after {
- content: "";
- height: 3px;
- width: 100%;
- background-color: rgb(51, 51, 51);
- position: absolute;
- bottom: -7px;
- left: 0;
- }
-
- }
-
- }
- }
- }
-
-
- .carousel-container {
- width: 100%;
- background-image: -moz-linear-gradient(white 25%, rgb(245, 245, 245) 25%);
-
- .carousel-holder,
- .news-holder {
- @include container();
- @include flex-center();
- border-left: $verticle-line;
-
- @include sm {
- @include container-sm();
- }
-
- .carousel {
- position: relative;
-
- @include sm {
- width: 100%;
- }
-
- .slider-count {
- position: absolute;
- left: -4.3%;
- rotate: -90deg;
- top: 54vh;
- z-index: 1;
-
- @include sm {
- left: -12%;
- }
-
- .count {
- display: none;
-
- span {
- font-size: 2rem;
- }
- }
-
- .count.active {
- display: block;
- }
-
- }
-
- .slider {
- width: 98%;
- position: relative;
- left: 2%;
-
- .slide {
- width: 100%;
- display: none;
-
- .slide-image {
- width: 90%;
- height: 60vh;
- overflow: hidden;
-
- @include sm {
- width: 100%;
- height: auto;
- }
-
- img {
- @include sm {
- width: 100%;
- height: 60vh;
- object-fit: cover;
- }
- }
- }
-
- .slider-text {
- position: absolute;
- top: 10%;
- right: 0;
- width: 25%;
- font-size: 5rem;
- font-weight: 900;
- text-transform: uppercase;
-
- @include sm {
- width: 120%;
- rotate: -90deg;
- font-size: 3.3rem;
- top: 15%;
- right: -48%;
- }
-
- &::after {
- content: "";
- width: 100%;
- height: 10px;
- background-color: black;
- position: absolute;
- bottom: -5%;
- left: 0;
- }
- }
-
- .slider-content {
- @include flex-column-baseline();
- margin: 5% 0;
-
- .slider-date {
- font-size: 1rem;
- margin-bottom: 2%;
-
- @include sm {
- margin-left: 2rem;
- margin-bottom: 1rem;
- }
- }
-
- .slider-description {
- @include flex-row-baseline();
-
- @include sm {
- @include flex-column-center();
- position: relative;
- }
-
- p {
- margin-right: 3rem;
- width: 25%;
- font-weight: lighter;
-
- @include sm {
- @include flex-row-baseline();
- width: auto;
- margin: 1rem 2rem;
- margin-bottom: 0;
- }
-
- &:nth-child(1) {
- font-weight: bold;
- @include flex-column-baseline();
-
- @include sm {
- @include flex-row-baseline();
- margin-top: 20vh;
- }
- }
-
- &:nth-child(3) {
- margin-bottom: 5rem;
- }
-
- &:nth-child(4) {
- margin-right: 0;
- padding: 2%;
- padding-right: 6%;
- border: 5px solid black;
- font-size: 2.4rem;
- font-weight: 900;
-
- @include sm {
- position: absolute;
- top: 0;
- margin-right: 2rem;
- }
- }
- }
-
- .more {
- @include black-button();
- margin-top: 70%;
-
- @include sm {
- margin: auto;
- padding: 1rem 0.5rem;
- width: 80%;
- margin-left: 0;
- position: absolute;
- bottom: 0;
- }
- }
- }
-
-
- }
- }
-
- .slide.active {
- display: block;
- }
-
- }
-
-
- .slider-control {
- position: absolute;
- right: 9.7%;
- top: 54.8vh;
- display: flex;
-
- @include sm {
- top: 54.1vh;
- right: 0;
- }
-
- button {
- margin: 0;
- }
-
- .previous,
- .next {
- padding: 0.5rem 1.5rem;
- margin: 0;
- font-size: 2rem;
- border-radius: 0;
- border: none;
- background-color: white;
-
- &:hover {
- background-color: #dfdfdf;
- }
- }
-
-
- }
- }
-
- }
- }
-
- .news-container {
- width: 100%;
- background-image: -moz-linear-gradient(rgb(245, 245, 245) 7%, white 7%);
-
- .news-holder {
- position: relative;
- @include container();
- @include flex-center();
- border-left: $verticle-line;
- align-items: inherit;
-
- @include sm {
- @include container-sm();
- @include flex-column-baseline();
-
- }
-
- .section-side-text {
- @include side-text();
- left: -6%;
- top: 7%;
-
- @include sm {
- left: -17%;
- top: 2.5%;
- }
- }
-
- .primary-news {
- @include flex-column-baseline();
- width: 48%;
- margin-left: 2%;
- position: relative;
-
- @include sm {
- width: 98%;
-
- }
-
- .primary-news-image {
- @include flex-center();
-
- img {
- height: 60vh;
- object-fit: cover;
- }
- }
-
- .primary-news-floting-text {
- position: absolute;
- top: 5%;
- left: 5%;
-
- .primary-news-date {
- font-size: 1rem;
- margin-bottom: 2rem;
- }
-
- .primary-news-title {
- font-size: 3rem;
- width: 44%;
- text-transform: uppercase;
- font-weight: 900;
- position: relative;
- line-height: 3rem;
- letter-spacing: 0rem;
-
- &::after {
- content: "";
- position: absolute;
- bottom: -1.5rem;
- left: 0;
- width: 100%;
- height: 6px;
- background-color: black;
- }
- }
- }
-
-
- .primary-news-description {
- background-color: black;
- padding: 15% 10% 10%;
- color: white;
- position: relative;
-
- &::before {
- content: "";
- position: absolute;
- top: -15px;
- left: 80%;
- width: 0;
- height: 0;
- border-bottom: 15px solid black;
- border-right: 15px solid transparent;
- border-left: 15px solid transparent;
- }
-
- p {
- font-weight: 100;
- margin-bottom: 10%;
- }
-
- .more {
- @include border-button();
- }
-
-
-
- }
-
-
-
-
- }
-
- .secondary-news {
- @include flex-left();
- width: 50%;
- margin-top: 33%;
- margin-bottom: 5%;
-
- @include sm {
- @include flex-column-baseline;
- width: 100%;
- margin-top: 3rem;
- }
-
- .secondary-news-description {
- @include flex-column-baseline();
- margin-left: 5%;
- position: relative;
- width: 50%;
-
- @include sm {
- width: 98%;
- margin-left: 2%;
- }
-
-
- &::before {
- content: "";
- position: absolute;
- top: -10%;
- width: 100%;
- height: 7px;
- background-color: black;
-
- @include sm {
- top: 1%;
- right: 0;
- width: 70%;
- }
- }
-
- p,
- h3,
- .secondary-news-image,
- .secondary-news-date {
- margin: 8%;
- margin-top: 0;
-
- @include sm {
- margin-left: 2%;
- }
- }
-
- .secondary-news-image {
- width: 100%;
- height: 11rem;
- overflow: hidden;
- }
-
-
- .more {
- @include black-button();
- margin-left: 8%;
-
- @include sm {
- margin-left: 2%;
- margin-bottom: 2rem;
- }
- }
- }
- }
-
-
- }
-
- }
-
- .row-3-container {
- width: 100%;
- background-image: -moz-linear-gradient(white 35%, rgb(245, 245, 245) 35%);
- background-size: 87.2% auto;
- background-repeat: no-repeat;
-
- .row-3 {
- @include flex-center();
- @include container();
- padding-top: 10%;
- border-left: $verticle-line;
- padding-bottom: 4rem;
- position: relative;
-
- @include sm {
- @include container-sm();
- @include flex-column-baseline();
- flex-direction: column-reverse;
- }
-
- .row-3-col-1 {
- @include flex-column-baseline();
- justify-content: space-between;
- width: 40%;
- height: 30vh;
- margin-right: 10%;
- position: relative;
- margin-left: 2%;
-
- @include sm {
- width: 98%;
- height: 40vh;
- margin-right: auto;
- }
-
-
- &::before {
- content: "";
- position: absolute;
- width: 30%;
- height: 7px;
- background-color: black;
- top: -18%;
-
- @include sm {
- top: 1%;
- width: 70%;
- right: 0;
- }
- }
-
- .more {
- @include black-button();
- }
- }
-
- .row-3-col-2 {
- width: 50%;
- position: relative;
-
- @include sm {
- width: 98%;
- margin-left: 2%;
- margin-top: 5rem;
- }
-
- .row-3-image {
- width: 95%;
-
- @include sm {
- width: 100%;
- margin-bottom: 3rem;
- }
-
- img {
- width: 100%;
- }
- }
-
- }
-
- .row-3-float-text {
- top: -27%;
- right: 5%;
- padding: 5%;
- width: 40%;
- position: absolute;
- border: 5px solid black;
- font-size: 4rem;
- line-height: 3.5rem;
- font-weight: 900;
- text-transform: uppercase;
-
- @include sm {
- width: 65%;
- }
-
- span {
- position: relative;
- font-size: 3rem;
- }
- }
-
- .row-3-side-text {
- left: -6%;
- top: 29%;
- @include side-text();
-
- @include sm {
- left: -17%;
- top: 10%;
- }
- }
-
- }
- }
-
- footer {
- @include flex-center();
- @include container();
- border-left: $verticle-line;
- padding-bottom: 2%;
- position: relative;
- padding-top: 12%;
-
- @include sm {
- @include container-sm();
- padding-top: 0;
- padding-bottom: 3rem;
- }
-
- .footer-side-text {
- @include side-text();
- left: -5%;
- top: -40%;
-
- @include sm {
- top: 8%;
- left: -14%;
- }
- }
-
- .footer-holder {
- @include flex-center();
- position: absolute;
- top: 80%;
-
- @include sm {
- @include flex-column-baseline();
- position: relative;
- top: 10%;
- }
-
- .footer-col {
- @include flex-column-baseline();
- justify-content: space-between;
- font-style: normal;
- border-right: $verticle-line;
- padding: 3%;
- padding-top: 0;
- width: 25%;
- height: 25vh;
-
- @include sm {
- width: 80%;
- margin-top: 3rem;
- height: 20vh;
- border-right: none;
- padding: 0;
- padding-left: 2%;
- }
-
- h3 {
- position: absolute;
- top: -25%;
- font-weight: 100;
-
- @include sm {
- position: relative;
- top: 0;
- }
- }
-
- span {
- text-transform: uppercase;
- font-weight: 900;
- }
-
- h4 {
- margin-bottom: 5%;
- margin-top: 0;
-
- @include sm {
- position: relative;
-
- &::after {
- content: "";
- position: absolute;
- width: 60%;
- height: 2px;
- background-color: lightgray;
- right: 0;
- top: 35%;
- }
- }
- }
-
- a {
- text-decoration: none;
- color: black;
-
- &:hover {
- opacity: 0.6;
- }
- }
-
- .newsletter p {
- font-size: 0.8rem;
- }
-
- .subscribe-form {
- @include flex-row-baseline;
- border: 1px solid rgb(0, 0, 0);
- margin-top: 5%;
-
- input {
- border: none;
- background-color: transparent;
- padding: 1rem;
- padding-right: 0;
- width: 65%;
- }
-
- button {
- background-color: black;
- border-radius: 0;
- border: none;
- color: white;
- padding-left: 1rem;
- padding-right: 1rem;
- width: 35%;
- }
-
- }
-
- .social-media {
- @include flex-center();
- margin: 0;
- margin-top: 5%;
-
- a {
- margin-left: 5%;
- opacity: 0.6;
- margin-top: 5%;
-
- &:hover {
- opacity: 1;
- }
-
- figure {
- width: 70%;
- margin: 0;
-
- img {
- width: 100%;
- }
-
- }
- }
-
- }
-
-
- }
- }
- }
|