@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap'); :root {
    --blue: #0066ce;
    --baloo: 'Baloo 2', cursive;
    --bebas: 'Bebas Neue', cursive;
}

html,body {
    scroll-behavior: "smooth";
    overflow-x: hidden;
    font-family: var(--baloo);
}

body {
    padding-right: 0!important;
}

a {
    text-decoration: none!important;
}

.navbar .navbar-brand .logo {
    width: 240px;
}

.navbar .navbar-collapse {
    font-weight: 400;
}

.navbar .navbar-collapse .navbar-nav {
    gap: 16px;
}

.navbar .navbar-collapse .navbar-nav .nav-item a {
    color: #2d2d2d;
    font-weight: 500;
    font-size: 18px;
    transition: .3s;
}

.navbar .navbar-collapse .navbar-nav .nav-item a:hover {
    color: var(--blue);
    transition: .3s;
}

.language-select {
    border-radius: 50%;
    width: 54px;
    height: 54px;
    font-size: 18px;
    padding-right: 3px;
    background-color: transparent;
    background-image: none!important;
    appearance: none;
    text-align: center;
    font-weight: 600;
    color: #2d2d2d;
    border-color: #2d2d2d;
    text-transform: uppercase;
}

.hamburger {
    display: grid;
    align-items: center;
    justify-content: flex-start;
    float: right;
    justify-items: end;
    cursor: pointer;
    transition: .2s;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: #2d2d2d;
    margin-bottom: 5px;
    border-radius: 30px;
    transition: .2s;
}

.hamburger div:nth-child(2) {
    width: 20px;
}

.hamburger:hover div {
    background-color: var(--blue);
}

.hamburger:hover div:nth-child(2) {
    width: 30px;
}

.hamburger:hover div:nth-child(3) {
    width: 20px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    padding: 0px;
    overflow-x: hidden;
    box-shadow: -3px 0px 20px 0px #0000000f;
    transition: 0.5s;
    background: rgb(200,214,250);
    background: radial-gradient(circle, rgb(243 246 255) 0%, rgba(255,255,255,1) 100%);
}

.sidenav .closebtn {
    font-size: 46pt;
    font-weight: 300;
    color: #9aa2b7;
    transition: .3s;
}

.sidenav .closebtn:hover {
    color: #324a8a;
    transition: .3s;
}

.sidenav .search-box {
    padding-top: 40px;
}

.sidenav .search-box input {
    background: transparent;
    outline: none!important;
    border: none;
    border-bottom: 2px solid #9aa2b7;
    width: 90%;
    padding: 15px 0;
}

.sidenav .search-box input::placeholder {
    font-weight: 400;
    color: #9aa2b7;
    font-size: 20pt;
}

.sidenav .search-box button {
    background: transparent;
    outline: none!important;
    border: none!important;
    font-size: 16pt;
    color: #9aa2b7;
    font-weight: 300;
    position: relative;
    top: -10px;
    left: -37px;
}

.sidenav .two-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 60px;
}

.sidenav .two-col .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
    display: grid;
    width: 50%;
}

.sidenav .two-col .menu li a {
    font-size: 24pt;
    color: #27272e;
    font-weight: 500;
    transition: .3s;
}

.sidenav .two-col .menu li a:hover {
    color: var(--blue);
    transition: .3s;
}

.sidenav .two-col .side-contact {
    width: 50%;
    display: grid;
    align-items: flex-start;
    justify-items: flex-start;
    gap: 30px;
}

.sidenav .two-col .side-contact div h5 {
    font-weight: 600;
}

.sidenav .two-col .side-contact div p {
    width: 80%;
}

.sidenav .two-col .side-contact div .contact-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.sidenav .two-col .side-contact div .contact-col {
    color: #525260;
    text-decoration: none!important;
}

.sidenav .two-col .side-contact div .contact-col a {
    color: #525260;
    text-decoration: none!important;
}

.sidenav .two-col .side-contact div .footersocial {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 14px;
    margin-top: 20px;
}

.sidenav .two-col .side-contact div .footersocial li {
    width: 50px;
    height: 50px;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
}

.sidenav .two-col .side-contact div .footersocial li a {
    color: #fff;
    text-decoration: none!important;
    padding: 0!important;
    margin-top: 3px;
}

.sidenav .two-col .side-contact div .footersocial li a i {
    font-size: 20px;
}

.sidenav .two-col .side-contact div .footersocial li:hover {
    background-color: #254464;
    transition: .3s;
}

.header-slide {
    background-image: url('../img/slider-background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    min-height: 86vh;
    padding: 60px;
    margin-top: -70px;
    display: flex;
    align-items: center;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: -10%;
    left: -10%;
}

.slider .item {
    height: 100%;
    width: 260px;
    position: absolute;
    border-radius: 10px;
    transition: all ease 0.7s;
    z-index: 1;
    left: 0;
    opacity: 0.8;
    transform: scale(0.6);
    right: 0;
    margin: 0 auto;
    filter: blur(4px);
}

.slider .item img{
    width:600px;
}

.slider .item.active {
    z-index: 2;
    opacity: 1;
    transform: scale(0.9);
    filter: blur(0px);
    filter: drop-shadow(0px 0px 10px #00000034);
}



.slider-texts {
    display: grid;
    align-items: center;
    justify-items: center;
    margin-top: -100px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    top: 20%;
}

.slider-texts .slider-head {
    font-weight: 300;
    letter-spacing: 8px;
}

.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 10px;
    font-weight: 400;
    font-size: 46px;
    opacity: 1;
    animation: opacityBlock infinite .4s;
}

@keyframes opacityBlock {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#text {
    color: var(--blue);
    font-weight: 800;
    font-size: 64px;
}

.icons {
    margin-top: -150px;
}

.icons .icons-box {
    display: grid;
    justify-items: center;
    text-align: center;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 30px;
    height: 300px;
    align-items: center;
    align-content: center;
    margin-top: 20px;
    transition: .3s;
}

.icons .icons-box svg {
    width: 100px;
    height: 100px;
    fill: var(--blue);
    padding-bottom: 20px;
}

.icons .icons-box h2 {
    color: #404040;
}

.icons .icons-box h5 {
    color: #646464;
    letter-spacing: 6px;
    font-weight: 400;
}

.icons .icons-box:hover {
    background-color: var(--blue);
    box-shadow: 0px 4px 12px 0px #00000021;
}

.icons .icons-box:hover * {
    color: #fff;
    fill: #fff;
}

.about-us {
}

.about-us .float-right {
    float: right;
    text-align: right;
}

.about-us .hp-aboutus-image {
    width: 100%;
    position: relative;
    margin-left: 30px;
}

.about-us .head {
    font-family: var(--bebas);
    font-weight: 500;
    font-size: 70pt;
}

.about-us .head b {
    color: var(--blue);
    font-weight: 500;
}

.about-us .content {
    padding-bottom: 20px;
}

.about-us .read-more {
    background: rgb(0,102,206);
    background: linear-gradient(90deg, rgba(0,102,206,1) 0%, rgba(1,68,137,1) 100%);
    padding: 20px 40px;
    border-radius: 22px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.about-us .read-more:hover {
    background: #000;
    background-color: #000;
    color: #fff;
    transition: .3s;
}

.about-us .company-features {
    position: relative;
    right: 60%;
}

.about-us .company-features ul {
    display: grid;
    list-style: none!important;
    z-index: 999;
    position: relative;
}

.about-us .company-features ul li a {
    list-style: none!important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 18px;
    text-decoration: none!important;
    color: #202020;
    box-shadow: 0px 3px 9px 0px #00000023;
}

.about-us .company-features ul li img {
    width: 75px;
    padding-right: 16px;
}

.about-us .company-features ul li h5 {
    font-size: 1.05rem;
    margin: 0;
    font-weight: 600;
    color: #676767;
}

.about-us .company-features ul li {
    top: 290%;
    position: relative;
}

.about-us .company-features ul li:nth-child(2) {
    top: 1300%;
    position: relative;
}

.products-hp {
    margin-top: 5rem;
}

.products-hp .head h5 {
    color: var(--blue);
    font-weight: 500;
}

.products-hp .head h1 {
    font-weight: 900;
}

.products-hp .product-box {
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 30px;
    border-radius: 30px;
    background-color: #eeeeee;
    background-image: url('../img/product-box-background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    margin-top: 20px;
    transition: .3s;
}

.products-hp .product-box img {
    width: 240px;
}

.products-hp .product-box h6 {
    letter-spacing: 10px;
    color: #fff;
    font-weight: 300;
}

.products-hp .product-box h1 {
    color: #0a1e55;
    font-size: 50pt;
    font-family: var(--bebas);
}

.products-hp .product-box a {
    background-color: #0a1e55;
    color: #fff;
    padding: 12px 24px;
    font-family: var(--bebas);
    text-decoration: none;
    letter-spacing: 3px;
    border-radius: 14px;
    font-size: 18px;
}

.products-hp .product-box:hover {
    background-image: url('../img/product-box-hover-background.jpg');
    transition: .3s;
}

.products-hp .product-box:hover h1 {
    color: #753f00;
    transition: .3s;
}

.products-hp .product-box a:hover {
    background-color: #844802;
    transition: .3s;
}

.products-hp .all-products {
    background: rgb(0,91,198);
    background: linear-gradient(90deg, rgba(0,91,198,1) 0%, rgba(0,76,160,1) 100%);
    width: 280px;
    height: 70px;
    display: inline-block;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 700;
    font-size: 22px;
    border-radius: 20px;
    text-decoration: none;
    transition: .3s;
}

.products-hp .all-products:hover {
    background: #000;
    background-color: #000;
    transition: .3s;
}

.documents {
    margin-top: 7rem;
}

.documents .head h5 {
    color: var(--blue);
    font-weight: 500;
}

.documents .head h1 {
    font-weight: 900;
}

.document-content {
    padding: 30px;
    background-color: #f4f7fa;
    border-radius: 30px;
    transition: .3s;
}

.document-content:hover {
    background-color: var(--blue);
    transition: .3s;
}

.references-hp {
    background-color: #242424;
    padding: 60px;
    background-image: url('../img/references-background.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.references-hp .head {
    text-align: center;
}

.references-hp .head h6 {
    color: var(--blue);
}

.references-hp .head h1 {
    color: #fff;
    font-weight: 800;
}

.references-hp .mt-references {
    margin-top: -30px;
}

.references-hp .references-logo {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #fff;
    margin-top: 80px;
}

.references-hp .references-logo img {
    max-width: 300px;
    object-fit: cover;
    filter: grayscale(1) brightness(3);
    transition: .3s;
}

.references-hp .references-logo img:hover {
    filter: grayscale(0) brightness(1);
}

.references-hp .border-right-none {
    border-color: transparent;
    border: none;
}

.references-hp .all-references {
    background: rgb(0,91,198);
    background: linear-gradient(90deg, rgba(0,91,198,1) 0%, rgba(0,76,160,1) 100%);
    width: 280px;
    height: 70px;
    display: inline-block;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 700;
    font-size: 22px;
    border-radius: 20px;
    text-decoration: none;
    transition: .3s;
}

.references-hp .all-references:hover {
    background: #000;
    background-color: #000;
    transition: .3s;
}

.news {
    margin-top: 6rem;
    font-family: var(--baloo);
}

.news .head h5 {
    color: var(--blue);
    font-weight: 500;
}

.news .head h1 {
    font-weight: 900;
}

.news .news-box {
    display: grid;
    align-items: flex-end;
    justify-items: flex-start;
    height: 400px;
    transition: .3s;
}

.news .news-box::before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 400px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 30px;
    top: 1px;
}

.news .news-box .news-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: -1;
    position: relative;
    border-radius: 30px;
}

.news .news-box .texts {
    position: absolute;
    color: #fff;
    padding: 30px;
    transition: .3s;
}

.news .news-box .texts h3 {
    width: 200px;
}

.news .news-box .texts p {
    width: 280px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news .news-box .texts .read-more a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    display: flex;
    opacity: 0;
    transform: translate(-130px, 0px);
    transition: .3s;
}

.news .news-box .texts .read-more a img {
    width: 28px;
}

.news .news-box .texts .read-more a h4 {
    color: #fff!important;
    font-family: var(--bebas);
    font-weight: 400;
    margin: 0;
}

.news .news-box:hover .texts {
    padding-bottom: 30px;
    transition: .3s;
}

.news .news-box:hover .texts .read-more a {
    opacity: 1;
    animation: opacityNews .3s;
    transform: translate(0px, 0px)
}

.news .news-box:hover::before {
    background: rgb(0,102,206);
    background: linear-gradient(0deg, rgba(0,102,206,1) 0%, rgba(255,255,255,0) 100%);
    ;}

.catalogue {
    margin-top: 5rem;
}

.catalogue .container {
    background-color: #f6f6f7;
    padding: 50px;
    border-radius: 60px;
}

.catalogue .w-80 {
    width: 80%;
    margin-top: 1rem;
    padding-bottom: 20px;
}

.catalogue h1 {
    font-weight: 800;
}

.catalogue .catalogue-view-button {
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 20px 40px;
    margin-top: 10px;
    border-radius: 20px;
    transition: .3s;
}

.catalogue .catalogue-view-button:hover {
    background-color: #242424;
    transition: .3s;
}

.footer {
    font-family: var(--baloo);
    background-color: #eef2f5;
    padding-top: 50px;
    padding-bottom: 20px;
    margin-top: 6rem;
}

.footer .footer-logo {
    width: 290px;
}

.footer .netis-brand {
    color: #454545;
    padding-top: 16px;
    transition: .3s;
}

.footer .netis-brand:hover {
    color: var(--blue);
}

.footer .footer-contact-button {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer .footer-contact-button h4 {
    color: #324989;
    font-weight: 700;
    margin: 0;
}

.footer .footer-contact-button a {
    background-color: #324989;
    color: #fff;
    border: 2px solid #324989;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 19px;
    text-align: center;
    transition: .3s;
}

.footer .footer-contact-button a:hover {
    background-color: transparent;
    color: #324989;
    transition: .3s;
}

.footer .footer-list {
    display: grid;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer .footer-list h4 {
    color: #324989;
    font-weight: 700;
}

.footer .footer-list ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer .footer-list ul li a {
    color: #848fad;
    font-weight: 300;
    font-size: 18px;
    transition: .3s;
}

.footer .footer-list ul li a:hover {
    color: #284db3;
    font-weight: 400;
    transition: .3s;
}

.footer .footer-contact {
    display: grid;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer .footer-contact h4 {
    color: #324989;
    font-weight: 700;
}

.footer .footer-contact ul {
    list-style: none;
    display: grid;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.footer .footer-contact ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.footer .footer-contact ul li a img {
    width: 28px;
}

.footer .footer-contact ul li a h6 {
    color: #848fad;
    font-weight: 300;
    padding-left: 10px;
    font-size: 18px;
    margin: 0;
    transition: .3s;
}

.footer .footer-contact ul li a:hover h6 {
    color: #284db3;
    font-weight: 400;
    transition: .3s;
}

.copyright-text {
    color: #848fad;
}

.text-right {
    text-align: right;
}

.interio-logo {
    width: 166px;
}

.banner {
    background-image: url('../img/slider-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    min-height: 450px;
    height: 100%;
}

.banner::before {
    content: ' ';
    position: absolute;
    width: 100%;
    min-height: 450px;
    top: 0;
}

.page-content {
    background-image: url('../img/banner-content-image.png');
    background-color: #f4f6f8;
    background-repeat: no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 700px;
    display: grid;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 40px;
    margin: 0 auto;
    border-radius: 40px;
    box-shadow: 0px 0px 14px 0px #00000023;
    margin-top: -110px;
    position: relative;
}

.page-content h5 {
    color: var(--blue);
    font-weight: 400;
    padding-bottom: 10px;
}

.page-content h1 {
    color: #232323;
    width: 90%;
    font-weight: 700;
}

.who-are-we {
    background-image: url('../img/question-mark-image.png');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 50px 0px;
}

.who-are-we .content {
    display: grid;
    align-items: center;
    justify-items: flex-start;
}

.who-are-we .content h1 {
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 14px;
    display: inline-grid;
    align-items: center;
    justify-content: flex-start;
}

.who-are-we .content h1::after {
    content: ' ';
    position: relative;
    width: 80%;
    height: 5px;
    border-radius: 30px;
    background-color: var(--blue);
}

.who-are-we .content p {
    width: 600px;
    margin-top: 20px;
}

.who-are-we .about-us-image {
    display: flex;
    gap: 20px;
}

.who-are-we .about-us-image img {
    border-radius: 40px;
    filter: brightness(.7);
}

.who-are-we .about-us-image img:nth-child(2) {
    top: 140px;
    position: relative;
}

.who-are-we .rotate-logo {
    margin-top: 30px;
    display: inline-grid;
    position: absolute;
    z-index: 999;
    justify-items: center;
    align-items: center;
    margin-top: -40px;
    filter: drop-shadow(0px 0px 24px #00000043);
    width: 50%;
}

.who-are-we .rotate-logo .elipse {
    position: relative;
    width: 150px;
    height: 150px;
    animation: rotate 10s infinite;
}

.who-are-we .rotate-logo .rotate {
    position: absolute;
    width: 130px;
    height: 130px;
}

@keyframes rotate {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

.why-we {
    margin-top: 7rem;
    text-align: center;
}

.why-we h1 {
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 14px;
    display: inline-grid;
    align-items: center;
    justify-content: flex-start;
}

.why-we h1::after {
    content: ' ';
    position: relative;
    width: 80%;
    height: 5px;
    border-radius: 30px;
    background-color: var(--blue);
}

.why-we .icons-box {
    display: grid;
    justify-items: center;
    text-align: center;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 30px;
    height: 300px;
    align-items: center;
    align-content: center;
    margin-top: 20px;
    transition: .3s;
}

.why-we .icons-box svg {
    width: 100px;
    height: 100px;
    fill: var(--blue);
    padding-bottom: 20px;
}

.why-we .icons-box h2 {
    color: #404040;
}

.why-we .icons-box h5 {
    color: #646464;
    letter-spacing: 6px;
    font-weight: 400;
}

.why-we .icons-box:hover {
    background-color: var(--blue);
    box-shadow: 0px 4px 12px 0px #00000021;
}

.why-we .icons-box:hover > * {
    color: #fff;
    fill: #fff;
}

.about-us-gallery {
    margin-top: 7rem;
    text-align: center;
}

.about-us-gallery h1 {
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 14px;
    display: inline-grid;
    align-items: center;
    justify-content: flex-start;
}

.about-us-gallery h1::after {
    content: ' ';
    position: relative;
    width: 80%;
    height: 5px;
    border-radius: 30px;
    background-color: var(--blue);
}

.about-us-gallery .aboutus-gallery-image-01 {
    width: 100%;
    height: 400px;
}

.about-us-gallery .aboutus-gallery-image-01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-us-gallery .aboutus-gallery-image-02 {
    width: 100%;
    height: 340px;
}

.about-us-gallery .aboutus-gallery-image-02 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-us-gallery .aboutus-gallery-image-03 {
    width: 100%;
    height: 280px;
}

.about-us-gallery .aboutus-gallery-image-03 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-us-gallery .aboutus-gallery-image-04 {
    width: 100%;
    height: 280px;
}

.about-us-gallery .aboutus-gallery-image-04 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-us-gallery .aboutus-gallery-image-05 {
    width: 100%;
    height: 300px;
}

.about-us-gallery .aboutus-gallery-image-05 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.product-page-content {
    margin-top: 5rem;
}

.product-page-content .product-page-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.product-page-content .product-page-buttons button {
    background-color: transparent;
    outline: none!important;
    border: none;
    font-size: 20px;
    border-bottom: 2px solid #3c3c3c;
    transition: .3s;
}

.product-page-content .product-page-buttons button:hover {
    color: var(--blue);
    border-bottom-color: var(--blue);
    transition: .3s;
}

.product-page-content .product-page-buttons button:focus {
    color: var(--blue);
    border-bottom-color: var(--blue);
    transition: .3s;
}

.product-page-content .product-box {
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 30px;
    border-radius: 30px;
    background-color: #eeeeee;
    background-image: url('../img/product-box-background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    background-size: contain;
    margin-top: 20px;
    transition: .3s;
    height: 550px;
}

.product-page-content .product-box img {
    width: 300px;
}

.product-page-content .product-box h6 {
    letter-spacing: 6px;
    color: #fff;
    font-weight: 300;
}

.product-page-content .product-box h1 {
    color: #0a1e55;
    font-size: 40pt;
    font-family: var(--bebas);
    text-align: center;
}

.product-page-content .product-box a {
    background-color: #0a1e55;
    color: #fff;
    padding: 12px 24px;
    font-family: var(--bebas);
    text-decoration: none;
    letter-spacing: 3px;
    border-radius: 14px;
    font-size: 18px;
}

.product-page-content .product-box:hover {
    background-image: url('../img/product-box-hover-background.jpg');
    transition: .3s;
}

.product-page-content .product-box:hover h1 {
    color: #753f00;
    transition: .3s;
}

.product-page-content .product-box a:hover {
    background-color: #844802;
    transition: .3s;
}

.product-page-content .transition {
    transition: .3s;
}

.product {
    margin-top: 5rem;
}

.product .product-image {
    background-image: url('../img/product-detail-background.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    border-radius: 0px 0px 0px 0px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: -30px;
}

.product .heads{
    display:grid;
    margin-bottom:20px;
}

.product .heads p{
    color:var(--blue);
    padding:0;
    margin-bottom:10px;
}

.product .heads h1{
    font-weight:700;
}

.product .product-table{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap: wrap;
}

.product .product-table img{
    width:400px;
}

.product .product-image img {
    width: 68%;
    position: relative;
    top: 60px;
}

.product .product-other-images .gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}

.product .product-other-images .gallery img {
    width: 220px;
    margin-top: 80px;
    border: 1px solid #3c3c3c;
    padding: 20px;
    border-radius: 30px;
}

.product .product-content-head {
    color: #282828;
    font-weight: 700;
    padding-bottom: 10px;
}

.product .product-content {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.product .product-content li {
    font-size: 20px;
    color: #363636;
}

.d-grid {
    gap: 16px;
    margin-top: 20px;
    display: grid!important;
    align-items: start;
    align-content: center;
}

.product .offer-button {
    width: 400px;
    background: rgb(12,49,87);
    background: linear-gradient(90deg, rgba(12,49,87,1) 0%, rgba(0,102,206,1) 100%);
    border-radius: 30px;
    padding: 20px 0px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    transition: .3s;
}

.product .contact-button {
    width: 400px;
    background: rgb(215,128,24);
    background: linear-gradient(90deg, rgba(215,128,24,1) 0%, rgba(255,186,0,1) 100%);
    border-radius: 30px;
    padding: 20px 0px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    transition: .3s;
}

.product .offer-button:hover {
    background: rgba(12,49,87,1);
    transition: .3s;
}

.product .contact-button:hover {
    background: rgba(215,128,24,1);
    transition: .3s;
}

.other-products {
    background-color: #232323;
    padding: 40px 0px;
}

.other-products .head {
    color: #fff;
    font-weight: 700;
}

.other-products .content {
    color: #fff;
}

.other-products .button {
    color: #fff;
    background: rgb(12,49,87);
    background: linear-gradient(90deg, rgba(12,49,87,1) 0%, rgba(0,102,206,1) 100%);
    padding: 16px 32px;
    text-align: center;
    border-radius: 22px;
    font-weight: 700;
    font-size: 18px;
    transition: .3s;
}

.other-products .button:hover {
    background: rgba(12,49,87,1);
    transition: .3s;
}

.other-products .product-box {
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 30px;
    border-radius: 30px;
    background-color: #eeeeee;
    background-image: url('../img/product-box-background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
    margin-top: 20px;
    height: 510px;
    transition: .3s;
    align-content: center;
}

.other-products .product-box a {
    text-align: center;
}

.other-products .product-box img {
    width: 240px;
}

.other-products .product-box h6 {
    letter-spacing: 10px;
    color: #fff;
    font-weight: 300;
    margin-top: 20px;
}

.other-products .product-box h1 {
    color: #0a1e55;
    font-size: 40pt;
    font-family: var(--bebas);
}

.other-products .product-box .product-button {
    background-color: #0a1e55;
    color: #fff;
    padding: 12px 24px;
    font-family: var(--bebas);
    text-decoration: none;
    letter-spacing: 3px;
    border-radius: 14px;
    font-size: 18px;
}

.other-products .product-box:hover {
    background-image: url('../img/product-box-hover-background.jpg');
    transition: .3s;
}

.other-products .product-box:hover h1 {
    color: #753f00;
    transition: .3s;
}

.other-products .product-box .product-button:hover {
    background-color: #844802;
    transition: .3s;
}

.news-content {
    margin-top: 5rem;
}

.news-content .news-image {
    height: 400px;
    width: 100%;
    margin-bottom: 20px;
}

.news-content .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    filter: brightness(.8);
}

.gallery {
    margin-top: 6rem;
}

.gallery .image-container {
    columns: 3 250px;
    gap: 15px;
}

.gallery .image-container img {
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%;
}

.references {
    margin-top: 5rem;
}

.references .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96%;
    height: 180px;
    border: 2px solid #1f1f1f;
    padding: 20px;
    border-radius: 40px;
    margin-top: 30px;
}

.references .image img {
    max-width: 240px;
    height: 100%;
    object-fit: contain;
}

.contact-page-iframe a {
    display: grid;
    position: relative;
    width: 100%;
    top: -70px;
}

.contact-page-content iframe {
    width: 100%;
    height: 450px;
    position: relative;
}

.contact-page-content-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(190deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6110819327731092) 100%);
}

.contact-infos {
    font-family: var(--comfortaa);
    margin-top: 30px;
}

.contact-info-content {
    background-color: #f7f7f7;
    padding: 40px;
    border-radius: 30px;
    transition: .3s;
    display: grid;
    justify-items: center;
    align-items: center;
    justify-content: center;
    margin-top:20px;
    height: 300px;
}

.contact-info-content svg {
    width: 90px;
    height: 90px;
    padding-bottom: 20px;
    fill: #324989;
}

.contact-info-content h3 {
    color: #141414;
    font-weight: 404040;
}

.contact-info-content a {
    color: #656565;
    text-decoration: none;
}

.contact-info-content:hover {
    background-color: #324989;
}

.contact-info-content:hover * {
    color: #fff;
    fill: #fff;
}

.contact-form {
    font-family: var(--comfortaa);
    margin-top: 50px;
}

.contact-form .contact-head {
    display: flex;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form .contact-head::after {
    content: ' ';
    background: #324989;
    background: linear-gradient(90deg, #5f7fd6 0%, #324989 100%);
    width: 40%;
    left: -50px;
    height: 70px;
    margin-top: -10px;
    border-radius: 60px;
    z-index: -1;
    position: absolute;
}

.form-control2 {
    width: 100%;
    padding: 14px 22px;
    margin-top: 10px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #999999;
    font-weight: 600;
    font-family: var(--quicksand);
}

.btnContact {
    float: right;
    border-radius: 20px;
    padding: 16px 38px;
    color: #fff;
    font-weight: 700;
    font-family: var(--quicksand);
    margin-top: 8px;
    border: none;
    letter-spacing: 10px;
    background-color: #324989;
    border: 1px solid #324989;
    transition: .3s;
}

.btnContact:hover {
    background-color: transparent;
    color: #324989;
    transition: .3s;
}

.item {
    position: absolute;
    transition: all 0.3s ease;
}

.item.active {
    left: 0;
    right: 0;
    z-index: 3;
}

.item.left {
    left: -35%;
    right: 0;
    z-index: 1;
}

.item.right {
    left: 50%;
    right: 0;
    z-index: 1;
}

.item.hidden-left {
    left: -600px;
    right: 0;
    z-index: 1;
}

.item.hidden-right {
    left: 0;
    right: -600px;
    z-index: 1;
}

.footer .social-media{
    margin-top:3rem;
}

.footer .social-media h5{
    color: #324989;
    font-weight: 700;
}

.footer .footersocial {
    display: flex!important;
    flex-wrap:wrap;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 14px;
    margin-top: 20px;
}

.footer .footersocial li {
    width: 50px;
    height: 50px;
    background-color: #848fac;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
}

.footer .footersocial li a {
    color: #fff;
    text-decoration: none!important;
    padding: 0!important;
    margin-top: 3px;
}

.footer .footersocial li a i {
    font-size: 20px;
}

.prismatic-head {
    color: #ec7e00;
    font-weight: 900;
    font-family: var(--poppins);
}

.grpdepo{
    margin-top:5rem;
}

.grpdepo .slogan{
    font-weight:900;
    color:#242424;
    text-align:right;
}

.grpdepo .slogan-stroke {
    color: #fff;
    font-weight: 700;
    -webkit-text-stroke: 1.5px #242424;
    text-align: right;
    font-size:50px;
}

.module-tanks {
    background: url('../img/module-tanks-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    font-family: var(--poppins);
}

.module-tanks .left-content {
    list-style: none;
    display: grid;
    text-align: right;
}

.module-tanks .left-content li h5 {
    font-weight: 600;
}

.module-tanks .right-content {
    list-style: none;
    display: grid;
    text-align: left;
}

.module-tanks .right-content li h5 {
    font-weight: 600;
}

.module-tanks .head {
        display: grid;
    justify-items: center;
    justify-content: center;
    font-family: var(--poppins);
}

.module-tanks .head h1 {
    color: #0066ce;
    font-weight: 700;
    margin:5rem 0;
}

.references-table{
    border:none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.references-table tr{
    border-bottom: 1px solid #000;
    position: relative;
}



.portfolio .filters {
    text-align: center;
    margin-top: 50px;
    font-family: var(--comfortaa);
}

.portfolio .filters ul {
    padding: 0;
    display: inline-flex;
    background-color: #f3f3f3;
    padding: 20px 40px;
    border-radius: 60px;
    gap: 14px;
}

.portfolio .filters ul li {
    list-style: none;
    display: inline-block;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    background-color: #222222;
    padding: 14px 28px;
    color: #fff;
    border-radius: 30px;
    transition: .3s;
}

.portfolio .filters ul li:hover {
    background-color: #d46d00;
    transition: .3s;
}

.portfolio .filters ul li.active {
    background-color: #d46d00;
    transition: .3s;
}

.portfolio .filters-content {
    margin-top: 50px;
}

.portfolio .filters-content .show {
    opacity: 1;
    visibility: visible;
    transition: all 350ms;
}

.portfolio .filters-content .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 350ms;
}

.portfolio .filters-content .item1 {
    text-align: center;
    cursor: pointer;
    margin-bottom: 30px;
    height: 360px;
}

.portfolio .filters-content .item1 img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio .filters-content .item1 .p-inner {
    padding: 20px 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.portfolio .filters-content .item1 .p-inner h5 {
    font-size: 15px;
}

.section.portfolio .filters-content .item1 .p-inner .cat {
    font-size: 13px;
}

.section.portfolio .filters-content .item1 img {
    width: 100%;
}

.module-tanks {
    background: url('../img/module-tanks-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    font-family: var(--poppins);
}

.module-tanks .left-content {
    list-style: none;
    display: grid;
    text-align: right;
}

.module-tanks .left-content li h5 {
    font-weight: 600;
}

.module-tanks .right-content {
    list-style: none;
    display: grid;
    text-align: left;
}

.module-tanks .right-content li h5 {
    font-weight: 600;
}
