|
|
@@ -0,0 +1,143 @@
|
|
|
+a {
|
|
|
+ transition: all .3s ease;
|
|
|
+}
|
|
|
+
|
|
|
+header {
|
|
|
+ background: #22387d;
|
|
|
+}
|
|
|
+
|
|
|
+header .menu ul li a {
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+
|
|
|
+header .menu ul li a:hover {
|
|
|
+ color: rgb(68, 227, 241);
|
|
|
+}
|
|
|
+
|
|
|
+header .menu ul li .current, header .menu ul li .current:hover {
|
|
|
+ color: rgb(254, 131, 88);
|
|
|
+}
|
|
|
+
|
|
|
+.left-side .add-info .info {
|
|
|
+ background: #22387d;
|
|
|
+ transition: all .3s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.left-side .add-info .info:hover {
|
|
|
+ background: #929292;
|
|
|
+}
|
|
|
+
|
|
|
+.content-left .arrow {
|
|
|
+ width: 45px;
|
|
|
+ height: 45px;
|
|
|
+ background-size: contain;
|
|
|
+}
|
|
|
+
|
|
|
+.content-left .arrow-left {
|
|
|
+ background: url(../img/style/al.png);
|
|
|
+ left: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.content-left .arrow-right {
|
|
|
+ background: url(../img/style/ar.png);
|
|
|
+ right: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.swiper-container {
|
|
|
+ height: auto !important;
|
|
|
+}
|
|
|
+
|
|
|
+body footer {
|
|
|
+ bottom: unset;
|
|
|
+}
|
|
|
+
|
|
|
+.content-left .about .block-header {
|
|
|
+ background: #22387d;
|
|
|
+}
|
|
|
+
|
|
|
+.news {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+
|
|
|
+.news-item {
|
|
|
+ margin-bottom: 16px;
|
|
|
+ width: 24%;
|
|
|
+}
|
|
|
+
|
|
|
+.news-item .image {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.news-item .inner {
|
|
|
+ background: #ebebeb;
|
|
|
+}
|
|
|
+
|
|
|
+.news-item .title {
|
|
|
+ color: #fff;
|
|
|
+ position: absolute;
|
|
|
+ bottom: 10px;
|
|
|
+ left: 5px;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+
|
|
|
+.news-item .desc {
|
|
|
+ padding: 5px;;
|
|
|
+}
|
|
|
+
|
|
|
+.news-item .data {
|
|
|
+ padding: 5px;
|
|
|
+ border-top: 1px solid #d4d4d4;
|
|
|
+}
|
|
|
+
|
|
|
+.left-side .add-info .info {
|
|
|
+ font-size: 18px;
|
|
|
+}
|
|
|
+
|
|
|
+@media (max-width: 992px) {
|
|
|
+
|
|
|
+ .news-item {
|
|
|
+ margin-bottom: 16px;
|
|
|
+ width: 30%;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+@media (max-width: 768px) {
|
|
|
+ header .menu ul .burger {
|
|
|
+ left: 0;
|
|
|
+ top: 6px !important;
|
|
|
+ height: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ header .menu ul .circles {
|
|
|
+ display: block;
|
|
|
+ position: absolute !important;
|
|
|
+ top: -4px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+header .menu-mobile {
|
|
|
+ background: #22387d;
|
|
|
+}
|
|
|
+
|
|
|
+@media (max-width: 570px) {
|
|
|
+
|
|
|
+ .news-item {
|
|
|
+ margin-bottom: 16px;
|
|
|
+ width: 49%;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+@media (max-width: 370px) {
|
|
|
+
|
|
|
+ .news-item {
|
|
|
+ margin-bottom: 16px;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .news-item .image img{
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|