123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
- :root {
- --main: #FFFFFF;
- --accent: #479FF8;
- --bg: #F8F9FD;
- --blue-bg: #2C64BF;
- --dark-blue-bg: #1D4685;
- --unActive: #D8D8D8;
- --main-text: #3C3C3C;
- --second-text: #7E7E7E;
- --danger-text: #EF3232;
- --font-xl: 36px;
- --font-xl2: 32px;
- --font-rt: 24px;
- --font-md: 16px;
- --font-sm: 14px;
- --font-bold: 700;
- --font-thin: 400;
- /* border-radius */
- --br-xl: 15px;
- --br-md: 10px;
- --br-sm: 6px;
- /* border */
- --input-border: #D8D8D8;
- /* margin */
- --m-5xl: 50px;
- --m-4xl: 40px;
- --m-3xl: 30px;
- --m-2xl: 24px;
- --m-xl: 20px;
- --m-md: 15px;
- --m-sm: 10px;
- --m-l: 8px;
- }
- h1 {
- font-size: var(--font-xl);
- }
- .hideScrollbar::-webkit-scrollbar {
- display: none;
- }
- .hideScrollbar {
- -ms-overflow-style: none;
- scrollbar-width: none;
- }
- .blue-text {
- color: var(--accent);
- position: relative;
- display: inline-block;
- }
- .clicked-reference{
- height: 72px;
- }
- .blue-text::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: -25px;
- width: 100%;
- height: 5px;
- background-color: var(--accent);
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
- }
- .underline{
- text-decoration: underline;
- }
- /* Скрываем scrollbar для Chrome, Safari и Opera */
- .example::-webkit-scrollbar {
- display: none;
- }
-
- /* Скрываем scrollbar для IE, Edge и Firefox */
- .example {
- -ms-overflow-style: none; /* IE и Edge */
- scrollbar-width: none; /* Firefox */
- }
- ul, li, body{
- margin: 0;
- padding: 0;
- }
- body {
- color: var(--main-text);
- background: var(--bg);
- font-family: 'Open Sans', sans-serif;
- box-sizing: border-box;
- }
- p {
- line-height: 1.9;
- }
- .container {
- width: 1340px;
- margin: auto;
- position: relative;
- }
- .menu-text a {
- display: flex;
- align-items: center;
- margin-left: 50px;
- }
- .menu {
- width: 100%;
- height: 72px;
- border-radius: var(--br-md);
- margin-bottom: 50px;
- background: var(--main);
- top: 20px;
- z-index: 1;
- position: sticky;
- justify-content: space-between;
- }
- .sharix-menu-text {
- font-size: var(--font-rt);
- font-weight: var(--font-thin);
- }
- .menu-text {
- list-style: none;
- display: flex;
- flex-direction: row;
- }
- .menu-items {
- margin-left: 50px;
- }
- .ShariX-icon {
- margin-left: 24px;
- margin-right: 10px;
- }
- .enter-icon {
- margin-left: 57px;
- margin-right: 29px;
- }
- .flex-row {
- display: flex;
- flex-direction: row;
- }
- .flex-row-center {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .title {
- font-size: var(--font-xl);
- font-weight: var(--font-bold);
- }
- .popup-burger-text li{
- width: 200px;
- height: 50px;
- margin-top: 25px;
- margin-bottom: 10px;
- margin-left: 40px;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .list-none {
- list-style: none;
- }
- .items-center{
- display: flex;
- align-items: center;
- }
- .text-center {
- text-align: center;
- }
- .flex-column {
- flex-direction: column;
- }
- .content-between {
- display: flex;
- justify-content: space-between;
- }
- footer {
- width: 100%;
- margin-top: 50px;
- margin-bottom: 25px;
- display: flex;
- justify-content: space-around;
- flex-direction: column;
- border-radius: var(--br-md);
- background-color: var(--main);
- }
- .footer-text {
- color: var(--second-text);
- margin-top: 20px;
- }
- .footer-text li {
- margin-top: 20px;
- }
- .footer-row {
- margin-top: 40px;
- display: flex;
- flex-direction: row;
- justify-content: center;
- }
- .wrap-footer{
- flex-wrap: wrap;
- justify-content: space-around;
- }
- .mt-25{
- margin-top: 45px;
- }
- .ml-40 {
- margin-left: 40px;
- }
- .footer-size{
- font-size: var(--font-sm);
- }
- /* BUTTON STYLES */
- .proto-button {
- padding: var(--m-l) var(--m-2xl);
- border: none;
- border-radius: var(--br-sm);
- font-size: var(--font-sm);
- font-weight: var(--font-bold);
- letter-spacing: 0.4px;
- color: var(--bg);
- background-color: var(--accent);
-
- transition: 0.3s all;
- }
- button:hover {
- background-color: var(--blue-bg);
- }
- button:active {
- background-color: var(--dark-blue-bg);
- }
- button:disabled {
- background-color: var(--unActive);
- }
- button:disabled:hover {
- background-color: var(--unActive);
- }
- /* BUTTON STYLES */
- .partners-content {
- justify-content: space-between;
- margin-bottom: 308px;
- }
- .partners-text {
- width: 645px;
- line-height: 1.9;
- text-align: justify;
- }
- .information-tasks {
- padding-left: 20px;
- padding-bottom: 100px;
- color: var(--accent);
- }
- .information-tasks li {
- margin-top: 20px;
- }
- .disk {
- list-style-type: circle;
- margin-left: 20px;
- }
- .m-auto {
- text-align: center;
- }
- .content-center {
- display: flex;
- justify-content: center;
- }
- .footer-top {
- margin-top: 300px;
- }
- .input-group {
- width: 100%;
- display: flex;
- align-items: center;
- position: relative;
- margin: 0.7rem 0;
- }
- .input-group {
- margin-bottom: 65px;
- }
- .input-group p{
- top: -110%;
- left: -2%;
- font-weight: 700;
- color: var(--main-text);
- }
- .input-group:has(textarea) p{
- top: -40%;
- }
- /* .input-group.active p {
- top: -110%;
- left: -2%;
- font-weight: 700;
- color: var(--main-text);
- padding: 4px 2px;
- }
- .input-group.active:has(textarea) p{
- top: -40%;
- } */
- .input-group p {
- margin-left: 10px;
- position: absolute;
- }
- .input-group input {
- border: 1px solid var(--input-border);
- }
- .input-group input:focus {
- outline: var(--accent) 1px solid;
- }
- .input-group .error-input {
- position: absolute;
- bottom: -70%;
- color: var(--danger-text);
- }
- .second-input {
- width: 100%;
- min-height: 126px;
- border-radius: var(--br-sm);
- resize: none;
- }
- .second-input:focus {
- outline: var(--accent) 1px solid;
- }
- .footer-image-margin {
- margin-left: 10px;
- }
- .fixed-width a{
- width: 100%;
- }
- .contacts-text {
- width: 705px;
- }
- .content-around {
- justify-content: space-around;
- }
- .decoration-none a {
- color: inherit;
- text-decoration: none;
- }
- .cursor-pointer {
- cursor: pointer;
- }
- .services-footer{
- width: 174px;
- }
- .burger{
- width: 26px;
- height: 16px;
- margin-right: 25px;
- display: none;
- }
- .line{
- width: 100%;
- height: 2px;
- border-radius: 4px;
- background-color: #3C3C3C;
- }
- .popup{
- background-color: var(--main);
- border-radius: 15px;
- }
- .login-btn{
- background: none;
- font-size: var(--font-md);
- border-radius: var(--br-md);
- border: 1px solid var(--accent);
- }
- .cover-enter-icon{
- display: flex;
- align-items: center;
- justify-content: center;
- }
- @media screen and (max-width: 1340px) {
- .container {
- width: 1100px;
- }
- }
- @media screen and (max-width: 1100px) {
- .container {
- width: 992px;
- }
- }
- @media screen and (max-width: 992px) {
- .container {
- width: 768px;
- }
- .blue-text::after {
- display: none;
- }
- .clicked-reference{
- width: 100%;
- height: 50px;
- }
- .popup{
- width: 200px;
- padding-top: 15px;
- padding-right: 25px;
- padding-left: 25px;
- padding-bottom: 25px;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- position: absolute;
- top: 80px;
- right: 0;
- color: var(--accent);
- }
- .menu-text a {
- margin: 0;
- }
- .menu-text {
- gap: 25px;
- height: 100%;
- flex-direction: column;
- justify-content: space-around;
- }
- .clicked-reference{
- width: 450px;
- height: 50px;
- }
- h1{
- font-size: var( --font-xl2);
- }
- .flex-row.adaptive-992 {
- display: flex;
- flex-direction: column;
- }
- .burger{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- }
- @media screen and (max-width: 768px) {
- .container {
- width: 576px;
- }
- .menu{
- margin-bottom: 25px;
- }
- footer{
- display: flex;
- flex-wrap: wrap;
- }
- .content-around.adaptive-content-768{
- gap: 50px;
- }
- }
- @media screen and (max-width:576px) {
- .container {
- width: 476px;
- }
- }
- .display-none{
- display: none !important;
- }
|