

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

body{
    background: #fff;
    color: #595959;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    margin: 0;
}


/*---------- grid -----------------------------*/
.product-landing-page .row{
    --bs-gutter-x: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.product-landing-page .row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    box-sizing: border-box;
}

.grid .product-landing-page [class*="col-"]:last-of-type{
    padding-right: calc(var(--bs-gutter-x) * .5);
}

.product-landing-page .col-12{
    flex: 0 0 auto;
    width: 100%;
}

.product-landing-page .justify-content-center {
    justify-content: center!important;
}

.product-landing-page .text-center{
    text-align: center !important;
}

.product-landing-page h2.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.product-landing-page h3 {
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 30px;
}

.product-landing-page .container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    position: relative;
    width: 90%;
}

@media (min-width: 576px){
    .product-landing-page .container{
        max-width: 540px;
    }
}

@media(min-width:768px) {
    .product-landing-page .container{
        max-width: 720px;
        width: 100%;
    } 

    .product-landing-page .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .product-landing-page .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .product-landing-page .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .product-landing-page .col-md-6{
        flex: 0 0 auto;
        width: 50%;
    }

    .product-landing-page .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .product-landing-page .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media(min-width:1024px) {
    .product-landing-page .container{
        max-width: 960px;
    }

    .product-landing-page .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .product-landing-page .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .product-landing-page .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}


@media(min-width:1366px) {
    .product-landing-page .container{
        max-width: 1140px;
    }

    .product-landing-page .col-xl-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .product-landing-page .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .product-landing-page .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .product-landing-page .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .product-landing-page .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media(min-width:1400px) {
    .product-landing-page .container{
        max-width: 1320px;
    }
}

/* ------------end grid------------------- */
.product-landing-page section{
    margin-bottom: 100px;
}

.product-landing-page .btn{
    border: 2px solid #1a3a7b;
    background-image: -webkit-linear-gradient(30deg, #1a3a7b 50%, transparent 50%);
    background-image: linear-gradient(30deg, #1a3a7b 50%, transparent 50%);
    background-size: 700px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 500ms ease-in-out;
    transition: background 500ms ease-in-out;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85em;
    padding: 5px 50px;
    border-radius: 2px;
}

.product-landing-page .btn:hover{
    background-position: 100%;
    color: #1a3a7b;
}

/* .product-landing-page .primary-btn{
    
    border-radius: 50px;
}

.product-landing-page .secondary-btn {
    font-size: 0.85em;
    padding: 5px 30px;
    border-radius: 50px;
    background-size: 400px;
} */

.product-landing-page img{
    width: 100%;
}

.product-landing-page h1{
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px;
    color: #fff;
}

.product-landing-page h2{
    font-size: 2.8em;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 50px;
    color: #1a3a7b;
}

.product-landing-page h3{
    font-size: 1.43em;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 30px;
    color: #1a3a7b;
}

header{
    width:100%;
    padding:15px 0;
    background:#fff;
    position:fixed;
    top:0;
    left:0;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

header .logo{
    display: flex;
}

header .logo img {
    height:60px;
}

/* banner */
#main-banner{
    width: 100%;
    overflow: hidden;
    position: relative;
}
#main-banner img{
    width: 100%;
    height: 100vh;
    object-position: center;
    object-fit: cover;
}

#main-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0,0,0,0.4);
    background: linear-gradient(-90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 70%);
    pointer-events: none;
}

#main-banner .caption{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;

}

#main-banner .caption-text {
    width: 80%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    color: #fff;
}

#main-banner .caption-text p {
    margin: 0;
    font-size: 1.3em;
    font-weight: 300;
    line-height: 1.2;
}

.mouse_scroll {
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 100px;
    margin-top: 125px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    cursor: pointer;
}


.m_scroll_arrows
{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
   
  border-right: 2px solid #f8f8f8;
  border-bottom: 2px solid #f8f8f8;
  margin: 0 0 3px 4px;
  
  width: 16px;
  height: 16px;
}


.unu
{
  margin-top: 1px;
}

.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
  
}

.unu
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  
  animation-direction: alternate;
  animation-delay: alternate;
}

.doi
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .2s;
  animation-direction: alternate;
  
  margin-top: -6px;
}

.trei
{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .3s;
  animation-direction: alternate;
  
  
  margin-top: -6px;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid #f8f8f8;
  top: 170px;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #f8f8f8;
  position: relative;
  
  height: 4px;
  width: 4px;
  border: 2px solid #f8f8f8;
  -webkit-border-radius: 8px;
    border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}

/* main content */
#main-content{
    font-size: 1.15em;
}

#main-content .row{
    align-items: center;
}

#main-content .content{
    padding-left: 50px;
}

#main-content .image {
    padding: 0 30px;
}

#products{
    padding: 100px 0;
    background: #f8f8f8;
    margin-bottom: 0;
}

#products .item {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

#products .item .inner{
    padding: 30px;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    height: 100%;
    border-radius: 2px;
    position: relative;
    padding-bottom: 60px;
    background: #fff;
}

#products .item .inner .content{
   margin: 30px 0;
}

#products .item .inner .content .btn{
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
}

footer{
    background: #1a3a7b;
    padding: 60px 0 40px;
    color: #fff;
    font-size: 0.85em;
}

footer a{
    color: #fff;
}

footer img{
    height: 60px;
    width: auto;
}

footer .copy-right{
    margin-top: 30px;
    padding-top: 30px;
    border-top: #122e68 solid 1px;

}

footer .copy-right p{
    margin: 0;
    opacity: 0.8;
    font-weight: 300;
}

@media(min-width:1024px){
    #main-banner .caption-text{
        width: 50%;
    }

    #main-content .image {
        padding: 0 100px;
    }
}