@import url(../css/fonts.css);
@import url(../css/header.css);
@import url(../css/footer.css);
@import url(../css/breadcrumbs.css);
@import url(../css/modal.css);

*,
*::before,
*::after {
  box-sizing: border-box;
}



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	overflow-x: hidden;
}
body {
	line-height: 1;
	overflow-x: hidden;
    font-family: "Fira-Sans";
}
ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

input,
button,
textarea,
select {
  font: inherit;
}
input {
    -webkit-appearance: none;
    border-radius: 0;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
input:focus,
textarea:focus {
	outline: none;
}
input::placeholder,
textarea::placeholder {
	transition: all .2s linear;
}
input:focus::placeholder,
textarea:focus::placeholder {
	color: transparent;
}

.container {
	max-width: 1200px;
	padding: 0 45px;
	margin: 0 auto;
	width: 100%;
}

select:focus {
	outline: none;
}

.title-1, h1 {
    font-weight: bold;
    font-size: 40px;
    line-height: 48px;
}
.title-2, h2 {
    font-weight: bold;
    font-size: 28px;
    line-height: 34px;
}
.title-3, h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
}
.title-4, h4 {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
}
.title-5, h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}
.text-body {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}
.text-desc {
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
}
.text-small {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}
.text-btn {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
}
.text-menu {
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
}

.title {
    color: #002682;
    display: inline-block;
    border-bottom: 4px solid #6BC116;
    margin-bottom: 60px;
}

.btn {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    height: 60px;
    background: #002682;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-bottom: 4px solid #6BC116;
    transition: all .2s linear;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background: #6BC116;
}

.btn-buy-white {
    width: 122px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    border: 2px solid #6BC116;
    color: #6BC116;
    background: #fff;
    cursor: pointer;
    transition: all .2s linear;
}
.btn-buy-white:hover {
    background: #6BC116;
    color: #fff;
}
.btn-buy-white svg {
    margin-left: 8px;
}
.btn-buy-white svg path {
    transition: all .2s linear;
}
.btn-buy-white:hover svg path {
    stroke: #fff;
}

.a-btn {
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #334B86;
    display: block;
    text-decoration: none;
    padding: 3px 5px;
    border: none;
    border-bottom: 1px solid #334B86;
    background: none;
    cursor: pointer;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
}
.a-btn:hover {
    color: #6BC116;
    border-bottom: 1px solid #6BC116;
}
.modal__btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    border-bottom: 0.5px solid #6BC116;
    color: #6BC116;
    cursor: pointer;
    display: inline-block;
}
body {
    background: #FAFAFA;
}
.common-home {
    background: #E5E5E5;
}
.product-manufacturer {
    background: #F4FAFC;
}


body[class*="product-manufacturer-info"] { 
    background: #FAFAFA;
}

.align-left {
    float: left;
    margin-right: 60px;
    margin-bottom: 60px;
}
.align-right {
    float: right;
    margin-left: 60px;
    margin-bottom: 60px;
}

@media (max-width: 800px) {
    .container {
        padding: 0 16px;
    }    
}

@media (max-width: 768px) {
    .align-left {
        margin-right: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .title-1, h1 {
        font-size: 24px;
        line-height: 29px;
    }
    .title-4, h4 {
        font-size: 16px;
        line-height: 19px;
    }
    .title {
        margin-bottom: 15px;
    }
    .title-2, h2 {
        font-size: 24px;
        line-height: 29px;
    }
    .text-body {
        font-size: 14px;
        line-height: 17px;
    }
}