123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- * {
- box-sizing: border-box;
- }
- html {
- font-size: 14px;
- }
- body {
- margin: 0;
- }
- li {
- list-style: none;
- }
- a {
- text-decoration: none;
- }
- .header {
- position: relative;
-
- }
- .header-container {
- width: 100%;
- height: 92px;
- display: flex;
- justify-content: space-between;
- position: absolute;
- padding: 62px 61px 0 61px;
- background-color: black;
- }
- .header__logo {
- height: 100%;
- align-items: flex-end;
- display: flex;
- }
- .header__info {
- height: 100%;
- display: flex;
- align-items: flex-end;
-
- }
- .header__nav {
- height: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: flex-end;
- }
- .info__list {
- display: flex;
- justify-content: flex-start;
- margin: 0;
- padding: 0;
- }
- .info__list a {
- color: rgba(255, 255, 255, 1);
- font-size: 14px;
- }
- .info__list li {
- margin-right: 59px;
- height: 20px;
- }
- .info__list li:last-child a {
- color: rgba(255, 202, 0, 1);
- }
- .info__list li:last-child {
- margin-right: 0;
- width: 105px;
- }
- .info__list li:nth-child(4) {
- border-right: 1px solid rgba(240, 240, 240, 1);
- width: 80px;
- margin-right: 41px;
- }
- .nav__email {
- display: flex;
- align-items: center;
- }
- .nav__email svg {
- margin-right: 15px;
- }
- .nav__email svg:hover {
- cursor: pointer;
- transform: scale(2);
- transition: 1s;
- }
- .nav__email a{
- color: white;
- font-size: 19px;
- }
- .nav__menu {
- margin-left: 150px;
- margin-right: 25px;
- }
- .nav__menu a {
- color: white;
- }
- .menu__btn {
- display: block;
- position: relative;
- }
- .menu__btn span {
- margin-top: 5px;
- }
- .menu__btn span,
- .menu__btn span::before {
- position: absolute;
- width: 50px;
- height: 1px;
- background-color: #ffffff;
- }
- .menu__btn span::before {
- content: '';
- display: block;
- transform: translateY(10px);
- }
- .asd {
- height: 600px;
- width: 100%;
- background-color: black;
- }
- /* .main {
- display: flex;
- justify-content: center;
- } */
- .main-title {
- height: 100vh;
- width: 100%;
- background-image: url(../img/Bitmap.png);
- background-repeat: no-repeat;
- display: flex;
- justify-content: center;
-
- }
- .main-title__content {
- width: 50%;
- height: 100%;
- display: flex;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- }
- .welcome {
- width: 100%;
- font-family: Roboto;
- font-size: 18px;
- font-style: normal;
- font-weight: 300;
- line-height: 21px;
- margin-bottom: 23px;
- color: rgba(255, 255, 255, 1);
- display: flex;
- justify-content: flex-start
- }
- .web-production {
- font-family: Roboto;
- font-size: 64px;
- font-style: normal;
- font-weight: 700;
- line-height: 75px;
- margin-bottom: 100px;
- color: rgba(255, 255, 255, 1);
- }
- .discus-btn {
- width: 240px;
- height: 68px;
- display: flex;
- background-color: #FFCA00;
- align-items: center;
- }
- /* .discus-btn:hover {
- background-color: green;
- transition: 1s;
- color: yellow;
- } */
- .discuse-btn__text:hover {
- color: yellow;
- transition: 1s;
- }
- .discus-btn__text {
- color: rgba(32, 32, 32, 1);
- margin: 25px 67px 27px 30px;
- }
- .dott {
- width: 8px;
- height: 8px;
- background-color: rgba(32, 32, 32, 1);
- border-radius: 50%;
- }
- .main-title__btn {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- }
|