/*---------- HEADER&FOOTER----------*/
body {
    margin: 0;
}
.slicknav_menu{
    display: none;
	font-family: 'Poppins', sans-serif;
}

header {
    display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: 30px 40px 25px;
    grid-template-areas:
        "a nav"
        "a nav"
        "em2 em2";
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #1a559b;
}
header a.logo{
	grid-area: a;
	text-decoration: none; 
}
header a.logo h1{
    padding-left: 110px;
    font-weight: 500;
    font-size: 21px;
    margin-bottom: 0;
    text-decoration: none;
    color: #1a559b;
	text-transform: uppercase;
}

header a.logo em{
	font-family: 'Poppins', sans-serif;
    font-style: normal;
    padding-left: 110px;
    color: #9a9a9a;
    font-weight: 400;
    text-decoration: none;
	font-size: 18px;
}

header em.tel {
    grid-area: em2;
    padding-left: 0;
    width: 100%;
	padding: 4px; 
    text-align: center;
    color: white;
    background-color: #1a559b;
    font-weight: 300;
	box-sizing:border-box;
	font-style: normal;
}
   
.tel a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding-left: 10px;
}

.tel a:hover {
    text-decoration: underline;
}

header nav {
    grid-area: nav;
    font-size: 18px;
    font-weight: 600;
    align-content: center;
}

header ul {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin-right: 50px;
}

header nav ul li a{
    color: #1a559b;
    min-width: 120px;
    margin: 0 0 0 30px;
    text-align: center;
    padding: 5px 10px;
    text-decoration: none;
	font-weight: 600; 
	text-transform: uppercase;
}

header nav ul li a:hover {
    background-color: #1a559b;
    border-radius: 7px;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
}

/*---------- HEADER&FOOTER----------*/

/*----------NASLOVNICA homepage_main_image_section ----------*/
.homepage_main_image_section {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.homepage_main_image_section figure {
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 500px;   
    background-color: #000000;
    position: relative;
}

.homepage_main_image_section figure img {   
    margin-top: -100px;
    min-width: 100%;
    object-fit: contain;
    opacity: 50%;
}

.homepage_main_image_section figure h2 {
    position: absolute;
    top: 40%;
    left: 50%;
    text-align: center;
    color: white;
    font-size: 60px;
    font-weight: 700;
    transform: translate(-50%, -50%);
}

.homepage_main_image_section figure figcaption {
    position: absolute;
    top: 55%;
    left: 50%;
    text-align: center;
    color: white;
    font-size: 30px;
    transform: translate(-50%, -50%);
}

/*----------NASLOVNICA homepage_main_image_section ----------*/

/*----------NASLOVNICA homepage_products_section ----------*/

.homepage_products_section {
    padding: 0 0 50px 0;
    font-family: 'Poppins', sans-serif;
}

.homepage_products_section h1 {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
	margin-top: 20px;
}

.product_container {
    width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.product_container article{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 370px;
    height: 250px;
    margin: 15px;
    text-align: center;
    outline: 1px solid gray;
    justify-content: flex-end;
    transition: transform .2s;
}
.product_container article figure{
	margin: auto; 
}
.product_container article figure a img{
    max-width: 140px;
    max-height:130px ;
}
.product_container article h3 {
    margin-bottom: 0;
}

.product_container article h3 a {
    text-decoration: none;
    color: black;
    margin: 0;
	font-size: 20px; 
	font-weight: bold; 
}

.read_more_button {
    text-decoration: none;
    color: #1a559b;
    font-weight: 700;
	text-transform: uppercase;
}
.read_more_button:hover{
	text-decoration: underline;
}


.product_container article:hover {
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.75);
    cursor: pointer;
    transform: scale(1.02);
}

/*----------NASLOVNICA homepage_products_section ----------*/

/*----------NASLOVNICA homepage_about_us_section ----------*/
.homepage_about_us_section article {
    display: grid;
    justify-content: center;
	margin: auto; 
    grid-template-columns: 450px 750px;
    grid-template-rows: 80px 150px 50px;
    grid-template-areas:
        "img h2"
		"img em"
		"img btn";
    font-family: 'Poppins', sans-serif;
    background-color: #f2f2f2;
    padding: 50px 0 50px;
}

.homepage_about_us_section figure a {
    grid-area: img;
    width: 10%;
    height: 300px;
    margin: 0;
}

.homepage_about_us_section figure a img {
    width: 400px;
    height: auto;
}
.homepage_about_us_section article h2{
	grid-area: h2;
}
.homepage_about_us_section article h2 a{
    font-size: 28px;
    overflow: hidden;
    height: 100px;
	color: black; 
	font-weight: 700;
	text-decoration: none; 
}
.homepage_about_us_section article em{
	  grid-area: em;
}
.homepage_about_us_section article em a{
    width: 90%;
    font-style: normal;
    padding-left: 30px;
    overflow: hidden;
    height: 130px;
}
.about_us_button {
    grid-area: btn;
    width: 120px;
    text-decoration: none;
    background-color: #1b559e;
    color: white;
    padding: 13px 30px;
    text-align: center;
    border-radius: 7px;
}

.about_us_button:hover {
    background-color: #133a69;
}

/*----------NASLOVNICA homepage_about_us_section ----------*/

/*----------NASLOVNICA homepage_coil_type_section ----------*/
.homepage_coil_type_section {
    display: grid;
    justify-content: center;
    grid-template-columns: 700px 500px;
    grid-template-rows: 300px;
    grid-template-areas:
        "article img";
    font-family: 'Poppins', sans-serif;
    padding: 50px 0 50px 0;
    margin: auto;
}

.homepage_coil_type_section figure{
    grid-area: img;
    justify-self: center;
    margin: 0;
}

.homepage_coil_type_section figure img{
    grid-area: img;
	width: 400px; 
	height: auto;
}

.homepage_coil_type_section article{
    display: grid;
    grid-template-rows: 100px 150px 50px;
    grid-template-areas:
    "h2"
    "em"
    "a";
}
.homepage_coil_type_section article h2 {
    grid-area: h2;
    font-size: 28px;
    overflow: hidden;
    height: 100px;
	font-weight: 700; 
}

.homepage_coil_type_section article em {
    grid-area: em;
    display: block;
    width: 100%;
    font-style: normal;
    overflow: hidden;
    height: 130px;
}

.about_coils_button {
    display: block;
    grid-area: a;
    width: 140px;
    text-decoration: none;
    background-color: #1b559e;
    color: white;
    padding: 13px 30px;
    text-align: center;
    border-radius: 7px;
}

.about_coils_button:hover {
    background-color: #133a69;
}

/*----------NASLOVNICA homepage_coil_type_section ----------*/

/*-----------Contact Form Quick ----------*/
.contact {
    display: table;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    margin: auto;
    background-color: #2a2a2a;
    padding: 50px 0;
}

.contact aside {
	display: table;
	width: 1200px;
	margin: 0 auto;	
}

.contact article {
	width: 45%;
	float: left;
}

.contact article h2 {
    font-size: 30px;
    margin-bottom: 0;
    margin-top: 10px;
    overflow: hidden;
    height: 100px;
    color: #fff;
    font-weight: 600;
}

.contact article em {
    display: block;
    font-style: normal;
    overflow: hidden;
    height: 100px;
    color: #fff;
}

#quick_query_form {
	display: table;
	float: right;
	width: 48%;
	margin-right: 50px;
}

#quick_query_form input, #quick_query_form textarea {
	font-family:'Poppins', sans-serif;
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	border-radius: 7px;
	resize:none;
	border: none; 
}

#quick_query_form input[type = submit]{
	width: 150px;
	background-color: #1A559B;
	color: white; 
	font-size: 16px;
	border: 0px;
	outline: 0px;
	transition: 0.3s;
}

#quick_query_form input[type = submit]:hover{
	background-color: white;
	color: black;
	cursor: pointer; 
}

#quick_query_form input::placeholder, #quick_query_form textarea::placeholder {
	font-size: 16px;
}
#quick_query_form div.consent_data{
	color: white; 
	font-size: 12px;
	margin-bottom: 10px;
}

/*----------Contact Form Quick  ----------*/

/*----------Footer ----------*/
footer {
    background-color: #1a559b;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: grid;
    grid-template-columns: 33% 34% 33%;
    grid-template-rows: 200px 30px;
    row-gap: 30px;
    justify-content: center;
    padding: 70px 0 0;
    grid-template-areas:
        "footer_logo footer_info footer_contact"
        "copyright copyright copyright";
}

.footer_logo {
    grid-area: footer_logo;
    justify-self: center;
}

.footer_logo a{
	text-decoration: none; 
}
.footer_logo a:hover{
	text-decoration: underline; 
	color: white;
}
.footer_logo a h1 {
    font-weight: 400;
	text-transform: uppercase;
	font-size: 24px;
	color: white;
    margin-bottom: 0;
}

.footer_logo a em {
    font-style: normal;
	text-decoration: none; 
	font-size: 18px;
	font-style: normal;
	color: white;
}
.footer_logo figure a img{
	width: 200px;
	height: auto;
}
.footer_info {
    grid-area: footer_info;
    justify-self: center;
}
.footer_info p:nth-of-type(1){
	display: none; 
}

.footer_info h3{
    font-size: 18px;
    font-weight: 500;
	margin-bottom: 5px; 
}

.footer_info p {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 400;
}

.footer_contact {
    grid-area: footer_contact;
    justify-self: center;
}

.footer_contact h3 {
    font-size: 18px;
    font-weight: 500;
	margin-bottom: 5px; 
}

.footer_contact p {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 400;
}

.footer_contact p a {
    text-decoration: none;
    color: white;
}

.footer_contact p a:hover {
    text-decoration: underline;
}

.footer_contact p:nth-of-type(3) a:hover {
    text-decoration: none;
}

.copyright {
    grid-area: copyright;
    width: 100%;
    background-color: #000000;
    display: grid;
    justify-content: space-around;
    grid-template-columns: 650px 150px;
    grid-template-rows: 30px;
    grid-template-areas: "p a";
}
.copyright p{
    grid-area: p;
    color: white;
    align-self: center;
    font-size: 14px;
}
.copyright a{
    grid-area: a;
    color: white;
    align-self: center;
    font-size: 14px;
    justify-self: end;
    text-decoration: none;
}
.copyright a:hover{
    text-decoration: underline;
}

/*----------Footer  ----------*/

/*----------ABOUT US  about_us_main_image_section ----------*/
.about_us_main_image_section {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin: 0px;
    padding: 0 0 30px 0;
}

.about_us_main_image_section figure {
    margin: 0;
    width: 100%;
    overflow: hidden;
    max-height: 400px;   
    background-color: #000000;
    position: relative;
}

.about_us_main_image_section figure img { 
    object-fit: contain;
    margin-top: -350px;  
	min-width: 100%;
    opacity: 50%;
}

.about_us_main_image_section figure h2 {
    position: absolute;
    width: 100%;
    top: 40%;
    left: 50%;
    text-align: center;
    color: white;
    font-size: 60px;
    font-weight: 700;
    transform: translate(-50%, -50%);
}

.about_us_main_image_section article {
	width: 1200px;
	margin: 0 auto;
	display: table;
}


.about_us_main_image_section article em {
	display: table;
	width: 100%;
	font-weight: 600;
	font-style: normal;
	margin-bottom: 15px;
	font-size: 18px;
	
}

.about_us_main_image_section article figure {
	display: table;
	float: left;
	max-width: 400px;
	background-color: #fff;
	margin: 0 15px 15px 0;
}

.about_us_main_image_section article figure img {
	margin: 0;
	opacity: inherit;
	object-fit: inherit;
}
.about_us_main_image_section article h1{
    text-align: center;
    font-size: 40px;
	font-weight: bold;
	margin: 20px 0;
}
.about_us_main_image_section article p{
    display: block;
    margin: auto;
    font-style: normal;
}
/*----------ABOUT US  about_us_main_image_section ----------*/

/*----------ABOUT US  about_us_ceo_section ----------*/
.about_us_ceo_section {
    display: grid;
    justify-content: center;
    grid-template-columns: 500px 700px;
    grid-template-areas:
        "img article";
    font-family: 'Poppins', sans-serif;
    background-color: #f2f2f2;
}

.about_us_ceo_section figure {
    grid-area: img;
    justify-self: auto;
    width: auto;
    height: 300px;
    margin: 0;
	padding: 50px 0;
}

.about_us_ceo_section figure a img {
    width: 500px;
    height: auto;
    max-height: 100%;
}

.about_us_ceo_section article{
    display: grid;
    grid-template-rows: 100px 150px 50px;
	padding: 50px 0;
    grid-template-areas:
    "h2"
    "em"
    "a";
}
.about_us_ceo_section article h2 {
    grid-area: h2;
    font-size: 34px;
    margin: 0 0 20px 0;
    overflow: hidden;
    height: 100px;
    padding-left: 30px;
	font-weight: 700; 
}

.about_us_ceo_section article em {
    grid-area: em;
    width: 90%;
    font-style: normal;
    padding-left: 30px;
    overflow: hidden;
    height: 130px;
}

.about_us_ceo_button {
    grid-area: a;
    width: 120px;
    text-decoration: none;
    background-color: #1b559e;
    color: white;
    padding: 13px 30px;
    text-align: center;
    border-radius: 7px;
}

.about_us_ceo_button:hover {
    background-color: #133a69;
}

/*----------ABOUT US  about_us_ceo_section ----------*/

/*----------PRODUCTS  products_main_image_section ----------*/
.products_main_image_section {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin: 0px;
    padding: 0px;
    background-color: #000000;
}

.products_main_image_section figure {
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 400px;  
    position: relative;
}

.products_main_image_section figure img {   
    margin-top: -700px;
    min-width: 100%;
    object-fit: contain;
    opacity: 50%;
}

.products_main_image_section figure h2 {
    position: absolute;
    top: 30%;
    left: 50%;
    text-align: center;
    color: white;
    font-size: 60px;
    font-weight: 700;
    transform: translate(-50%, -50%);
}

/*----------PRODUCTS  products_main_image_section ----------*/

/*----------PRODUCTS  products_car_spring_coils ----------*/

.products_car_spring_coils article {
    display: grid;
    justify-content: center;
    grid-template-columns: 500px 700px;
    grid-template-rows: 100px 200px;
    font-family: 'Poppins', sans-serif;
    background-color: #f2f2f2;
    padding: 50px 0 50px;
    grid-template-areas:
    "img h2"
    "img em";
}

.products_car_spring_coils article figure {
    grid-area: img;
    justify-self: end;
    width: auto;
    height: 300px;
    margin: 0;
}

.products_car_spring_coils article figure a img {
    width: 500px;
    height: auto;
}

.products_car_spring_coils article h2 {
    grid-area: h2;
    font-size: 34px;
    margin: 0 0 20px 0;
    overflow: hidden;
    height: 100px;
    padding-left: 30px;
}

.products_car_spring_coils article em {
    grid-area: em;
    width: 90%;
    font-style: normal;
    padding-left: 30px;
    overflow: hidden;
    height: 150px;
}
/*----------PRODUCTS  products_car_spring_coils ----------*/

/*--------------------------- Start --- Kontakt ---------------------------*/

.basic_site_inner_content_contact {
	width: 1200px;
	margin: 0 auto;
	padding: 60px 0 0;
	display: table;
}

.basic_site_inner_content_contact article {
	width: 500px;
	float: left;
	margin: 0;
}

.basic_site_inner_content_contact h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
	font-size: 36px;
    color: black;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 10px;
}

.right_column_contact {
	width: 640px;
	float: right;
	margin: 0;
    box-sizing: border-box;
}

.basic_site_inner_content_contact iframe {
	width: 100%;
	height: 480px;
	border: none;
	outline: none;
	margin: 60px 0 0;
    padding-bottom: 20px;
}

.basic_site_inner_content_contact .grecaptcha-logo iframe {
	width: inherit;
	height: inherit;
	border: inherit;
	margin: inherit;
}

.basic_site_inner_content_contact em {
	display:block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
	line-height: 26px;
    font-weight: 400;
    font-style: italic;
	margin-bottom: 10px;
}

.basic_site_inner_content_contact p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
	line-height: 24px;
}

.contact_form {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.contact_form dl {
	width: 100%;
	margin: 0;
	padding: 0;
	clear: both;
	display: table;
}

.contact_form div {
	width: 300px;
	float: left;
	margin: 0 20px 20px 0;
	padding: 0;
}

.contact_form div.cnt_form_div_note {
	width: 100%;
	float: none;
	margin: 0 0 15px;
}

.contact_form div:nth-of-type(2n) {
	margin-right: 0;
    float: right;
}

.contact_form dd div {
	width: auto;
	float: none;
	margin: 0;
}

.contact_form dt {
	width: 100%;
	display: table;
	margin: 0;
	padding: 0 !important;
}

.contact_form dt label {
	font-size: 16px;
	color: rgba(0,0,0,0.85);
	font-weight: 600;
	margin: 0;
	padding: 0 0 10px 5px;
	display: block;
	cursor: text;
}

.contact_form dd {
	width: 100% !important;
	display: table;
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
  
}

.contact_form div, .contact_form td, .contact_form dt, .contact_form dd, .contact_form label, .contact_form input, 
.contact_form select, .contact_form button, .contact_form textarea, .contact_form iframe, .contact_form ul, 
.contact_form li, .contact_form font{
	font-family: 'Poppins', sans-serif ;
	font-size: 15px;
	color: rgba(0,0,0,0.85);
	font-weight: 400;
	text-decoration: none;
}

.contact_form div.queryfor {
	margin-right: 0;
}

.contact_form dd input:invalid:focus, .contact_form dd select:invalid:focus, .contact_form dd textarea:invalid:focus {
	border: 1px solid #e10f0f !important;
}

.contact_form dd input:valid:focus, .contact_form dd select:valid:focus, .contact_form dd textarea:valid:focus {
	border: 1px solid #179d0a !important;
}

.contact_form dd input, .contact_form dd textarea, .contact_form dd select {
	width: 100%;
	max-width: 100%;
	padding: 13px 15px 14px;
	margin: 10px !important;

	background: linear-gradient(#ffffff, #fafafa) !important;
	background: -webkit-linear-gradient(#ffffff, #fafafa) !important;
	border-radius: 0 !important;
	border: 1px solid #cdcdcd !important;
	box-shadow: none !important;

	transition: all .3s linear;
	color: #2d2d2d;
	font-size: 14px !important;
	font-weight: 500;
	opacity: 1;
}

.contact_form dd input:hover, .contact_form dd input:focus, .contact_form dd input:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd textarea:hover, .contact_form dd textarea:focus, .contact_form dd textarea:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd select:hover, .contact_form dd select:focus, .contact_form dd select:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd textarea {
	min-height: 120px;
	max-height: 120px;
	resize: none;
}

.contact_form dd select {
	padding: 8px 10px 10px;
}

.contact_form dd input[type="file"] {
	padding: 7px 10px 7px;
}

.contact_form div dd .formInfo:nth-child(2) {
	position: absolute;
	right: 5px;
	top: -22px;
}

.basic_site_inner_content_contact a:hover, a:visited, a:active,
.basic_site_inner_content_contact input, .basic_site_inner_content_contact input:hover, 
.basic_site_inner_content_contact input:focus, .basic_site_inner_content_contact input:active, 
.basic_site_inner_content_contact input:visited {
	outline: none !important;
}

.contact_form dd input, .contact_form dd textarea, .contact_form dd select {
	width: 100%;
	max-width: 100%;
	padding: 13px 15px 14px;
	margin: 0 !important;
	box-sizing: border-box; 
	background: linear-gradient(#ffffff, #fafafa) !important;
	background: -webkit-linear-gradient(#ffffff, #fafafa) !important;
	border-radius: 7px !important;
	border: 1px solid #cdcdcd !important;
	box-shadow: none !important;

	transition: all .3s linear;
	color: #2d2d2d;
	font-size: 14px !important;
	font-weight: 500;
	opacity: 1;
}
.contact_form div:last-of-type{
	width: 100%;
	float:right;
}
.consent_data{
	display: grid;
	align-items: start;
	gap: 20px;
	grid-template-columns: 20px auto;
	grid-template-rows: auto;
	grid-template-areas: "dt dd"
}
.consent_data dt{
	grid-area: dt; 	
}

.consent_data dd{
	grid-area: dd;
}

.consent_data dt input{
	float:left;
	margin-top: 5px;
	margin-left: 0;
	height: 20px;
	width: 20px;	
}
.consent_data dt{
	width: 20px;
	margin: 0;
	float: left;
}
.contact_form dd.buttons_action {
	padding: 20px 0 0 !important;
}

.buttons_action input[type="reset"] {
    font-family: 'Poppins', sans-serif;   
	background: #D7D7D9 !important;
	box-shadow: none !important;
	border-radius: 10px !important;
	padding: 10px 30px !important;
	font-size: 15px !important;
	color: #000 !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	float: left;
	width: auto !important;
	cursor: pointer !important;
	text-transform: uppercase !important;
	transition: all .2s linear !important;
	margin: 0 20px 0 0 !important;
}

.buttons_action input[type="reset"]:hover, .buttons_action input[type="reset"]:focus {
	font-size: 15px !important;
	color: #000000 !important;
	background-color: #fff !important;
	opacity: 1;
	border: 1px solid #D7D7D9 !important;
}

.buttons_action input[type="submit"] {
	background: #1b559e !important;
	box-shadow: none !important;
	border-radius: 10px !important;
	padding: 10px 30px !important;
	font-size: 15px !important;
	color: white !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	width: auto !important;
	cursor: pointer !important;
	text-transform: uppercase !important;
	transition: all .2s linear !important;
	margin: 0 px !important;
}

.buttons_action input[type="submit"]:hover, .buttons_action input[type="submit"]:focus,
.buttons_action input[type="submit"]:valid:hover, .buttons_action input[type="submit"]:valid:focus {
	font-size: 15px !important;
	color: black !important;
	background-color: #fff !important;	
	opacity: 1;
	border: 1px solid #1b559e !important;
}

/*----------CONTACT  map ----------*/
.map{
    text-align: center;
    margin: auto;
    padding: 30px 0;
}
.map iframe{
    outline: 1px solid gray;
    width: 1200px;
    height: 500px;

}
/*----------CONTACT  map ----------*/


/*----------Template1 news  news_template_detail ----------*/
.news_template_detail article{
    display: table;
    margin: 30px auto;
	width: 1200px;
    font-family: 'Poppins', sans-serif;

}
.news_template_detail article h1{
    grid-area: h1;
    margin: 10px 0 0;
	color:black;
    text-decoration: none;
    font-size: 30px;
	font-weight: bold; 
}
.news_template_detail article time{
    color: #1b559e;
    font-weight: 600;
    font-size: 18px;
}
.news_template_detail article em{
	display: block; 
    color: black;
	font-weight: 600;
    font-size: 16px;
    text-decoration: none;
	margin-bottom: 20px; 
	font-style: normal; 
}
.news_template_detail article p{
    font-size: 16px;
}
.news_template_detail article p a.about_us_button{
	display: inline-block;
}
.news_template_detail article figure{
	display:table; 
	float: left; 
    max-width: 500px;
    height: auto;
    max-height: 400px;
    margin: 0px 20px 10px 0px;
}
.news_template_detail article figure img{
    max-width: 450px;
    height: auto;
	margin-top: 20px;
}
.hist_and_social{
	width: 1200px; 
	margin: auto; 
}
.send_request_button{
	display: block; 
	float:left; 
	font-family:'Poppins', sans-serif;
	font-size: 18px;
	padding: 7px 10px;
	width: 120px;
	border-radius: 7px;
	text-align: center;
	background-color: #1b559e;
	margin: 20px 0px 50px 0px;
	color: white;
	text-decoration: none; 
	transition: 0.3s; 
} 
.send_request_button:hover{
	background-color: white;
	outline: 1px solid #eaeaea;
	color: black;
}

#hist a{
	display: block; 
	font-family:'Poppins', sans-serif;
	font-size: 18px;
	padding: 7px 10px;
	width: 70px;
	border-radius: 7px;
	text-align: center;
	background-color: #1b559e;
	margin: 0px 0px 50px 0px;
	color: white;
	text-decoration: none; 
	transition: 0.3s; 
}

#hist a:hover{
	background-color: white;
	outline: 1px solid #8A3C00; 
	font-size: 18px;
	color: white;
}

.ecms_gallery_box{
	display: table; 
	width: 1200px; 
	margin: auto; 
}
.ecms_gallery_box h2{
	font-weight: bold; 
	font-size: 20px; 
}
.ecms_gallery_box a{
	margin: 10px 10px 0 0; 
}
.ecms_gallery_box a img{
	max-width: 200px; 
	height: auto; 
}

/*----------Template1 news  news_template_detail ----------*/

/*----------Template1 news  proracun_opruga ----------*/

.about_us_main_image_section .ecms_gallery_box{
	display: table; 
	width: 1200px; 
	margin: auto; 
}


/*----------Template1 news  proracun_opruga ----------*/

/*----------Template1 news  news_template ----------*/
.news_template article{
    display: table;
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}
.news_template article:nth-of-type(even){
    background-color: rgb(231, 231, 231);
}

.news_template article time{
    color: #1b559e;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
}

.news_template article figure{
    max-width: 320px;
	max-height: 240px;
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	border: none;
	position: relative;
	float: left;
	margin: 0 30px 0 0;
	padding: 0 0 15px;
	box-sizing: unset;
	
}

.news_template article figure img{
    max-width: 320px;
	max-height: 240px;
	vertical-align: middle;
	text-align: center;
	
}

.news_template article:nth-of-type(even) figure {
	float: right;
	margin: 0 0 0 30px;
}

.news_template article h2{
    margin: 0 0 10px;
	padding: 0;
	text-align: left;
	max-height: 75px;
	overflow: hidden; 
}
.news_template article h2 a{
    color: black;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
	font-weight: bold; 
}
.news_template article h2 a:hover{
    cursor: pointer;
    color: #1b559e;
    text-decoration: underline;
}
.news_template article em{
	display: block;
    overflow: hidden;
    max-height: 75px;
	font-size: 16px;
	font-weight: 500;
	color: black;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
	margin: 0 0 15px;
	padding: 0;
}
.btn_news {
	display: table;
	float: left;
    font-family: 'Poppins', sans-serif;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    width: 120px;
    height: 25px;
    text-align: center;
    background-color: #1b559e;
    color: white;
    padding: 10px 0 ;
    vertical-align: middle;
    transition: 0.3s;
	margin-bottom: 20px;
}
.btn_news:hover{
    background-color: #133a69;
    color: white;
}   

/*----------Template1 news  news_template ----------*/