@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none !important;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    overflow-x: hidden;
}

:root {
    --primary-color: #143362;
    --second-color: #E31D1A;
}

/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0d264d;
    z-index: 10000009;
}

#preloader {
    display: table;
    table-layout: fixed;
}

#preloader-status {
    display: table-cell;
    vertical-align: middle;
}

.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.loader {
    position: relative;
    width: 70px;
    height: 70px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 2px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 2px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.loader span {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -2px;
    left: -2px;
    border: 2px solid transparent;
    border-top: 2px solid #f0c35e;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navbar {
    z-index: 5000;
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 400;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.navbar-nav>li>ul {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 0;
    border-bottom: 3px solid var(--second-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.navbar-nav>li>ul>li {
    border-bottom: 1px solid #ddd;
}

.navbar-nav>li>ul>li:last-child {
    border-bottom: 0;
}

.navbar-nav>li>ul>li>a {
    color: var(--primary-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.navbar-nav>li>ul>li>a:hover {
    color: var(--second-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-nav .language-switch .dropdown-toggle {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    line-height: 56px;
    padding: 0 10px;
}

.navbar-nav .language-switch .bootstrap-select .dropdown-toggle:focus {
    outline: 0 !important;
}

.navbar-nav .language-switch .dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color);
}

.navbar-nav .language-switch .dropdown-menu {
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

#homeSlider {
    margin-top: 120px;
}

#homeSlider .carousel-item,
#homeSlider .carousel-item .item {
    aspect-ratio: 16/6;
    background-size: cover;
}

#homeSlider .carousel-item:before {
    background-color: rgba(22, 40, 76, 0.54);
    content: '';
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

#homeSlider .carousel-item .content {
    position: relative;
    z-index: 2;
}

#homeSlider .carousel-bottom {
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 3;
}

#homeSlider .carousel-bottom button {
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    background-color: transparent;
    margin-right: 10px;
}

#homeSlider .carousel-bottom button.active {
    background-color: #fff;
}

#homeSlider .carousel-bottom .social a {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.primary-color {
    color: var(--primary-color);
}

.bg-primary-color {
    background-color: var(--primary-color);
}

.aspect16-9 {
    aspect-ratio: 16/9;
}

.object-cover {
    object-fit: cover;
    object-position: center;
}

#services {
    width: 100%;
    overflow: hidden;
}

#services .item:nth-child(2n) .image {
    order: 2;
}

#services .item a {
    text-decoration: none;
    color: var(--primary-color);
}

#services .item a i {
    color: var(--second-color);
}

#blog h2 {
    color: #fff;
    font-size: 3em;
}

#blog .item .date {
    border: 1px solid #fff;
    color: #fff;
    aspect-ratio: 1;
}

#blog .item .date .day {
    font-size: 3em;
}

#blog .item .content {
    color: #fff;
}

#page #blog .item .date {
    color: var(--primary-color);
    border: 1px solid #ddd;
}

#page #contact .item {
    aspect-ratio: 1;
}

#page #contact h4:after {
    margin: 20px auto;
}

#products .title {
    margin-bottom: 40px;
}

#products h2 {
    font-size: 3em;
}

#products .controls span {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width:600px) {

    #homeSlider .carousel-item,
    #homeSlider .carousel-item .item {
        aspect-ratio: 9/14;
        background-size: cover;
    }

    #services .item:nth-child(2n) .image {
        order: 0;
    }

    #services .item {
        margin-bottom: 30px;
    }

    #services .item .image {
        margin-bottom: 30px;
    }
}

#product_slider .item img {
    aspect-ratio: 9/10;
    object-fit: cover;
    object-position: center;
}

#product_slider .item a {
    text-decoration: none !important;
}

#footer-content {
    padding: 50px 0;
}

#footer-content a {
    font-size: 2rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 20px;
}

footer h5:after {
    display: block;
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--second-color);
    margin: 10px 0;
}

footer .content-box {
    padding: 0 0 2rem 0;
    margin: 0 0 2rem 0;
    border-bottom: 1px solid #ddd;
}

footer .social a {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

footer ul {
    list-style: none;
}

footer ul li a {
    text-decoration: none;
    color: #000;
}

footer .copyright {
    border-top: 1px solid #ddd;
}


#banner {
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 120px;
}

#banner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 65, 104, 0.8);
    content: "";
    z-index: 0;
}

#banner .container {
    position: relative;
    z-index: 1;
}

#page {
    background-image: url('../img/blue_elips.svg');
    background-position: center right -100px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0;
}

#page .image::before {
    position: absolute;
    left: -10px;
    top: -10px;
    max-width: 496px;
    width: 100%;
    max-height: 535px;
    height: 100%;
    content: "";
    background: #3073b5;
    z-index: -1;
}

#page .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#page .page-menu li {
    border-bottom: 1px solid #ddd;
    padding: 1em 0;
    display: flex;
    align-items: center;
}

#page .page-menu li a:before {
    width: 9px;
    height: 9px;
    margin-right: 10px;
    content: '';
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

#page .page-menu li a {
    color: #000;
}

#services h2:after,
#banner h1:after,
#page h2:after,
#page h4:after {
    display: block;
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--second-color);
    margin: 10px 0;
}

#page p {
    color: #525252;
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 25px;
}

#page .all_categories .item img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

#page .all_categories .item h2 {
    color: var(--primary-color);
    font-size: 1.5em;
    font-weight: 700;
}

#page .all_categories .item span {
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 400;
}

#page .all_categories .item h2:after {
    display: none;
}

#page .category-widget ul {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

#page .category-widget ul a {
    color: var(--primary-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    margin-bottom: 10px;
}

#page .category-widget ul a:hover {
    color: var(--second-color);
}

#page .category-widget ul a.active {
    color: var(--second-color);
    font-weight: 600;
}

#page .category-widget h3:after {
    display: block;
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--second-color);
    margin: 10px 0;
}

.weight-calculation calculation form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weight-calculation label {
    margin-top: 10px;
}

.weight-calculation input[type="number"] {
    padding: 8px;
    margin-top: 5px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.weight-calculation select {
    padding: 8px;
    margin-top: 5px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.weight-calculation button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.weight-calculation button:hover {
    background-color: var(--primary-color);
}

.weight-calculation #result {
    margin-top: 20px;
    font-weight: bold;
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {}





/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    footer .content-box {
        border-bottom: 0;
        padding: 0;
        margin: 0;
    }

    #footer-content {
        padding: 50px 0 200px 0;
        background-image: url(../img/mask.svg);
        background-position: center bottom -1px;
        background-repeat: no-repeat;
    }

    #footer-content a {
        margin-bottom: 0;
    }

    .language-switch {
        margin-left: 20px;
    }
}

@media only screen and (min-width : 480px) and (max-width:1400px) {
    .navbar{
        height: 120px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: .8em;
    }

    .navbar-brand img {
        width: 200px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {}


/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {}