/* BASE */
:root {
    --blue-15: #153353;
    --white: #fff;
    --black: #000;
    --text: #636363;
    --ccc: #ccc;
    --blue-0d: #0d3081;
    --blue-13: #135d9f;
    --blue-38: #3875c1;
    --blue-0f: #0f538f;
    --red-f13: #f13c10;
    --red-d9: #d9520f;
    --d3: #d3d3d3;
    --orange-f3: #f36335;
    --orange-e5: #e5710e;
    --blue-4b: #4b5f79;
    --yellow-f9: #f9f7f3;
    --yellow-ef: #efef34;
	--blue-2d: #2d57a6;
	--blue-0f1: #0f92d9;
	--blue-18: #1852ab;
	--blue-28: #284895;
	--red-cf: #cf2323;
	--red-fe: #fe0101;
}


body {
    font-family: "Open Sans", sans-serif;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--white);
}

h1 {
    font-size: 5rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 15px;
	color: var(--blue-28);
	-webkit-text-stroke: 2px var(--white);
}

h2 {
    font-size: 2.5rem;
    color: var(--blue-0d);
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 10px;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 150px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--red-f13);
}

.h2-nounderline {
    font-size: 2.5rem;
    color: var(--blue-0d);
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
}

.h2-nounderline::after {
    content: "";
    display: none;
}

h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--blue-0d);
}

h4 {
    color: var(--blue-0d);
    margin-bottom: 20px;
}

h6 {
    font-weight: bold;
    color: var(--blue-0d);
    margin-bottom: 5px;
}

b {
    color: var(--blue-0f1);
    font-size: 1.125rem;
}

p {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
}

span {
    font-size: 1rem;
    color: var(--white);
}

.circle-center {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.space-custom1 {
    height: 70px;
}

.title-custom {
    color: var(--orange-e5);
    font-size: 1.250rem;
    font-family: cursive;
    margin-bottom: 10px;
}

/* -------------------------------------------------------------- */

/* COMPONENTS */

/* HEADER */

.header-top {
    background-color: var(--blue-15);
    height: 50px;
}

.header-top-list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 18px;
}

.header-top-list i {
    margin-right: 5px;
}

.header-top-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 20px;
}

.header-top-social a {
    background-color: var(--white);
    color: var(--blue-0d);
    width: 32px;
    height: 32px;
}

.header-bottom {
    height: 100px;
    display: flex;
    align-items: center;
}

.navbar-toggler {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: 30px;
}

.nav-link {
    text-transform: uppercase;
    font-weight: bold;
	color: var(--blue-2d);
}

.nav-link.show {
    color: var(--blue-13) !important;
}

.header-search {
    padding-left: 37px;
    border-left: 1px solid var(--ccc);
}

.dropdown-item {
	color: var(--blue-2d);
}

/* MAIN */

.banners {
    margin-top: 150px;
    position: relative;
}

.banner {
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.banner img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner .banner-subimg {
	position: static;
	border: 3px solid var(--white);
	object-fit: cover;
}

.banner-content {
    position: absolute;
    text-align: center;
    color: var(--white);
    z-index: 1;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-content span {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--red-fe);
	-webkit-text-stroke: 1px var(--white);
}

.sec-news  span{
	color: unset;
}

.product-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    background-color: var(--white);
    height: 100%;
}

.product-img {
    position: relative;
    color: var(--white);
}

.product-img img {
	height: 234px;
	object-fit: cover;
	object-position: top;
}

.product-img-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 17px;
    right: 18px;
    text-align: right;
    align-items: flex-end;
}

.product-img-content b {
    color: var(--white);
}

.product-img-content span:first-child {
    background: var(--yellow-ef);
    width: 40px;
    text-align: center;
    font-weight: bold;
    color: var(--blue-0f);
    font-size: 14px;
    margin-bottom: 10px;
}

.product-content {
    padding: 10px 20px;
}

.product-content span {
    color: var(--black);
}

.product-content .new-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-content .new-price span {
	color: var(--blue-18);
}

.product-content .new-price span b {
	color: var(--red-cf);
}

.sec-event b {
    font-size: 1rem;
}

.sec-event p {
    margin-bottom: .4rem;
}

.descript-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 5%;
}

.descript-group .icon {
    width: 70px;
    height: 70px;
    color: #3875c1;
    font-size: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.descript-group .text {
    width: 85%;
}

.descript-company-more .img-brand:not(:first-child) {
    margin-left: -40px;
    transition: .3s;
}

a.img-brand {
    width: 60px;
    height: 60px;
    box-shadow: 0 0 10px rgba(255, 255, 255, .2);
    margin-left: -20px;
    background-color: var(--blue-0d);
    color: var(--white);
    border: 2px solid var(--white);
}

.descript-company-more:hover .img-brand:not(:first-child) {
    margin-left: -20px;
}

.eveluate-list {
    margin-top: 50px;
}

.evaluate-item {
    min-width: 350px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    padding: 20px;
}

.evaluate-item .eveluate-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.evaluate-item .group-info {
    padding: 0 15px;
}

.evaluate-item .group-info p {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 0;
}

.evaluate-item .group-info span {
    color: var(--text);
    font-size: 0.938rem;
}

.evaluate-item .icons {
    display: flex;
    align-items: center;
}

.evaluate-item span {
    color: var(--black);
}

.evaluate-item .icons i {
    margin-right: 5px;
    color: var(--orange-f3);
}

.evaluate-item hr {
    margin: 16px 0;
}

.more-info-list i {
    font-size: 2.5rem;
    color: #296fad;
    margin-bottom: 15px;
}

.more-info-list b {
    display: block;
    color: var(--blue-4b);
    margin-bottom: 5px;
}

.slick-next,.slick-prev {
    border: 0;
    height: 50px;
    background: var(--blue-38);
    color: var(--white);
    opacity: 0;
    transition: .3s;
}

.banners:hover .slick-next, .banners:hover .slick-prev {
    opacity: .8;
}

.slick-prev {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.slick-next {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    font-size: 0;
    gap: 15px;
}

.slick-dots li button {
    border: 0;
    background-color: var(--white);
    width: 6px;
    height: 6px;
    border-radius: 40px;
    padding: 0;
    transition: .3s;
}

.slick-active button {
    width: 20px !important;
}

.form-group {
    margin-bottom: 15px;
}

.form-group p {
    margin-bottom: 5px;
}

.form-group b {
    color: var(--text);
}

.card-item img {
    width: 100%;
    margin-bottom: 10px;
}

.card-item p {
    margin-bottom: 5px;
}

.comment a {
    color: var(--text);
}

.button-contact-vr .circle-center {
   width: 50px;
   height: 50px;
   font-size: 1.5rem;
}

.wave1 {
   animation: wave1 linear 1s infinite;
}

@keyframes wave1 {
  0% {box-shadow: 0 0 0px 0px rgba(23, 118, 242, 1);}
  100% {box-shadow: 0 0 0px 10px rgba(23, 118, 242, 0);}
}

.wave2 {
   animation: wave2 linear 1s infinite;
}

@keyframes wave2 {
  0% {box-shadow: 0 0 0px 0px rgba(33, 150, 243, 1);}
  100% {box-shadow: 0 0 0px 10px rgba(33, 150, 243, 0);}
}

.wave3 {
   animation: wave3 linear 1s infinite;
}

@keyframes wave3 {
  0% {box-shadow: 0 0 0px 0px rgba(221, 51, 51, 1);}
  100% {box-shadow: 0 0 0px 10px rgba(221, 51, 51, 0);}
}

.rotate-shake {
  animation: rotate-shake 1.5s infinite;
}

@keyframes rotate-shake {
  0% {
    transform: rotate(-20deg);
  }
  5% {
    transform: rotate(20deg);
  }
  10% {
    transform: rotate(-20deg);
  }
  15% {
    transform: rotate(20deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}


/* FOOTER */

footer {
    background-color: var(--blue-15);
    padding-top: 50px;
}

footer b {
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}

footer p {
    color: var(--d3);
}

footer li {
    margin-bottom: 10px;
}

.footer-logo {
    width: 200px;
}

footer hr {
    border: 1px solid var(--white);
    margin: 0 0 30px;
}

.footer-info-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-info-item .circle-center {
    min-width: 40px;
    height: 40px;
    background: var(--orange-f3);
    color: #fff;
}

.footer-social .circle-center{
    background-color: var(--blue-4b);
}

footer .line {
    margin: 0 0 20px;
}


/* -------------------------------------------------------------- */

/* UTILITIES */

.header-top-list a:hover {
    text-decoration: underline;
}

.nav-link:hover, .dropdown-item:hover {
    color: var(--blue-2d);
	opacity: .8;
}





/* -------------------------------------------------------------- */

/* RESPONSIVE */

@media (max-width: 1399px) {
    .navbar-nav {
        gap: 10px;
    }

    .header-search {
        padding-left: 25px;
    }
}

@media (max-width: 1199px) {
    span {
        font-size: .8rem;
    }

    .navbar-nav {
        gap: 2px;
    }

    .header-search {
        padding-left: 17px;
    }

    .nav-link {
        font-size: .8rem;
    }

    .banner {
	height: 500px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .header-bottom {
        position: relative;
    }

    .header-search {
        display: none;
    }

    .navbar-collapse.collapse:not(.show) {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        background: var(--white);
        width: 320px;
        height: 100%;
        z-index: 9999;
        padding: 25px;
        transform: translateX(-320px);
        transition: 0.5s ease-in-out;
        display: block;
    }

    .navbar-collapse.show {
        transform: translateX(0px);
    }

    .nav-overlay {
        position: absolute;
        background: #0000007d;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 2;
        transform: translateX(-100vw);
        transition: 0.5s ease-in-out;
        display: block;
    }

    .nav-overlay.active {
        transform: translateX(0);
    }

    .banners {
        margin-top: 100px;
    }
	
	.banner {
		height: 320px;
	}
	
	.banner-content span {
		font-size: .8rem;
	}

    .footer-logo {
        width: 240px;
        margin-bottom: 50px;
    }

    .footer-info-item {
        flex-direction: column;
    }

    .footer-social {
        flex-direction: row;
        justify-content: center;
    }

    .space-custom1 {
        height: 40px;
    }

    .product-item {
        margin-bottom: 20px;
        height: auto;
    }

    .ads-1a {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 1.5rem;
		-webkit-text-stroke: 1px var(--white);
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 45px;
    }

    .banner {
		height: 200px;
    }

    .navbar-brand img {
        width: 250px;
    }
	
	.banner-content span {
		font-size: .5rem;
		-webkit-text-stroke: .5px var(--white);
	}
	
	.banner .banner-subimg {
		border-width: 1px;
	}
}