figma_final
This commit is contained in:
10
index.html
10
index.html
@@ -1691,6 +1691,7 @@
|
|||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<div class="footer_top">
|
<div class="footer_top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
<div class="footer_top_wrapper">
|
||||||
<div class="footer_top_inner">
|
<div class="footer_top_inner">
|
||||||
<!-- 1 -->
|
<!-- 1 -->
|
||||||
<div class="fotter_top_col">
|
<div class="fotter_top_col">
|
||||||
@@ -1826,9 +1827,10 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="footer_top_col_inner">
|
||||||
<!-- 2 -->
|
<!-- 2 -->
|
||||||
<div class="fotter_top_col">
|
<div class="fotter_top_col">
|
||||||
<h3 class="footer_top_title">SITE MAP</h3>
|
<h3 class="footer_top_title footer_top_title--slide">SITE MAP</h3>
|
||||||
<ul class="footer_top_list">
|
<ul class="footer_top_list">
|
||||||
<li class="footer_top_item">
|
<li class="footer_top_item">
|
||||||
<a class="footer_item_link" href="#">About Us</a>
|
<a class="footer_item_link" href="#">About Us</a>
|
||||||
@@ -1849,7 +1851,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- 3 -->
|
<!-- 3 -->
|
||||||
<div class="fotter_top_col">
|
<div class="fotter_top_col">
|
||||||
<h3 class="footer_top_title">COURSES</h3>
|
<h3 class="footer_top_title footer_top_title--slide">COURSES</h3>
|
||||||
<ul class="footer_top_list">
|
<ul class="footer_top_list">
|
||||||
<li class="footer_top_item">
|
<li class="footer_top_item">
|
||||||
<a class="footer_item_link" href="#">Marketing</a>
|
<a class="footer_item_link" href="#">Marketing</a>
|
||||||
@@ -1870,7 +1872,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- 4 -->
|
<!-- 4 -->
|
||||||
<div class="fotter_top_col">
|
<div class="fotter_top_col">
|
||||||
<h3 class="footer_top_title">CONTACT US</h3>
|
<h3 class="footer_top_title footer_top_title--slide">CONTACT US</h3>
|
||||||
<ul class="footer_top_list">
|
<ul class="footer_top_list">
|
||||||
<li class="footer_top_item">
|
<li class="footer_top_item">
|
||||||
<a class="footer_item_link" href="tel:4055550128">
|
<a class="footer_item_link" href="tel:4055550128">
|
||||||
@@ -1912,6 +1914,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<!-- 5 -->
|
<!-- 5 -->
|
||||||
<div class="fotter_top_col">
|
<div class="fotter_top_col">
|
||||||
<h3 class="footer_top_title--title1">SIGN UP TO OUR NEWSLETTER</h3>
|
<h3 class="footer_top_title--title1">SIGN UP TO OUR NEWSLETTER</h3>
|
||||||
@@ -1934,6 +1937,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="footer_bottom">
|
<div class="footer_bottom">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="footer_bottom_inner">
|
<div class="footer_bottom_inner">
|
||||||
|
|||||||
6
js.js
6
js.js
@@ -117,12 +117,16 @@
|
|||||||
}, 0);
|
}, 0);
|
||||||
|
|
||||||
|
|
||||||
$(".burger, .overlay").on("click", function (e) {
|
$(".burger, .overlay, .header_top a").on("click", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
$(".header_top").toggleClass("header_top--open");
|
$(".header_top").toggleClass("header_top--open");
|
||||||
$(".overlay").toggleClass("overlay--show");
|
$(".overlay").toggleClass("overlay--show");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$(".footer_top_title--slide").on("click", function () {
|
||||||
|
$(this).next().slideToggle();
|
||||||
|
});
|
||||||
|
|
||||||
// <!-- <script async
|
// <!-- <script async
|
||||||
// src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&loading=async&callback=initMap">
|
// src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&loading=async&callback=initMap">
|
||||||
// let map;
|
// let map;
|
||||||
|
|||||||
259
style.css
259
style.css
@@ -971,7 +971,6 @@ body {
|
|||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
.blog_heading {
|
.blog_heading {
|
||||||
margin-right: 30px;
|
|
||||||
}
|
}
|
||||||
.heading {
|
.heading {
|
||||||
}
|
}
|
||||||
@@ -985,25 +984,34 @@ body {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
.blog_row {
|
.blog_row {
|
||||||
display: flex;
|
display: grid;
|
||||||
margin: 0 -15px;
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
|
gap: 30px;
|
||||||
}
|
}
|
||||||
.blog_item {
|
.blog_item {
|
||||||
padding: 0 15px;
|
display: flex;
|
||||||
display: block;
|
}
|
||||||
|
.blog_item:first-child {
|
||||||
|
|
||||||
}
|
}
|
||||||
.blog_item_link {
|
.blog_item_link {
|
||||||
display: block;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
width: 100%;
|
||||||
transition: all .3s;
|
transition: all .3s;
|
||||||
height: 100%;
|
|
||||||
}
|
}
|
||||||
.blog_item_link:hover {
|
.blog_item_link:hover {
|
||||||
box-shadow: 0px 30px 30px 10px rgba(154, 156, 165, 0.08), 0px 30px 24px -10px rgba(154, 156, 165, 0.05), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 4px 4px -4px rgba(30, 33, 44, 0.03);
|
box-shadow: 0px 30px 30px 10px rgba(154, 156, 165, 0.08), 0px 30px 24px -10px rgba(154, 156, 165, 0.05), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 4px 4px -4px rgba(30, 33, 44, 0.03);
|
||||||
}
|
}
|
||||||
.blog_item_inner {
|
.blog_item_inner {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
.blog_image_box {
|
.blog_image_box {
|
||||||
|
display: block;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
@@ -1011,6 +1019,9 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: 300px;
|
||||||
|
width: 100%;
|
||||||
|
max-width: none;
|
||||||
}
|
}
|
||||||
.blog_image_box span {
|
.blog_image_box span {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -1022,23 +1033,28 @@ body {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 0px 8px;
|
padding: 0px 12px;
|
||||||
}
|
}
|
||||||
.blog_image_box span img {
|
.blog_image_box span img {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
margin-right: 4px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
.blog_image_box img {
|
.blog_image_box img {
|
||||||
width: auto;
|
width: 100%;
|
||||||
height: auto;
|
height: 100%;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog_item_content {
|
.blog_item_content {
|
||||||
|
flex-grow: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
.blog_item_info {
|
.blog_item_info {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
margin: 0 -12px 8px;
|
margin: 0 -12px 8px;
|
||||||
}
|
}
|
||||||
.blog_info_el {
|
.blog_info_el {
|
||||||
@@ -1091,9 +1107,19 @@ body {
|
|||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
color: #1E212C;
|
color: #1E212C;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
|
min-height: 60px;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 3; /* максимум 2 строки */
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.blog_item_text {
|
.blog_item_text {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
|
min-height: 70px;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 4; /* максимум 2 строки */
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.blog_item_btn {
|
.blog_item_btn {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -1102,6 +1128,7 @@ body {
|
|||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
color: #1E212C;
|
color: #1E212C;
|
||||||
transition: all .3s;
|
transition: all .3s;
|
||||||
|
margin-top: auto;
|
||||||
}
|
}
|
||||||
.blog_item_btn:hover {
|
.blog_item_btn:hover {
|
||||||
color: #FF3F3A;
|
color: #FF3F3A;
|
||||||
@@ -1234,6 +1261,12 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
.questions_inner img {
|
||||||
|
min-width: 350px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
.questions_content {
|
.questions_content {
|
||||||
margin-left: 30px;
|
margin-left: 30px;
|
||||||
@@ -1293,7 +1326,7 @@ body {
|
|||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
margin-top: 5px;
|
margin-top: 0;
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
accent-color: red;
|
accent-color: red;
|
||||||
}
|
}
|
||||||
@@ -1324,9 +1357,18 @@ body {
|
|||||||
}
|
}
|
||||||
.container {
|
.container {
|
||||||
}
|
}
|
||||||
|
.footer_top_wrapper {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
gap: 80px;
|
||||||
|
}
|
||||||
.footer_top_inner {
|
.footer_top_inner {
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-template-columns: repeat(5, auto);
|
gap: 80px;
|
||||||
|
}
|
||||||
|
.footer_top_col_inner {
|
||||||
|
display: flex;
|
||||||
|
white-space: nowrap;
|
||||||
gap: 80px;
|
gap: 80px;
|
||||||
}
|
}
|
||||||
.fotter_top_col {
|
.fotter_top_col {
|
||||||
@@ -1370,7 +1412,7 @@ body {
|
|||||||
font-weight: 701;
|
font-weight: 701;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
.footer_top_title--title1 {
|
.footer_top_title--title1 {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@@ -1472,11 +1514,33 @@ body {
|
|||||||
.footer_go_top:hover {
|
.footer_go_top:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ----------------------------------------BURGER MENU------------------------------------------------------- */
|
/* ----------------------------------------BURGER MENU------------------------------------------------------- */
|
||||||
.burger {
|
.burger {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ---------------------------------------------------1000---------------------------------------------------------------- */
|
||||||
|
|
||||||
|
@media (max-width: 1000px) {
|
||||||
|
.program_image {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.program_content {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.blog_row {
|
||||||
|
grid-template-columns: repeat(1, auto);
|
||||||
|
}
|
||||||
|
.blog_row {
|
||||||
|
place-content: center;
|
||||||
|
}
|
||||||
|
.blog_item {
|
||||||
|
align-items: center;
|
||||||
|
max-width: 650px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------900--------------------------------------------------------- */
|
/* ----------------------------------------------------900--------------------------------------------------------- */
|
||||||
|
|
||||||
@@ -1505,6 +1569,33 @@ body {
|
|||||||
.companies_grid {
|
.companies_grid {
|
||||||
grid-template: repeat(3, auto) / repeat(4, 1fr);
|
grid-template: repeat(3, auto) / repeat(4, 1fr);
|
||||||
}
|
}
|
||||||
|
.blog_top {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.blog_heading {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.info_inner {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
.info_content {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.info_map {
|
||||||
|
height: 200px;
|
||||||
|
max-width: none;
|
||||||
|
}
|
||||||
|
.questions_inner img {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.questions_content {
|
||||||
|
margin: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------1200--------------------------------------------------------- */
|
/* ----------------------------------------------------1200--------------------------------------------------------- */
|
||||||
@@ -1518,6 +1609,16 @@ body {
|
|||||||
.header_img {
|
.header_img {
|
||||||
max-width: 450px;
|
max-width: 450px;
|
||||||
}
|
}
|
||||||
|
.blog_item_info {
|
||||||
|
flex-direction: column;
|
||||||
|
margin: 0 0 8px;
|
||||||
|
}
|
||||||
|
.blog_info_el {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.blog_info_el::after {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --------------------------------------------------1100------------------------------------------------------- */
|
/* --------------------------------------------------1100------------------------------------------------------- */
|
||||||
@@ -1636,8 +1737,35 @@ body {
|
|||||||
}
|
}
|
||||||
.program_image {
|
.program_image {
|
||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
.footer_top_wrapper {
|
||||||
|
max-width: 515px;
|
||||||
|
}
|
||||||
|
.footer_top_inner {
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
.footer_top_text {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.footer_top_text {
|
||||||
|
margin-bottom: 18px;
|
||||||
|
}
|
||||||
|
.footer_socials {
|
||||||
|
margin-bottom: 18px;
|
||||||
|
}
|
||||||
|
.footer_top_col_inner {
|
||||||
|
margin-bottom: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer_top_form,
|
||||||
|
.footer_form_desc {
|
||||||
|
max-width: 315px;
|
||||||
|
}
|
||||||
|
.footer_form_desc {
|
||||||
|
margin-bottom: 60px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --------------------------------------------------------700--------------------------------------------------------------------------- */
|
/* --------------------------------------------------------700--------------------------------------------------------------------------- */
|
||||||
@@ -1668,6 +1796,9 @@ body {
|
|||||||
.testimonials_slide {
|
.testimonials_slide {
|
||||||
padding: 30px 15px;
|
padding: 30px 15px;
|
||||||
}
|
}
|
||||||
|
.blog_item {
|
||||||
|
max-width: 520px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------550------------------------------------------------------------------------ */
|
/* -------------------------------------------------------550------------------------------------------------------------------------ */
|
||||||
@@ -1731,6 +1862,97 @@ body {
|
|||||||
.companies_grid {
|
.companies_grid {
|
||||||
grid-template: repeat(4, auto) / repeat(3, 1fr);
|
grid-template: repeat(4, auto) / repeat(3, 1fr);
|
||||||
}
|
}
|
||||||
|
.program_acc_head {
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
.blog_item {
|
||||||
|
max-width: 420px;
|
||||||
|
}
|
||||||
|
.questions_form_row {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.questions_form_label {
|
||||||
|
margin: 0 0 24px 0;
|
||||||
|
}
|
||||||
|
.questions_form_label:last-child {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.questions_checkbox_label {
|
||||||
|
margin: 0 0 24px 0;
|
||||||
|
}
|
||||||
|
.questions_text_label {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.questions_form_label {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.questions_checkbox_label {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.questions_form_input,
|
||||||
|
.questions_form_text {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
.footer_top_col_inner {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.footer_top_col_inner {
|
||||||
|
gap: 30px;
|
||||||
|
}
|
||||||
|
.footer_top_title--slide {
|
||||||
|
margin: 0;
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
.footer_top_list {
|
||||||
|
margin-top: 12px;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.footer_bottom_inner {
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.footer_go_top {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
.footer_copy {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.main_about {
|
||||||
|
padding: 60px 0;
|
||||||
|
}
|
||||||
|
.about_createx {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
.main_cert {
|
||||||
|
margin-top: 100px;
|
||||||
|
}
|
||||||
|
.main_team {
|
||||||
|
padding-top: 120px;
|
||||||
|
padding-bottom: 100px;
|
||||||
|
}
|
||||||
|
.main_testimonials {
|
||||||
|
padding-bottom: 100px;
|
||||||
|
}
|
||||||
|
.main_companies {
|
||||||
|
padding-bottom: 40px;
|
||||||
|
}
|
||||||
|
.main_program {
|
||||||
|
margin-top: 60px;
|
||||||
|
margin-bottom: 100px;
|
||||||
|
}
|
||||||
|
.main_blog {
|
||||||
|
margin-bottom: 100px;
|
||||||
|
}
|
||||||
|
.main_info {
|
||||||
|
margin-bottom: 100px;
|
||||||
|
}
|
||||||
|
.main_questions {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
.footer_top {
|
||||||
|
margin-top: 60px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------------------------------------450------------------------------------------------------------- */
|
/* ------------------------------------------------------450------------------------------------------------------------- */
|
||||||
@@ -1769,6 +1991,13 @@ body {
|
|||||||
.companies_grid {
|
.companies_grid {
|
||||||
grid-template: repeat(6, auto) / repeat(2, 1fr);
|
grid-template: repeat(6, auto) / repeat(2, 1fr);
|
||||||
}
|
}
|
||||||
|
.blog_item {
|
||||||
|
max-width: 380px;
|
||||||
|
}
|
||||||
|
.info_socials_item {
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user