:root {
    --gray: #bbc8d3;
    --white: #fff;
    --red: #db251c;
    --black: #000000;
    --blue: #0193db;
    --yello: #ffd800;
    --dark: #393a3b;
}

body {
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/*header css*/
header.Mainmenu {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
    width: 100%;
    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, .5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

header.Mainmenu .row {
    margin-left: 0;
    margin-right: 0;
}

header.Mainmenu nav {
    height: 120px;
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

header.Mainmenu .nav-wrapper {
    display: flex;
}

header.Mainmenu .nav-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    list-style-type: none;
    padding: 0;
    position: relative;
    margin: 0;
}

header.Mainmenu nav ul li{
    margin-left: 2rem;
}

header.Mainmenu nav ul li a {
    color: var(--black);
    transition: color .3s;
    position: relative;
    font-weight: bold;
}

header.Mainmenu nav ul li a:hover {
    color: var(--blue);
}

header.Mainmenu nav ul li a::after {
    content: '';
    display: block;
    height: 3px;
    background-color: var(--blue);
    width: 0%;
    position: absolute;
    left: 0;
    transition: width .5s;
}

header.Mainmenu nav ul li a:hover {
    text-decoration: none;
}

header.Mainmenu nav ul li a:hover::after {
    width: 100%;
}

header.Mainmenu #nav:checked+.nav-btn {
    transform: rotate(45deg);
    background-color: var(--red);
}

header.Mainmenu #nav:checked+.nav-btn i {
    background: var(--white);
    transition: transform 0.2s ease;
}

header.Mainmenu #nav:checked+.nav-btn i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
}

header.Mainmenu #nav:checked+.nav-btn i:nth-child(2) {
    opacity: 0;
}

header.Mainmenu #nav:checked+.nav-btn i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
}

header.Mainmenu #nav:checked~.nav-wrapper {
    z-index: 9990;
    opacity: 1;
    left: 0;
    display: block;
}

header.Mainmenu #nav:checked~.nav-wrapper ul li a {
    opacity: 1;
    transform: translateX(0);
}

header.Mainmenu .hidden {
    display: none;
}

header.Mainmenu .nav-btn {
    display: none;
}


/*banner css*/
.banner {
    position: relative;
}

.banner::after {
    display: block;
    content: '';
    background-image: url(../images/banner/banner_mask.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 130px;
    position: absolute;
    z-index: 10;
    bottom: -2px;
}

.carousel-inner {
    height: 100vh;
}

.carousel-control-next-icon {
    background-image: url(../images/banner/arrow_r.svg);
}

.carousel-control-prev-icon {
    background-image: url(../images/banner/arrow_l.svg);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 70px;
    height: 70px;
}

.banner .carousel-inner .carousel-item {
    height: 100%;
}

.banner .carousel-inner .imgbox {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.banner .carousel-inner .carousel-caption {
    position: absolute;
    right: unset;
    bottom: unset;
    left: 15%;
    top: 50%;
    transform: translatey(-50%);
    z-index: 10;
    padding-top: unset;
    padding-bottom: unset;
    color: var(--white);
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.banner .carousel-inner .carousel-caption h5 {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: .5rem;
}

.banner .carousel-inner .carousel-caption p {
    font-size: 1.5rem;
    letter-spacing: .1rem;
    display: inline-block;
    background-color: var(--red);
    padding: .9375rem;
    font-weight: bold;
}

.banner .scroll {
    width: 110px;
    padding: 40px 0;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 11;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: rgb(219, 37, 28);
    background: -moz-linear-gradient(top, rgba(219, 37, 28, 1) 0%, rgba(1, 147, 219, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(219, 37, 28, 1) 0%, rgba(1, 147, 219, 1) 100%);
    background: linear-gradient(to bottom, rgba(219, 37, 28, 1) 0%, rgba(1, 147, 219, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#db251c', endColorstr='#0193db', GradientType=0);
}

.banner .scroll img {
    margin-bottom: 30px;
}

.banner .scroll span {
    line-height: 1;
    display: inline-block;
}

/*main css*/
.font-bold {
    font-weight: 800;
}

main .container {
    padding-top: 0;
    font-size: 1.125rem;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 10;
    background-color: var(--red);
    border-radius: 30px;
    width: 60px;
    height: 60px;
}

#btn-back-to-top img {
    transform: rotate(180deg);
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

.outbox {
    padding: 10rem 0;
}

.content h2 {
    font-weight: 800;
    color: var(--black);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    text-align: center;
}

.content h2::after {
    content: '';
    display: block;
    height: 4px;
    width: 94px;
    background: url(../images/title_line.svg) no-repeat 0 0;
    margin: .9375rem auto 0 auto;
}


/*news css*/
.newslist {
    border: 1px solid var(--gray);
    border-bottom: 0;
}

.newslist .list {
    border-bottom: 1px solid var(--gray);
}

.newslist .list a {
    display: flex;
    flex-direction: row;
    padding: 1rem 0;
    transition: all .5s;
}

.newslist .list a:hover {
    text-decoration: none;
    background-color: var(--gray);
}

.newslist .list p {
    margin: 0;
    color: var(--dark);
    padding: 0 1.5625rem 0 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.newslist .list span {
    padding: 0 1.5625rem;
    margin-right: 1.5625rem;
    border-right: 1px solid var(--gray);
    color: var(--blue);
    font-weight: bold;
}

.newscontent .title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: .5rem;
    font-weight: bold;
}

.newscontent .date {
    color: var(--blue);
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.newscontent .content {
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

/*about css*/
.aboutus .container {
    padding: 0;
}

.aboutus.outbox {
    position: relative;
    padding: calc(10rem + 60px) 0 calc(10rem - 60px) 0;
}

.aboutus.outbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url(../images/about/company.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aboutus.outbox::after {
    background-color: #eaeef2;
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    right: 0;
    top: 60px;
    position: absolute;
    z-index: -1;
}

.aboutus .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4.375rem;
}

.aboutus .content h2 {
    text-align: left;
    font-size: 2rem;
    color: var(--red);
}

.aboutus .content h2::after {
    margin-left: 0;
}

.aboutus .content h2 span {
    font-size: 1.875rem;
    color: var(--black);
}

.aboutus .content h2 span.year {
    font-size: 3rem;
    color: var(--red);
}

/*products css*/
.products.outbox {
    padding-top: calc(10rem + 60px);
    overflow-x: hidden;
}

.products.outbox .row {
    padding: 0 0 0 0;
}

.products .content {
    padding: 0;
}

.products .slider {
    width: 100%;
    margin: 0 auto;
}

.products .slick-slide a {
    display: block;
    padding: 0 .9375rem;
}

.products .slick-slide a:hover {
    text-decoration: none;
}

.products .imgbox {
    border: 1px solid var(--gray);
    box-sizing: border-box;
    transition: all .5s;
    height: 0;
    padding-bottom: 75%;
    display: block;
    position: relative;
    overflow: hidden;
}

.products a:hover .imgbox {
    border: 1px solid var(--red);
}

.products .slick-slide .imgbox img {
    max-height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
}

.products .slick-slide a:hover .imgbox img {
    transform: translate(-50%, -50%) scale(1.1);
}

.products .title {
    font-size: 1.125rem;
    color: var(--black);
    text-align: center;
    padding: 1.25rem 0.625rem;
    font-weight: bold;
    display: block;
    transition: all .5s;
}

.products .slick-slide a:hover .title {
    color: var(--red);
}

.products .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.products .slick-dots {
    position: unset;
    margin-top: 2.8125rem;
}

.products .slick-dots li button:before {
    content: '';
    background-color: var(--blue);
    width: 1rem;
    height: 1rem;
    border-radius: .5rem;
    padding: 0;
    font-size: 0;
    opacity: 1;
}

.products .slick-dots li.slick-active button:before {
    background-color: var(--red);
    opacity: 1;
}

.products .slick-prev,
.products .slick-next {
    width: 70px;
    height: 70px;
}

.products .slick-prev {
    left: -75px;
}

.products .slick-next {
    right: -75px;
}

.products .slick-prev,
.products .slick-prev:hover,
.products .slick-prev:focus {
    background-image: url(../images/product/arrow_l.svg);
}

.products .slick-next,
.products .slick-next:hover,
.products .slick-next:focus {
    background-image: url(../images/product/arrow_r.svg);
}

.products .slick-prev:hover,
.products .slick-prev:focus,
.products .slick-next:hover,
.products .slick-next:focus {
    opacity: .7;
}

.products .slick-prev:before,
.products .slick-next:before {
    display: none;
}

.productscontent .title {
    font-size: 2rem;
    color: var(--black);
    font-weight: bold;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
}

.productscontent .productimg {
    margin-bottom: 2rem;
}

/*contact css*/
.contactus.outbox {
    background-image: url(../images/contact/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    background-size: cover;
}

.contactus .content h2 {
    color: var(--white);
}

.contactus .content h2::after {
    background-image: none;
    background-color: var(--white);
}

.contactus .infobg {
    box-sizing: border-box;
    padding: 1.875rem;
    background: rgba(1, 147, 219, .6);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.contactus .infocontent {
    background-color: var(--white);
    padding: 3rem;
}

.contactus .infocontent .logo {
    margin-bottom: 1.875rem;
}

.contactus .infocontent ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contactus .infocontent ul li {
    margin-bottom: 0.625rem;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 36px;
}

.contactus .infocontent ul li.mail {
    background-image: url(../images/contact/icon_email.svg);
}

.contactus .infocontent ul li.phone {
    background-image: url(../images/contact/icon_phone.svg);
}

.contactus .infocontent ul li.fax {
    background-image: url(../images/contact/icon_fax.svg);
}

.contactus .infocontent ul li.address {
    background-image: url(../images/contact/icon_home.svg);
}

.contactus .infocontent ul li:last-child {
    margin-bottom: 0;
}

.contactus .lable {
    background-color: var(--white);
    box-sizing: border-box;
    padding: 7.5rem 10rem 7.5rem 14rem;
}

.contactus .lable textarea.form-control {
    height: 10rem;
}

.contactus .lable .col-form-label {
    color: var(--black);
}

.contactus .lable .col-form-label span.required {
    color: var(--red);
}

.contactus .lable .codelable {
    width: 10rem;
    margin-right: 1rem;
}

.contactus .lable img.imgcode {
    max-width: 120px;
}

.contactus .lable .form-group.row.btnbox {
    margin-top: 3.125rem;
    margin-bottom: 0;
}

.contactus .lable .form-group.row.btnbox .btn {
    width: 14.6875rem;
    background-color: var(--red);
    border-radius: 0;
    color: var(--white);
    border: 0;
}

.contactus .lable .form-group.row.btnbox .btn.clearbtn {
    background-color: var(--blue);
}

.contactus .lable .form-group.row.btnbox .btn:hover {
    background-color: var(--dark);
}

/*copyright css*/
.copyright {
    background-color: var(--blue);
    color: #ffffff;
    padding: 45px 0;
    text-align: center;
    font-size: 0.875rem;
}

.copyright a {
    color: #ffffff;
    text-decoration: none;
    transition: all .5s;
}

.copyright a:hover {
    color: var(--yello);
}

@media (min-width: 1400px) {

    /*contact css*/
    .lable .col-form-label.col-lg-12 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .lable .rightlabel.col-lg-12,
    .lable .form-group.row.btnbox .col-lg-12 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

}

@media (max-width: 1450px) {

    /*products css*/
    .products .slick-prev,
    .products .slick-next {
        width: 50px;
        height: 50px;
    }

    .products .slick-prev {
        left: -50px;
    }

    .products .slick-next {
        right: -50px;
    }
}

@media (max-width: 1399px) {

    /*about css*/
    .aboutus .content h2 br {
        display: none;
    }

    /*contact css*/
    .contactus .infocontent {
        padding: 2rem;
    }

    .contactus .lable {
        padding: 6rem 8.5rem 6rem 12.5rem;
    }

    .contactus .infocontent ul li {
        background-size: 27px 27px;
        padding-left: 36px;
    }

    .form-group.row.btnbox .offset-sm-2 {
        margin-left: 0;
    }

}

@media (max-width: 1200px) {

    /*main css*/
    .outbox {
        padding: 7rem 0;
    }

    /*about css*/
    .aboutus.outbox {
        position: relative;
        padding: calc(7rem + 60px) 0 calc(7rem - 60px) 0;
    }

    /*products css*/
    .products.outbox {
        padding-top: calc(7rem + 60px);
    }

    .products .slick-prev {
        left: -40px;
    }

    .products .slick-next {
        right: -40px;
    }

    .products .slick-dots {
        margin-top: 1.5rem;
    }

    /*contact css*/
    .contactus .lable .form-group.row.btnbox .btn {
        width: 48%;
    }

}

@media (max-width: 1024px) {

    /*banner css*/
    .banner .carousel-inner .carousel-caption h5 {
        font-size: 3rem;
    }

    .banner .carousel-inner .carousel-caption p {
        font-size: 1rem;
    }

    .banner .carousel-inner .carousel-caption {
        top: calc(50% - 120px);
        transform: translatey(calc(-50% + 150px));
    }

    .banner .scroll {
        padding: 1rem;
        width: 90px;
        bottom: -30px;
        margin: 0 auto 0 auto;
    }

    .banner .scroll br,
    .banner .scroll span {
        display: none;
    }

    .banner .scroll img {
        margin-bottom: 0;
    }

    /*products css*/
    .aboutus .content {
        padding-left: 2.5rem;
    }

    /*contact css*/
    .contactus .lable {
        padding: 4rem 6.5rem 4rem 10.5rem;
    }
}

@media (max-width: 991px) {

    /*header css*/
    header.Mainmenu nav {
        position: fixed;
        cursor: pointer;
        background: #ffffff !important;
        box-shadow: 0 3px 10px 0px rgba(0, 0, 0, .5);
        width: 100%;
        z-index: 20;
        height: 80px;
        padding: 0 15px;
    }


    header.Mainmenu .nav-wrapper {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: #fff;
        opacity: 1;
        /* display: none; */
        transition: all .5s;
    }

    header.Mainmenu .nav-wrapper ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }

    header.Mainmenu .nav-wrapper ul li {
        display: block;
        float: none;
        width: 100%;
        text-align: center;
        margin: 0 0;
    }

    header.Mainmenu .nav-wrapper ul li a {
        padding: 10px 24px;
        opacity: 0;
        color: var(--black);
        font-size: 1rem;
        width: 60%;
        display: block;
        margin: 0 auto;
        transition: all .5s;
    }

    header.Mainmenu .nav-wrapper ul li a::after {
        display: none;
    }

    header.Mainmenu nav ul li a:hover {
        /* border: 1px solid var(--blue); */
        color: var(--white);
        background-color: var(--blue);
    }

    header.Mainmenu .nav-btn {
        position: fixed;
        right: 15px;
        top: 16px;
        display: block;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 9999;
        border-radius: 50px;
        background: var(--blue);
        margin-bottom: 0;
        transition: all .5s;
    }

    header.Mainmenu .nav-btn i {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        margin-left: 14px;
    }

    header.Mainmenu .nav-btn i:nth-child(1) {
        margin-top: 16px;
    }

    header.Mainmenu .nav-btn i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }

    header.Mainmenu .nav-btn i:nth-child(3) {
        margin-top: 4px;
    }

    .Mainmenu .logo img {
        max-width: 300px;
    }

    /*banner css*/
    .banner .carousel-inner {
        height: 30rem;
    }

    .banner .carousel-inner .carousel-caption {
        top: unset;
        transform: unset;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
    }

    .banner .carousel-inner .carousel-caption h5 {
        font-size: 2rem;
    }

    .banner .carousel-inner .carousel-caption p {
        display: none;
    }

    /*main css*/
    .outbox {
        padding: 5rem 0;
    }

    .content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    /*about css*/
    .aboutus.outbox {
        position: relative;
        padding: 5rem 0;
    }

    .aboutus.outbox::before {
        width: 100%;
        z-index: -2;
    }

    .aboutus.outbox::after {
        background: rgba(0, 0, 0, .8);
        width: 100%;
        top: 0;
    }

    .aboutus .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .aboutus .container .aboutusbg {
        margin-right: 0;
        margin-left: 0;
    }

    .aboutus .content {
        padding: unset;
        color: var(--white);
    }

    .aboutus .content h2 {
        text-align: left;
        font-size: 1.5rem;
        color: var(--white);
    }

    .aboutus .content h2 br {
        display: none;
    }

    .aboutus .content h2::after {
        margin-left: 0;
    }

    .aboutus .content h2 span {
        font-size: 1.25rem;
        color: var(--white);
    }

    .aboutus .content h2 span.year {
        font-size: 2rem;
        color: var(--red);
    }

    /*products css*/
    .products.outbox {
        padding-top: 5rem;
    }

    .products .slick-dots {
        margin-top: 0;
    }

    /*contact css*/
    .contactus .infobg {
        position: unset;
        left: unset;
        top: unset;
        transform: unset;
        background: none;
        padding: 0 15px;
        margin-bottom: 2rem;
    }

    .contactus .infocontent {
        border: 1rem solid var(--blue);
        box-sizing: border-box;
    }

    .contactus .lable {
        padding: 4rem;
    }
}

@media (max-width: 768px) {

    /*header css*/
    header.Mainmenu .target {
        position: initial;
        display: none;
    }

    .Mainmenu .logo img {
        max-width: 230px;
    }

    /*banner css*/
    .banner .scroll {
        width: 70px;
    }

    /*main css*/
    .outbox {
        padding: 3rem 0;
    }

    /*about css*/
    .aboutus.outbox {

        padding: 3rem 0;
    }

    /*products css*/
    .products.outbox {
        padding-top: 3rem;
    }

}

@media (max-width: 500px) {

    /*banner css*/
    .banner .carousel-inner .carousel-caption h5 {
        font-size: 1.25rem;
    }

    .contactus .lable .codelable {
        width: 100%;
    }
}

@media (max-width: 440px) {

    /*header css*/
    header.Mainmenu .nav-wrapper ul li {
        text-align: center;
    }

    /*news css*/
    .newslist .list a {
        flex-direction: column;
        padding: .5rem;
    }

    .newslist .list p {
        padding: 0 0 0 0;

    }

    .newslist .list span {
        padding: 0;
        margin-right: 0;
        border-right: 0;
    }
}

@media (max-width: 320px) {

    /*header css*/
    .Mainmenu .logo img {
        max-width: 150px;
    }

}