1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018 |
- body {
- font-family: 'Open Sans', 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif;
- }
- #wrapper {
- width: 100%;
- overflow: hidden;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- }
- #header {
- padding: 15px 0;
- width: 100%;
- position: relative;
- z-index: 99;
- }
- .container {
- margin: 0 auto;
- width: 100%;
- max-width: 1250px;
- padding: 0 15px;
- }
- .header_content {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .logo img {
- width: 68px;
- }
- .logo img:hover {
- border: 0.3px solid rgb(192, 186, 243);
- }
- .menu {
- display: flex;
- flex-wrap: wrap;
- margin: 0 0 8px;
- padding: 0;
- }
- .menu a {
- text-decoration: none;
- color:rgb(68, 67, 67);
- }
- .menu a:after {
- content: "";
- display: block;
- position: relative;
- width: 0px;
- padding-top: 2px;
- left: 50%;
- transform: translateX(-50%);
- border-bottom: 1px solid #4758d6;
- transition: all ease 0.5s;
- }
- a:hover:after{
- width: 30px;
- }
- .menu a:hover {
- color: #4758d6;
- }
- .menu li {
- list-style-type: none;
- margin-left: 40px;
- }
- .burger,
- #menu_btn {
- display: none;
- }
- .columns {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .section_one {
- display: flex;
- position: relative;
- width: 100%;
- padding: 90px;
- align-items: center;
- background: url(../img/bg-01.jpg) no-repeat center center;
- background-size: cover;
- z-index: 2;
- }
- .section_one:before {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- background: rgb(87, 100, 209);
- opacity: 0.8;
- z-index: -1;
- }
- .col2 {
- margin-left: 130px;
- }
- .col2 h1 {
- color: white;
- font-size: 50px;
- margin-top: 50px;
- text-transform: uppercase;
- line-height: 1.5;
- }
- .col2 h3 {
- color: white;
- font-size: 40px;
- font-family: 'FREESCPT';
- }
- .form {
- width: 100%;
- max-width: 300px;
- background: white;
- border-radius: 20px;
- padding: 10px 30px 30px 30px;
- margin-right: 50px;
- }
- .form select,
- .form input {
- display: block;
- width: 100%;
- border-radius: 8px;
- background: rgb(245, 244, 244);
- color: rgb(139, 139, 139);
- font-size: 15px;
- line-height: 18px;
- padding: 14px 10px;
- height: 50px;
- border: 0px;
- box-shadow: none;
- margin-bottom: 24px;
- }
- .form input:focus {
- outline: 2px solid blue;
- }
- .form .btn {
- width: 170px;
- display: block;
- margin: 0 0 0 auto;
- }
- .btn {
- display: inline-block;
- vertical-align: top;
- text-decoration: none;
- padding: 16px 10px;
- border-radius: 6px;
- background: linear-gradient(to bottom, rgb(92, 106, 212) 0%,rgb(90, 107, 235) 100%);
- color: rgb(251, 249, 249);
- font-weight: 700;
- text-align: center;
- line-height: 18px;
- font-size: 16px;
- border: 1px solid #fff;
- }
- .form .btn:hover {
- background: linear-gradient(to bottom, rgb(117, 128, 206) 0%,rgb(64, 82, 211) 100%);
- }
- .form h3 {
- color: rgb(79, 93, 199);
- font-size: 25px;
- }
- .cards1 {
- text-align: center;
- padding-top: 90px;
- }
- .cards1 h2 {
- color: rgb(79, 93, 199);
- text-transform: uppercase;
- font-size: 30px;
- }
- .cards1 h3 {
- font-weight: 500;
- color: lightslategray;
- font-family: 'FREESCPT';
- font-size: 40px;
- line-height: 0.1;
- padding-bottom: 30px;
- }
- .cards2 {
- display: flex;
- flex-wrap: wrap;
- padding: 0;
- }
- .cards2 li {
- list-style-type: none;
- padding: 0 15px 25px;
- width: calc(100% / 2);
- }
- .list_text {
- padding-left: 30px;
- padding-top: 35px;
- }
- .list_1,
- .list_2,
- .list_3,
- .list_4 {
- display: flex;
- flex-direction: row;
- box-shadow: rgb(0 0 0 / 10%) 5px 5px 20px 0px;
- }
- .list_img img {
- height: 100%;
- }
- .list_text p {
- font-size: 13px;
- line-height: 1.7;
- width: 85%;
- }
- .list_text span > a {
- text-decoration: none;
- color: lightslategray;
- font-size: 14px;
- }
- .list_text span > a:hover {
- text-decoration: underline;
- }
- .list_text h4 > a {
- text-decoration: none;
- color: lightslategray;
- font-size: 20px;
- }
- .list_text h4 > a:hover {
- text-decoration: underline;
- }
- .section_three {
- width: 100%;
- }
- .photos {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- width: 100%;
- margin: 0;
- padding: 0;
- padding-top: 150px;
- }
- .photos li {
- position: relative;
- width: 25%;
- padding: 0;
- cursor: pointer;
- list-style-type: none;
- }
- .photos li:before {
- content: "";
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background: rgb(117, 130, 231);
- text-align: center;
- opacity: 0;
- transition: opacity 0.7s ease-in-out;
- }
- .photos li:after {
- position: absolute;
- content: "\e986";
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%) scale(0);
- font-family: "icomoon";
- font-size: 20px;
- width: 40px;
- height: 40px;
- border-radius: 50%;
- background: white;
- color: rgb(117, 130, 231);
- line-height: 40px;
- text-align: center;
- opacity: 0;
- transition: all 0.4s 0.4s;
- }
- .photos li:hover:before {
- opacity: 0.8;
- font-size: 20px;
- }
- .photos img {
- width: 100%;
- height: 100%;
- }
- .photos li:hover:after {
- opacity: 1;
- transform: translate(-50%, -50%) scale(1);
- }
- .section_four {
- padding-top: 170px;
- padding-bottom: 170px;
- }
- .about_container {
- display: flex;
- position: relative;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- padding-right: 40px;
- }
- .about_body {
- width: 50%;
- }
- .text_part {
- padding-right: 19%;
- }
- .about_body h2 {
- color: rgb(79, 93, 199);
- text-transform: uppercase;
- font-size: 30px;
- }
- .about_body p {
- font-size: 14px;
- line-height: 1.5;
- color: #777;
- }
- .swiper-container {
- position: relative;
- width: 50%;
- box-shadow: rgb(0 0 0 / 10%) 5px 5px 15px;
- }
- .swiper-slide {
- width: 100%;
- padding-top: 52%;
- background-size: cover;
- border-radius: 7px;
- }
- .swiper-button-next,
- .swiper-button-prev {
- position: absolute;
- background: #fff;
- border-radius: 50% 50%;
- width: 50px;
- height: 50px;
- box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 15%);
- }
- .swiper-button-next {
- left: 95%;
- }
- .swiper-button-prev {
- left: 46%;
- }
- .swiper-button-next:after, .swiper-button-prev:after {
- font-size: 20px;
- }
- .swiper-img1 {
- background-image: url(../img/img-13.jpg);
- }
- .swiper-img2 {
- background-image: url(../img/img-13.jpg);
- }
- .swiper-img3 {
- background-image: url(../img/img-13.jpg);
- }
- .section_five {
- position: relative;
- background-size: cover;
- background-position: 50% 50%;
- background-image: url(../img/bg-02.jpg);
- padding: 125px 0 75px;
- background-color: #5363db;
- }
- .section_five:after {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #5363db;
- opacity: .8;
- }
- .section_five .container {
- position: relative;
- z-index: 3;
- }
- .info_icons {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- margin: 0 -15px;
- list-style: none;
- color: #fff;
- text-align: center;
- line-height: 1.7;
- padding: 0;
- }
- .info_icons li {
- width: 25%;
- margin-bottom: 60px;
- padding: 0 15px;
- }
- .info_body h3 {
- text-transform: uppercase;
- line-height: 1.5;
- }
- .info_body span {
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 auto;
- width: 70px;
- height: 70px;
- border: 2px solid #fff;
- border-radius: 50% 50%;
- }
- .section_six {
- background: url(../images/bg-03.jpg) no-repeat;
- background-position: 100% 100%;
- background-size: auto 100%;
- padding: 100px 0;
- }
- .content_box {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- list-style: none;
- padding: 0;
- }
- .content_box > li {
- width: calc(100% / 3);
- padding: 0 15px 30px;
- display: flex;
- }
- .box {
- display: flex;
- flex-direction: column;
- width: 100%;
- text-align: center;
- color: #555;
- line-height: 1.2;
- box-shadow: 9px 9px 50px rgb(0 0 0 / 10%);
- border-radius: 20px;
- overflow: hidden;
- background: #fff;
- }
- .box_text {
- padding: 50px 20px;
- text-transform: uppercase;
- background: #5b6ceb;
- color: #fff;
- font-size: 25px;
- line-height: 24px;
- font-weight: bold;
- }
- .number {
- font-size: 70px;
- }
- .box_body {
- display: flex;
- width: 100%;
- flex-direction: column;
- justify-content: space-between;
- flex-grow: 1;
- margin-bottom: 10px;
- }
- .box_list {
- list-style: none;
- padding: 0;
- text-transform: uppercase;
- margin-bottom: 25px;
- }
- .box_list > li {
- position: relative;
- margin: 20px 0 0;
- padding: 20px 0 0;
- font-size: 20px;
- }
- .box_list > li:not(:first-child):after {
- position: absolute;
- content: '';
- left: 50%;
- top: 0;
- width: 100px;
- height: 1px;
- transform: translateX(-50%);
- background: #d7d7d7;
- }
- .btn2 {
- display: inline-block;
- width: 170px;
- padding: 15px 10px;
- background: #5b6ceb;
- border-radius: 20px;
- color: #fff;
- text-decoration: none;
- font-weight: bold;
- text-align: center;
- margin-bottom: 40px;
- }
- .button-wrap .btn2:hover {
- background: linear-gradient(to bottom, rgb(117, 128, 206) 0%,rgb(64, 82, 211) 100%);
- }
- #footer {
- color: white;
- background-color:rgb(90, 105, 221);
- margin-top: auto;
- margin-bottom: 0;
- }
- .upper_section {
- display: flex;
- flex-direction: row;
- padding-top: 70px;
- padding-bottom: 90px;
- }
- .about {
- width: 40%;
- margin-right: 130px;
- }
- .about h4 {
- padding-bottom: 35px;
- font-size: 18px;
- }
- .about p {
- padding-bottom: 50px;
- }
- .menu_icon ul {
- padding: 0;
- list-style-type: none;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- .menu_icon a {
- text-decoration: none;
- padding-right: 10px;
- font-size: 22px;
- color: white;
- }
- .menu_icon a:hover {
- color: rgb(211, 205, 241);
- }
- .contact {
- width: 50%;
- }
- .contact h4 {
- font-size: 18px;
- }
- .blocks {
- display: flex;
- }
- .first_block {
- display: flex;
- flex-direction: column;
- padding-top:22px;
- }
- .list_address {
- display: flex;
- }
- .list_address a {
- text-decoration: none;
- color: white;
- font-size: 20px;
- padding-right: 15px;
- }
- .list_address a:hover {
- color: rgb(211, 205, 241);
- }
- .second_block {
- display: flex;
- flex-direction: column;
- padding-left: 90px;
- padding-top: 20px;
- }
- .list_numbers {
- display: flex;
- }
- .list_tel {
- padding-left: 14px;
- }
- .list_tel li {
- list-style-type: none;
- padding-bottom: 7px;
- }
- .list_tel a {
- color: white;
- text-decoration: none;
- }
- .list_tel a:hover {
- color: rgb(211, 205, 241);
- }
- .list_icon {
- padding-top: 20px;
- padding-left: 3px;
- }
- .list_icon a:hover {
- color: rgb(211, 205, 241);
- }
- .icon-phone {
- color: white;
- text-decoration: none;
- font-size: 18px;
- }
- .mail_one {
- padding-bottom: 35px;
- }
- .mail_one a:hover {
- color: rgb(211, 205, 241);
- }
- .mail_one a {
- text-decoration: none;
- color: white;
- }
- .upper_section .icon-envelop:before {
- padding-right: 10px;
- }
- .mail_two a {
- text-decoration: none;
- color: white;
- }
- .mail_two a:hover {
- color: rgb(211, 205, 241);
- }
- .footer_content .icon-dribbble:before {
- padding-right: 10px;
- }
- .bottom_section {
- text-align: center;
- padding: 40px 0;
- background: rgb(81, 97, 221);
- }
- .copyright {
- color: rgb(166, 173, 230);
- font-size: 18px;
- }
- .copyright a {
- color: rgb(166, 173, 230);
- text-decoration: none;
- font-size: 18px;
- }
- @media (max-width:1200px) {
- .list_1,
- .list_2,
- .list_3,
- .list_4 {
- flex-direction: column;
- }
- .list_text {
- padding-bottom: 20px;
- padding-top: 5px;
- }
- .list_img img {
- width: 100%;
- }
- }
- @media (max-width:992px) {
- .upper_section {
- display: flex;
- flex-direction: column;
- padding-top: 30px;
- padding-bottom: 40px;
- }
- .about {
- width: 100%;
- }
- .about h4 {
- padding-bottom: 20px;
- }
- .about p {
- padding-bottom: 30px;
- }
- .contact {
- width: 100%;
- }
- .second_block {
- padding-left: 160px;
- }
- .col2 h1 {
- font-size: 35px;
- }
- .section_four {
- padding-top: 70px;
- padding-bottom: 70px;
- }
- .content_box > li {
- width: calc(100% / 2);
- }
- .swiper-button-next {
- left: 93%;
- }
-
- .swiper-button-prev {
- left: 44%;
- }
- }
- @media (max-width:768px) {
- #nav {
- display: flex;
- justify-content: flex-end;
- flex-grow: 1;
- padding: 0 10px;
- }
- .menu li {
- display: flex;
- justify-content: center;
- line-height: 2;
- font-size: 15px;
- background: white;
- }
- .burger {
- position: relative;
- z-index: 9;
- display: block;
- width: 40px;
- height: 30px;
- font-size: 0;
- }
- .burger:before,
- .burger:after,
- .burger span {
- position: absolute;
- content: '';
- display: block;
- height: 4px;
- width: 40px;
- background: #4758d6;
- left: 50%;
- transform: translateX(-50%);
- transition: all .8s;
- }
- .burger:before {
- top: 0;
- }
- .burger:after {
- top: calc(100% - 4px);
- }
- .burger span {
- top: 50%;
- margin-top: -2px;
- transition: opacity .5s .5s;
- }
- #nav ul li {
- margin: 0;
- }
- #nav ul {
- position: absolute;
- left: 0;
- display: block;
- text-align: center;
- z-index: -1;
- width: 100%;
- min-height: 100vh;
- top: -150vh;
- transition: top 1.5s;
- }
- #menu_btn:checked ~ ul {
- top: 100%;
- }
- #menu_btn:checked ~ .burger:after {
- top: 50%;
- transform: translate(-50%, -50%) rotate(45deg);
- }
- #menu_btn:checked ~ .burger:before {
- top: 50%;
- transform: translate(-50%, -50%) rotate(-45deg);
- }
- #menu_btn:checked ~ .burger span {
- opacity: 0;
- transition: opacity .5s;
- }
- .copyright a {
- font-size: 16px;
- }
- .copyright {
- font-size: 16px;
- }
- .columns {
- flex-direction: column;
- justify-content: center;
- }
- .col2 {
- margin: 0;
- }
- .col2 h1 {
- text-align: center;
- }
-
- .col2 h3 {
- text-align: center;
- }
- .cards1 {
- padding-top: 40px;
- }
- .photos {
- padding-top: 70px;
- }
- .photos li {
- width: 50%;
- }
- .about_body {
- width: 100%;
- }
- .swiper-container {
- width: 100%;
- }
- .swiper-button-next {
- top: 66%;
- left: 95%;
- }
-
- .swiper-button-prev {
- top: 66%;
- left: -25px;
- }
- .info_icons li {
- width: calc(100% / 2);
- }
- .content_box > li {
- width: 100%;
- }
- .swiper-button-next {
- left: 91%;
- top: 70%;
- }
-
- .swiper-button-prev {
- left: 1%;
- top: 70%;
- }
- .about_container {
- padding: 0;
- }
- }
- @media (max-width: 570px) {
- .blocks {
- display: flex;
- flex-direction: column;
- }
- .second_block {
- padding-left: 0;
- }
- .copyright a {
- font-size: 14px;
- }
- .copyright {
- font-size: 14px;
- }
- .form {
- margin-left: 0;
- }
- .cards2 li {
- width: 100%;
- }
- .info_icons li {
- width: 100%;
- }
- .swiper-button-next {
- left: 89%;
- top: 75%;
- }
-
- .swiper-button-prev {
- left: 0%;
- top: 75%;
- }
- }
|