2079 lines
32 KiB
CSS
2079 lines
32 KiB
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 0;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
*, *::before, *::after {
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:focus, :active{outline: none;}
|
|
a:focus, a:active{outline: none;}
|
|
|
|
nav,footer,header,aside{display: block;}
|
|
|
|
html,body{
|
|
height: 100%;
|
|
width: 100%;
|
|
font-size: 100%;
|
|
line-height: 1;
|
|
font-size: 14px;
|
|
-ms-text-size-adjust: 100%;
|
|
-moz-text-size-adjust: 100%;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
input,button,textarea{font-family: inherit;}
|
|
|
|
input::-ms-clear{display: none;}
|
|
button{cursor: pointer;}
|
|
button::-moz-focus-inner{padding: 0; border: 0;}
|
|
a,a:visited{text-decoration: none;}
|
|
ul li{list-style: none;}
|
|
img{vertical-align: top;}
|
|
|
|
h1,h2,h3,h4,h5,h6 {font-size: inherit; font-weight: 400;}
|
|
|
|
|
|
/* ============== Project Start ======= */
|
|
.container {
|
|
max-width: 1400px;
|
|
padding: 0 60px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
|
|
/* Navigation */
|
|
.header {
|
|
padding: 24px 0;
|
|
}
|
|
|
|
.navbar {
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.nav_link {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* .navbar-links {
|
|
margin: 0;
|
|
} */
|
|
|
|
.logos {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.main_logo {
|
|
width: 245px;
|
|
height: 50px;
|
|
}
|
|
|
|
.main_logo img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.year_logo {
|
|
width: 55px;
|
|
height: 55px;
|
|
}
|
|
|
|
.year_logo img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
/* .nav_bg {
|
|
|
|
align-items: center;
|
|
} */
|
|
|
|
.navbar-links ul {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.navbar-links li {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
list-style: none;
|
|
margin-left: 35px;
|
|
}
|
|
|
|
.navbar-links li:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.navbar-links li a {
|
|
text-decoration: none;
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
color: #000;
|
|
}
|
|
|
|
.close_btn {
|
|
display: none;
|
|
}
|
|
|
|
.nav_arrow {
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.nav_arrow::after {
|
|
content: '';
|
|
position: absolute;
|
|
right: -15px;
|
|
top: 50%;
|
|
background: #000;
|
|
clip-path: polygon(0 0, 50% 50%, 100% 0);
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
.toggle-button {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
right: 60px;
|
|
display: none;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
width: 30px;
|
|
height: 21px;
|
|
}
|
|
|
|
.toggle-button .bar {
|
|
height: 3px;
|
|
width: 100%;
|
|
background-color: #222;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.flag-tm {
|
|
width: 27px;
|
|
height: 20px;
|
|
}
|
|
|
|
.flag-tm a {
|
|
width:100%;
|
|
height:100%;
|
|
|
|
}
|
|
|
|
.flag-tm a img{
|
|
width:27px;
|
|
height:20px;
|
|
|
|
}
|
|
|
|
/* sub-menu */
|
|
.sub-menu {
|
|
position: relative;
|
|
/* padding-right: 5px; */
|
|
}
|
|
|
|
.sub-menu ul {
|
|
display: none;
|
|
position: absolute;
|
|
flex-direction: column;
|
|
top: 100%;
|
|
z-index: 2;
|
|
padding: 5px;
|
|
/* width: 300px; */
|
|
}
|
|
|
|
.sub-menu:hover ul {
|
|
display: block;
|
|
}
|
|
|
|
.sub-menu ul li {
|
|
margin: 0;
|
|
padding: 5px 30px;
|
|
}
|
|
|
|
.sub-menu ul li:hover {
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
.sub-menu a {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.sub-menu:last-child .sub-items li {
|
|
margin-bottom: 5px;
|
|
padding: 0;
|
|
}
|
|
|
|
.sub-menu:last-child .sub-items li:last-child {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.sub-menu:last-child .sub-items {
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.sub-items {
|
|
background-color: white;
|
|
border: gray 1px solid;
|
|
border-radius: 5px;
|
|
margin-top: 1px;
|
|
/* width: 300px; */
|
|
}
|
|
|
|
.sub-items a {
|
|
padding: 0;
|
|
}
|
|
|
|
.sub-items li a div {
|
|
width: 27px;
|
|
height: 20px;
|
|
}
|
|
|
|
.sub-items li a div img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.sub-menu ul li a {
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
display: block;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* ===== Slider Start ===== */
|
|
|
|
.slider .slick-dotted.slick-slider {
|
|
margin: 0;
|
|
}
|
|
.slider .slick-dots {
|
|
position: absolute;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(0, 0, 0, .4);
|
|
border-radius: 20px;
|
|
width: 275px;
|
|
height: 20px;
|
|
margin: 4px 20px;
|
|
bottom: 25px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.slider .slick-dots li {
|
|
height: 4px;
|
|
width: 30px;
|
|
border-radius: 25px;
|
|
}
|
|
|
|
.slider .slick-dots li:hover {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.slider .slick-dots li button {
|
|
padding: 0;
|
|
line-height: 4px;
|
|
width: 30px;
|
|
color: #B6AB9A;
|
|
}
|
|
|
|
.slider .slick-dots li button:before {
|
|
font-size: 0;
|
|
background-color: #F8F8F8;
|
|
line-height: 4px;
|
|
height: 4px;
|
|
width: 30px;
|
|
border-radius: 25px;
|
|
}
|
|
|
|
.slider .slick-dots li {
|
|
display: flex;
|
|
list-style: none;
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.slider .slick-dots button {
|
|
font-size: 0;
|
|
opacity: 1;
|
|
}
|
|
|
|
.slider .slick-dots li.slick-active button {
|
|
color: #fff;
|
|
height: 4px;
|
|
width: 30px;
|
|
border-radius: 25px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.slider__img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.slider__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.slider .slick-prev {
|
|
width: 40px;
|
|
height: 80px;
|
|
left: 0;
|
|
top: 50%;
|
|
z-index: 1;
|
|
background: rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
.slider .slick-prev:hover, .slider .slick-prev:focus,
|
|
.slider .slick-next:hover, .slider .slick-next:focus {
|
|
background-color: rgba(0, 0, 0, .5);
|
|
|
|
}
|
|
|
|
.slider .slick-prev::before {
|
|
position: absolute;
|
|
content: '';
|
|
width: 20px;
|
|
height: 20px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background-image: url('../images/prevarrow.png') ;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.slider .slick-next {
|
|
width: 40px;
|
|
height: 80px;
|
|
right: 0;
|
|
top: 50%;
|
|
z-index: 1;
|
|
background: rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
.slider .slick-next::before {
|
|
position: absolute;
|
|
content: '';
|
|
width: 20px;
|
|
height: 20px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-20%, -50%);
|
|
background-image: url('../images/nextarrow.png') ;
|
|
background-repeat: no-repeat;
|
|
opacity: 1;
|
|
}
|
|
|
|
/* ===== Slider END ===== */
|
|
|
|
|
|
/* ======== news__acard Start ========= */
|
|
.news {
|
|
margin: 100px 0 60px;
|
|
}
|
|
|
|
.main__title {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.title{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.title h3 {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
line-height: 1.4;
|
|
font-family: 'Open Sans', sans-serif;
|
|
margin-right: 20px;
|
|
max-width: 70%;
|
|
color: #000;
|
|
}
|
|
|
|
.title .stright__line {
|
|
width: 200px;
|
|
height: 1px;
|
|
background-color: #003A9D;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.all__news a {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.all__news a h3 {
|
|
font-size: 16px;
|
|
color: #003A9D;
|
|
font-weight: 400;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.all__news a .right__arrow__img {
|
|
width: 18px;
|
|
height: 12px;
|
|
}
|
|
|
|
.all__news a .right__arrow__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.card__hero {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
width: calc(100% + 40px);
|
|
margin: 0 -20px;
|
|
margin-top: 50px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.news__card {
|
|
width: calc(33.33333% - 40px);
|
|
border: 1px solid #e3e3e3;
|
|
margin: 0 20px 40px 20px;
|
|
}
|
|
|
|
.news__card a .card__img {
|
|
width: 100%;
|
|
height: 260px;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.news__card a .card__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.card__title {
|
|
margin: 30px;
|
|
}
|
|
|
|
.card__data h4 {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #000;
|
|
opacity: .5;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.card__paragraph p {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
line-height: 1.4;
|
|
font-family: 'Open Sans', sans-serif;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.more a {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.more a h3 {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #003A9D;
|
|
font-family: 'Open Sans', sans-serif;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.more__img {
|
|
width: 18px;
|
|
height: 12px;
|
|
}
|
|
|
|
.more__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
/* ======== news__acard End ========= */
|
|
|
|
/* ======== Sliders Start ========= */
|
|
.sliders__hero {
|
|
background-color: #F8F8F8;
|
|
padding: 100px 0;
|
|
}
|
|
|
|
.sliders__img {
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 720px;
|
|
position: relative;
|
|
}
|
|
|
|
.sliders__img img{
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.sliders__hero .slick-dotted.slick-slider {
|
|
margin: 0;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.sliders {
|
|
position: relative;
|
|
margin-top: 50px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.sliders__img::before {
|
|
position: absolute;
|
|
content: '';
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
.slider__item {
|
|
position: relative;
|
|
}
|
|
|
|
.slider__title {
|
|
position: absolute;
|
|
z-index: 3;
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
width: 50%;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
color: #fff;
|
|
}
|
|
|
|
.slider__title p {
|
|
font-weight: 700px;
|
|
font-size: 38px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.sliders .slick-prev {
|
|
width: 40px;
|
|
height: 80px;
|
|
left: 0;
|
|
top: 50%;
|
|
z-index: 1;
|
|
background: transparent;
|
|
}
|
|
|
|
.sliders .slick-prev:hover, .sliders .slick-prev:focus,
|
|
.sliders .slick-next:hover, .sliders .slick-next:focus {
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
.sliders .slick-prev::before {
|
|
position: absolute;
|
|
content: '';
|
|
width: 20px;
|
|
height: 20px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background-image: url('../images/prevarrow.png') ;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.sliders .slick-next {
|
|
width: 40px;
|
|
height: 80px;
|
|
right: 0;
|
|
top: 50%;
|
|
z-index: 1;
|
|
background: transparent;
|
|
}
|
|
|
|
.sliders .slick-next::before {
|
|
position: absolute;
|
|
content: '';
|
|
width: 20px;
|
|
height: 20px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-20%, -50%);
|
|
background-image: url('../images/nextarrow.png') ;
|
|
background-repeat: no-repeat;
|
|
opacity: 1;
|
|
}
|
|
|
|
.sliders .slick-dots li button:before {
|
|
font-size: 0;
|
|
width: 30px;
|
|
height: 4px;
|
|
border-radius: 20px;
|
|
background-color: #fff;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.sliders .slick-dots li {
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.sliders .slick-dots {
|
|
width: 30%;
|
|
left: 50%;
|
|
width: 350px;
|
|
background-color: transparent;
|
|
bottom: 30px;
|
|
transform: translateX(-50%);
|
|
z-index: 10;
|
|
}
|
|
/* ======== Sliders END ========= */
|
|
|
|
/* ======== Department Start ========= */
|
|
|
|
.department {
|
|
margin: 100px 0 60px;
|
|
}
|
|
|
|
.department__card__hero {
|
|
width: calc(100% + 40px);
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 0 -20px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.department__card {
|
|
position: relative;
|
|
width: calc(33.33333% - 40px);
|
|
margin: 0 20px 40px 20px;
|
|
border: 1px solid #e3e3e3;
|
|
border-bottom: 4px solid #981429;
|
|
}
|
|
|
|
.department__card__img {
|
|
width: 100%;
|
|
height: 240px;
|
|
/* padding: 10px; */
|
|
}
|
|
|
|
.department__card__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.department__card__name {
|
|
text-align: center;
|
|
}
|
|
|
|
.department__card__name p {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
line-height: 1.5;
|
|
font-family: 'Open Sans', sans-serif;
|
|
margin: 10px 20px 20px 20px;
|
|
}
|
|
|
|
.department__card:hover {
|
|
background-color: #981429;
|
|
transition: .3s all linear;
|
|
}
|
|
|
|
.department__card:hover .department__card__name p {
|
|
color: #fff;
|
|
}
|
|
|
|
.top__img {
|
|
position: absolute;
|
|
display: block;
|
|
width: 50px;
|
|
height: 50px;
|
|
transition: .3s all linear;
|
|
}
|
|
|
|
.department__card:hover .top__img {
|
|
background: url("../images/redarrow.png");
|
|
cursor: pointer;
|
|
transition: .3s all linear;
|
|
}
|
|
|
|
/* ======== Department END ========= */
|
|
|
|
/* ======== Useful START ========= */
|
|
|
|
.useful {
|
|
background-color: #F8F8F8;
|
|
padding: 100px 0 80px;
|
|
}
|
|
|
|
.useful__card__hero {
|
|
width: calc(100% + 20px);
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 0 -10px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.useful__card {
|
|
position: relative;
|
|
width: calc(25% - 20px);
|
|
margin: 0 10px 20px 10px;
|
|
border: 1px solid #e3e3e3;
|
|
border-bottom: 4px solid #981429;
|
|
}
|
|
|
|
.useful__card__img {
|
|
width: 100%;
|
|
height: 170px;
|
|
}
|
|
|
|
.useful__card__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.useful__card__name {
|
|
display: flex;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 20px;
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
.useful__card__name p a {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
font-family: 'Open Sans', sans-serif;
|
|
line-height: 1.7;
|
|
}
|
|
/* ======== Useful END ========= */
|
|
|
|
.footer {
|
|
padding: 50px 0;
|
|
background-color: #003A9D;
|
|
}
|
|
|
|
.footer__main {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
width: calc(100% + 20px);
|
|
}
|
|
|
|
.footer__col {
|
|
width: calc(20% - 20px);
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.footer__col__name {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.footer__col__name h3 {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.footer__col__departs {
|
|
|
|
}
|
|
|
|
.footer__col__paragraph {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.footer__col__paragraph p {
|
|
position: relative;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #fff;
|
|
line-height: 1.5;
|
|
padding-left: 30px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.footer__col__paragraph h4 {
|
|
position: relative;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #fff;
|
|
line-height: 1.6;
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
}
|
|
|
|
.footer__col__paragraph p::before {
|
|
position: absolute;
|
|
content: '';
|
|
width: 20px;
|
|
height: 12px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
left: 0;
|
|
background-image: url('../images/rightaww.png');
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
/* ---------- index file finished ----------------- */
|
|
|
|
/* =======Brandgap
|
|
====Start======== */
|
|
.brandgap {
|
|
background-color: #003A9D;
|
|
padding: 30px 0 20px;
|
|
}
|
|
|
|
.brandgap__wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 0 -20px;
|
|
}
|
|
|
|
.brandgap__box a {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #fff;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.brandgap__box {
|
|
position: relative;
|
|
margin: 0 20px 10px;
|
|
}
|
|
|
|
.brandgap__box::after {
|
|
position: absolute;
|
|
content: '/';
|
|
font-size: 16px;
|
|
color: #fff;
|
|
font-weight: 400;
|
|
top:50%;
|
|
transform: translateY(-50%);
|
|
right: -35%;
|
|
|
|
}
|
|
|
|
.brandgap__title {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.brandgap__title p {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #FFFFFF;
|
|
opacity: .5;
|
|
cursor: pointer;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
/* =======Brandgap
|
|
====End======== */
|
|
|
|
/* === news.index start */
|
|
.news__etalon {
|
|
margin-top: -50px;
|
|
}
|
|
|
|
.prev__and__next {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.box {
|
|
width: 70px;
|
|
height: 70px;
|
|
border: 1px solid #e3e3e3;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
display: block;
|
|
}
|
|
|
|
.box_input {
|
|
width: 70px;
|
|
height: 70px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.box_input input {
|
|
width: calc(100% - 20px);
|
|
padding: 5px 10px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 1.4;
|
|
text-align: center;
|
|
}
|
|
|
|
.number {
|
|
width: 70px;
|
|
height: 70px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.number h1 {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
}
|
|
|
|
|
|
|
|
/* === news.index end */
|
|
|
|
|
|
/* === first-videomeeting.index start */
|
|
.videomeeting {
|
|
padding: 50px 0 50px;
|
|
}
|
|
|
|
.videiomeeting__main {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.videomeeting__img__container {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.videomeeting__img {
|
|
border: 1px solid #e3e3e3;
|
|
border-bottom: 4px solid #981429;
|
|
width: 90%;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.videomeeting__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
padding: 20px;
|
|
}
|
|
|
|
.videomeeting__title {
|
|
text-align: center;
|
|
margin: 10px 0 30px;
|
|
}
|
|
|
|
.videomeeting__title h3 {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.videomeeting__paragraph {
|
|
margin: 50px 0;
|
|
}
|
|
|
|
.videomeeting__paragraph p {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
color: #000;
|
|
line-height: 1.5;
|
|
font-family: 'Open Sans', sans-serif;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.videomeeting__paragraph p:first-child {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.videomeeting__paragraph p:last-child {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.videomeeting__paragraph h3 {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
margin-bottom: 20px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.videomeeting__paragraph ul {
|
|
list-style: disc;
|
|
margin-left: 40px;
|
|
}
|
|
|
|
.videomeeting__paragraph li {
|
|
list-style: disc;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
color: #000;
|
|
margin-bottom: 20px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
line-height: 1.5;
|
|
}
|
|
/* === first-videomeeting.index end */
|
|
|
|
|
|
/* === legislative-state start === */
|
|
.legislative {
|
|
margin: 50px 0 80px;
|
|
}
|
|
|
|
.legislative__main {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 0 -20px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.legislative__card {
|
|
width: calc(33.33333% - 40px);
|
|
margin: 20px;
|
|
padding: 30px;
|
|
border: 1px solid #e3e3e3;
|
|
border-bottom: 4px solid #981429;
|
|
}
|
|
|
|
.legislative__title {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.legislative__title h3 {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #000;
|
|
line-height: 1.4;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.legislative__paragraph {
|
|
text-align: center;
|
|
}
|
|
|
|
.legislative__paragraph p {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
line-height: 1.4;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
/* === legislative-state end === */
|
|
|
|
/* === history company start === */
|
|
.history {
|
|
margin: 50px 0 100px;
|
|
}
|
|
|
|
.history__main {
|
|
margin: 50px 0;
|
|
}
|
|
|
|
.history__card {
|
|
padding: 30px;
|
|
border: 1px solid #e3e3e3;
|
|
border-bottom: #981429 4px solid;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.history__title {
|
|
width: 60%;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.history__title h3 {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
line-height: 1.5;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.history__paragraph p {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
color: #000;
|
|
line-height: 1.7;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
/* === history company end === */
|
|
|
|
/* === structure start === */
|
|
.structure {
|
|
padding: 50px 0 100px 0;
|
|
}
|
|
|
|
.structure__name h3 {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.structure__img {
|
|
padding-top: 50px;
|
|
width: 100%;
|
|
}
|
|
|
|
.structure__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.table__container {
|
|
width: 100%;
|
|
margin-top: 50px;
|
|
|
|
|
|
}
|
|
|
|
.table__container #example5_wrapper .row:nth-child(2){
|
|
border: 2px solid #cecece;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
table {
|
|
max-width: 1280px;
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
.thead {
|
|
cursor: pointer;
|
|
}
|
|
.thead th {
|
|
position: relative;
|
|
cursor: pointer;
|
|
padding: 20px 50px;
|
|
}
|
|
|
|
.info__none th {
|
|
padding: 20px 50px;
|
|
}
|
|
|
|
.thead th:hover {
|
|
background-color: #dfe3e7;
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
background-color: #cecece;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid #cecece;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
padding: 30px 10px;
|
|
line-height: 1.6;
|
|
}
|
|
/* === structure end === */
|
|
|
|
/* === reestsdocs ==== start */
|
|
.input__hero {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.boxContainer {
|
|
position: relative;
|
|
width: 400px;
|
|
height: 60px;
|
|
border: .5px solid #E9ECEF;
|
|
padding: 10px;
|
|
}
|
|
|
|
.elementsContainer {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.search {
|
|
border: none;
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 0 5px;
|
|
border-radius: 50px;
|
|
font-size: 16px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
color: #CCCCCC;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.search:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.search__img {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
/* arrows start */
|
|
.input__arrows {
|
|
display: flex;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.arrows {
|
|
height: 60px;
|
|
width: 60px;
|
|
border: .5px solid #E9ECEF;
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
.arrow__img {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
/* === reestsdocs ==== end */
|
|
|
|
/* === information start === */
|
|
.information {
|
|
margin-top: 50px;
|
|
}
|
|
/* apptype start */
|
|
.apptype {
|
|
margin-top: 50px;
|
|
}
|
|
.apptype__hero {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
width: calc(100% + 20px);
|
|
padding: 30px 0 50px 0;
|
|
margin: 0 -10px;
|
|
}
|
|
|
|
.apptype__main {
|
|
position: relative;
|
|
width: calc(25% - 40px);
|
|
margin: 10px;
|
|
border: 1px solid #DFDFDF;
|
|
border-bottom: 4px solid #981429;
|
|
}
|
|
|
|
.printer {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 50px;
|
|
height: 50px;
|
|
background-color: #981429;
|
|
display: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.printer img {
|
|
margin-top: 50%;
|
|
transform: translateY(-50%);
|
|
margin-left: 28%;
|
|
|
|
}
|
|
|
|
.apptype__main:hover {
|
|
background-color: #981429;
|
|
transition: .3s;
|
|
}
|
|
|
|
.apptype__main:hover p {
|
|
color: #fff;
|
|
}
|
|
|
|
.apptype__main:hover .printer {
|
|
display: flex;
|
|
}
|
|
|
|
.apptype__img {
|
|
width: 100%;
|
|
height: 325px;
|
|
padding: 10px 10px 0 10px;
|
|
}
|
|
|
|
.apptype__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.apptype__paragraph {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 20px 10px;
|
|
}
|
|
|
|
.apptype__paragraph p {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
}
|
|
/* apptype end */
|
|
|
|
/* === price start */
|
|
.price__main {
|
|
margin-top: 30px;
|
|
}
|
|
/* === price end */
|
|
|
|
/* === tarif start */
|
|
.tarif {
|
|
margin: 50px 0 60px;
|
|
}
|
|
|
|
.tarif__main {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 0 -20px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.tarif__card {
|
|
width: calc(33.33333% - 40px);
|
|
margin: 20px;
|
|
padding: 50px 30px;
|
|
border: 1px solid #e3e3e3;
|
|
border-bottom: 4px solid #981429;
|
|
}
|
|
|
|
.tarif__card h4 {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
font-family: 'Open Sans', sans-serif;
|
|
text-align: center;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.tarif__card h4 a {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
font-family: 'Open Sans', sans-serif;
|
|
text-align: center;
|
|
line-height: 1.5;
|
|
}
|
|
/* === tarif end */
|
|
|
|
/* === govreest start === */
|
|
.govreest {
|
|
margin: 50px 0;
|
|
}
|
|
/* === govreest end */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.error {
|
|
height: calc(100vh - 330px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.error h1 {
|
|
margin: 0 auto;
|
|
width: 90%;
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
line-height: 1.4;
|
|
text-align: center;
|
|
margin: 0 auto 50px;
|
|
}
|
|
|
|
.error__link {
|
|
padding: 20px 40px;
|
|
background: #003A9D;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
line-height: 1.4;
|
|
color: #fff;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* ====== MEDIA ====== */
|
|
@media(max-width:1225px) {
|
|
|
|
.sliders__img {
|
|
height: 600px;
|
|
}
|
|
|
|
.slider .slick-dots {
|
|
top: 92%;
|
|
}
|
|
|
|
.nav_bg {
|
|
position: fixed;
|
|
top: 0;
|
|
right: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, .5);
|
|
z-index: 50;
|
|
transition: all .2s linear;
|
|
}
|
|
|
|
.nav_bg.active {
|
|
right: 0;
|
|
}
|
|
|
|
.navbar-links {
|
|
position: fixed;
|
|
top: 0;
|
|
right: -100%;
|
|
width: 60%;
|
|
height: 100%;
|
|
background: #fff;
|
|
transition: all .2s linear;
|
|
|
|
}
|
|
|
|
.nav_bg.active .navbar-links {
|
|
right: 0;
|
|
}
|
|
|
|
.navbar-links ul {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 100px 0 0 0;
|
|
}
|
|
|
|
.close_btn {
|
|
display: block;
|
|
position: absolute;
|
|
top: 40px;
|
|
right: 50px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.close_btn img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* toggle end */
|
|
.navbar-links li {
|
|
margin: 0 0 50px 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.nav_link {
|
|
text-align: center;
|
|
}
|
|
|
|
.navbar-links li:last-child .sub-items {
|
|
width: auto;
|
|
}
|
|
|
|
.toggle-button {
|
|
display: flex;
|
|
}
|
|
|
|
.navbar {
|
|
align-items: center;
|
|
}
|
|
|
|
.sub-menu ul {
|
|
display: none;
|
|
position: absolute;
|
|
flex-direction: column;
|
|
top: calc(100% + 10px);
|
|
z-index: 2;
|
|
padding: 5px;
|
|
/* width: 300px; */
|
|
}
|
|
|
|
/* == legislative start == */
|
|
|
|
.legislative__main {
|
|
margin: 0 -10px ;
|
|
}
|
|
.legislative__card {
|
|
margin: 10px;
|
|
}
|
|
/* == legislative end ==== */
|
|
|
|
.table__container {
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.table__container table {
|
|
width: 1280px;
|
|
}
|
|
|
|
.apptype__main {
|
|
width: calc(33.33333% - 40px);
|
|
}
|
|
|
|
.useful__card__img {
|
|
height: 145px;
|
|
/* padding: 10px; */
|
|
}
|
|
|
|
/* .news__card a .card__img {
|
|
padding: 10px;
|
|
} */
|
|
|
|
.title h3 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width:1025px) {
|
|
.header {
|
|
padding: 18px 0;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 40px;
|
|
}
|
|
|
|
.slider .slick-prev, .slick-next {
|
|
opacity: 0;
|
|
}
|
|
|
|
.news {
|
|
margin: 60px 0 20px;
|
|
}
|
|
|
|
.card__hero {
|
|
width: calc(100% + 20px);
|
|
margin: 30px -10px 40px;
|
|
}
|
|
|
|
.news__card {
|
|
width: calc(33.33333% - 20px);
|
|
margin: 0 10px 20px 10px;
|
|
}
|
|
|
|
.card__title {
|
|
margin: 20px;
|
|
}
|
|
|
|
.card__data h4 {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.card__paragraph p {
|
|
font-size: 14px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.more a h3 {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.more__img {
|
|
width: 14px;
|
|
height: 10px;
|
|
}
|
|
|
|
.sliders__hero {
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.sliders__hero .slick-dotted.slick-slider {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.sliders::after {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.department {
|
|
margin: 60px 0 20px;
|
|
}
|
|
|
|
.department__card {
|
|
width: calc(33.33333% - 20px);
|
|
margin: 0 10px 20px 10px;
|
|
}
|
|
|
|
.department__card__hero {
|
|
margin: 0 -10px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.department__card__name p {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.useful {
|
|
padding: 60px 0 40px;
|
|
}
|
|
|
|
.useful__card__hero {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.useful__card__name {
|
|
margin: 10px;
|
|
}
|
|
|
|
.useful__card__name p a {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.footer__col {
|
|
width: calc(33.33333% - 20px);
|
|
}
|
|
|
|
.sliders .slick-prev::before {
|
|
display: none;
|
|
}
|
|
|
|
.sliders .slick-next::before {
|
|
display: none;
|
|
}
|
|
|
|
/* === videomeeting start === */
|
|
.videomeeting__img {
|
|
width: 100%;
|
|
}
|
|
|
|
.videomeeting__title h3 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.videomeeting__paragraph {
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.videomeeting__paragraph p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.videomeeting__paragraph li {
|
|
font-size: 16px;
|
|
}
|
|
/* === videomeeting end === */
|
|
|
|
.legislative__main {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.legislative__card {
|
|
padding: 20px;
|
|
}
|
|
|
|
.history__title {
|
|
width: 100%;
|
|
}
|
|
|
|
.useful__card__img {
|
|
height: 120px;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.slider__title p {
|
|
font-size: 32px;
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width:900px) {
|
|
|
|
.sliders__img {
|
|
height: 470px;
|
|
}
|
|
|
|
.slider .slick-dots {
|
|
top: 88%;
|
|
}
|
|
|
|
.sliders .slick-dots {
|
|
bottom: 0;
|
|
}
|
|
.card__hero {
|
|
width: calc(100% + 20px);
|
|
margin: -10px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.news__card {
|
|
width: calc(50% - 20px);
|
|
}
|
|
|
|
.department__card__hero {
|
|
width: calc(100% + 20px);
|
|
}
|
|
|
|
.department__card {
|
|
width: calc(50% - 20px);
|
|
}
|
|
|
|
.footer__col__name h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.footer__col__paragraph p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.footer__col__paragraph h4 {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.useful__card {
|
|
width: calc(50% - 20px);
|
|
}
|
|
|
|
/* == legislative start == */
|
|
.legislative__main {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.legislative__card {
|
|
width: calc(50% - 40px);
|
|
}
|
|
|
|
.legislative__title h3 {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.legislative__paragraph p {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.legislative__card {
|
|
padding: 20px;
|
|
}
|
|
/* == legislative end ==== */
|
|
|
|
.apptype__main {
|
|
width: calc(50% - 40px);
|
|
}
|
|
|
|
.tarif__card {
|
|
width: calc(50% - 40px);
|
|
}
|
|
|
|
.news__card a .card__img {
|
|
height: 200px;
|
|
}
|
|
|
|
.department__card__img {
|
|
height: 200px;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.useful__card__img {
|
|
height: 200px;
|
|
}
|
|
|
|
.slider__title p {
|
|
font-size: 28px;
|
|
}
|
|
}
|
|
|
|
@media(max-width:700px) {
|
|
.sliders__img {
|
|
height: 310px;
|
|
}
|
|
|
|
.brandgap {
|
|
display: none;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 30px;
|
|
}
|
|
|
|
.govreest {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.structure {
|
|
padding: 20px 0 50px 0;
|
|
}
|
|
|
|
.department {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.videomeeting {
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.history {
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.information {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.legislative {
|
|
margin: 30px 0 50px;
|
|
}
|
|
|
|
.tarif {
|
|
margin: 30px 0 40px;
|
|
}
|
|
|
|
|
|
.title h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.slider__title p {
|
|
font-size: 22px;
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width:600px){
|
|
|
|
.container {
|
|
padding: 0 30px;
|
|
}
|
|
|
|
.main_logo {
|
|
width: 210px;
|
|
height: 45px;
|
|
}
|
|
|
|
.year_logo {
|
|
width: 45px;
|
|
height: 45px;
|
|
}
|
|
|
|
.toggle-button {
|
|
right: 42px;
|
|
}
|
|
|
|
.slider .slick-dots {
|
|
top: 85%;
|
|
}
|
|
|
|
.news {
|
|
margin: 40px 0 20px;
|
|
}
|
|
|
|
.sliders__hero {
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.department {
|
|
margin: 40px 0 20px;
|
|
}
|
|
|
|
.useful {
|
|
padding: 40px 0 20px;
|
|
}
|
|
|
|
.footer {
|
|
padding: 40px 0 10px;
|
|
}
|
|
|
|
.title h3 {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.title .stright__line {
|
|
width: 100px;
|
|
}
|
|
.news__card {
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
.department__card {
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
.useful__card {
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
.footer__col {
|
|
width: calc(50% - 20px);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.news__card a .card__img {
|
|
height: 250px;
|
|
background-color: #eeeeee;
|
|
}
|
|
|
|
/* news.html */
|
|
.news__etalon {
|
|
margin-top: -10px;
|
|
}
|
|
|
|
/* === videomeeting start === */
|
|
|
|
.videomeeting__img img {
|
|
padding: 10px;
|
|
}
|
|
|
|
.videomeeting__title {
|
|
margin: 10px 0 20px;
|
|
}
|
|
|
|
.videomeeting__title h3 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.videomeeting__paragraph {
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.videomeeting__paragraph p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.videomeeting__paragraph li {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.videomeeting__paragraph h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.legislative {
|
|
margin: 30px 0 50px;
|
|
}
|
|
|
|
.legislative__card {
|
|
width: calc(100% - 40px);
|
|
}
|
|
/* === videomeeting end === */
|
|
|
|
.history {
|
|
margin: 30px 0 30px;
|
|
}
|
|
|
|
.history__main {
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.history__card {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.history__title h3 {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.history__paragraph p {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.apptype__main {
|
|
width: calc(100% - 40px);
|
|
}
|
|
|
|
.tarif__card {
|
|
width: calc(100% - 40px);
|
|
}
|
|
|
|
.useful__card__img {
|
|
height: 200px;
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width:450px) {
|
|
|
|
.container {
|
|
padding: 0 20px;
|
|
}
|
|
.slider .slick-dots {
|
|
top: 80%;
|
|
}
|
|
.news__card a .card__img {
|
|
height: 200px;
|
|
}
|
|
|
|
.title .stright__line {
|
|
width: 50px;
|
|
}
|
|
|
|
.sliders::after {
|
|
font-size: 18px;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.footer__col {
|
|
width: calc(100% - 20px);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.slider__title p {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
@media(max-width:365px) {
|
|
.main_logo {
|
|
width: 200px;
|
|
height: 40px;
|
|
}
|
|
|
|
.year_logo {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.title .stright__line {
|
|
display: none;
|
|
}
|
|
|
|
.videomeeting__title h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.title {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
|