@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --yellow: #ffdd02;
    --blue: #00a3e2;
    --blue-dark: #004295;
}
body{
    font-family: 'Jost', sans-serif;
    font-family: "Work Sans", sans-serif;
	font-weight: 400;	
/*	font-size: 16px;*/
/*	line-height: 1.65;*/
	overflow-x: hidden;
}
p{
    font-size: 1rem;
    font-weight: 400;
}
a {
	color: var(--blue);
    text-decoration: none;
}
a:hover {
    color: var(--dark-blue);
    text-decoration: none;
}
h1, h2{
    font-family: "Archivo Black", sans-serif;
}
.text-blue{
	color: var(--blue) !important;
}
.text-yellow{
    color: var(--yellow) !important;
}
.bg-dark-blue{
    background-color: var(--dark-blue); 
}
.section-100{
	padding: 100px 0;
}
.section-70{
	padding: 70px 0;
}
.margin-100{
    margin: 100px 0;
}
.section-title h2{
    font-size: 2.5rem;
}
.h-50px {
    height: 50px !important;
}
.h-100px {
    height: 100px !important;
}
.h-150px {
    height: 150px !important;
}
.h-200px {
    height: 200px !important;
}
.h-250px {
    height: 250px !important;
}
.h-300px {
    height: 300px !important;
}
.h-350px {
    height: 350px !important;
}
.h-400px {
    height: 400px !important;
}
.h-450px {
    height: 450px !important;
}
.h-500px {
    height: 500px !important;
}
.h-515px {
    height: 515px !important;
}
.h-550px {
    height: 550px !important;
}
  

/* =============== */
/* BTN */
/* =============== */
.btn {
    border-radius: 4px;
    font-size: 1rem;
    -webkit-transition: all 200ms linear !important;
    transition: all 200ms linear !important;
    padding: 7px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
}
.btn-blue {
    color: var(--bs-white);
    background-color: var(--blue);
}
.btn-blue:active, 
.btn-blue:focus, 
.btn-blue:hover {
    color: var(--bs-white) !important;
    background-color: var(--blue) !important;
}
.btn-blue-dark {
    color: var(--bs-white);
    background-color: var(--blue-dark);
}
.btn-blue-dark:active, 
.btn-blue-dark:focus, 
.btn-blue-dark:hover {
    color: var(--bs-white) !important;
    background-color: var(--blue-dark) !important;
}
.btn-yellow {
    color: var(--bs-black);
    background-color: var(--yellow);
}
.btn-yellow:active, 
.btn-yellow:focus, 
.btn-yellow:hover {
    color: var(--bs-black) !important;
    background-color: #efcf00 !important;
}

.btn-outline{
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0px;
    padding: 0px 0px 5px 0px;
    text-transform: none;
    border-radius: 0px;
	display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}
.btn-outline-purple{
    color: var(--blue-dark);
    border-bottom: 3px var(--blue-dark) solid;
}
.btn-outline-blue{
    color: var(--blue);
    border-bottom: 3px var(--blue) solid;
}


/* #Navigation
================================================== */
.cbp-af-header {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	background-color: var(--blue);
	border-bottom: 1px solid rgba(23,23,23,0.05);
}
.cbp-af-header.cbp-af-header-shrink {
    position: fixed;
	background-color: var(--blue);
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .padding-on-scroll{
    margin-top: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .navbar-brand{
	height: 60px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .nav-item{
    margin: 15px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .nav-link{
    margin-top: 8px;
    margin-bottom: 8px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.padding-on-scroll{
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
}
.navbar-brand{
	position: relative;
	height: 40px;
	display: block;
    margin: 0;
    padding: 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-brand img{
	height: 100%;
    width: auto;
	display: block;
    margin: 0;
    padding: 0;
}
.navbar-toggler {
	float: right;
	border: none;
	padding: 0;
    transition: color 300ms linear;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 16px;
	height: 18px;
	background-image: none;
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
    margin-right: 7px;
	border-bottom: 2px solid var(--bs-white);
    transform: translateX(8px);
}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before{
	width: 16px;
	position: absolute;
	height: 2px;
	background-color: var(--bs-white);
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transform: translateX(-8px);
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
	width: 24px;
	left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: translateX(-8px) rotate(45deg);
	width: 24px;
	left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translate(-8px, 8px) rotate(-45deg);
	width: 24px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
    transition: all 300ms linear;
}
.nav-item{
	position: relative;
    margin: 5px 15px 10px;
    padding: 0;
    display: inline-block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.nav-link{
	color:  #fff !important;
	position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    margin: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0 !important;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.nav-link::before{
    position: absolute;
    content: '';
    bottom: -12px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--blue-dark);
    opacity: 0;
    transition: all 250ms linear;
}
.nav-link.active::before,
.nav-link:hover::before{
    bottom: -8px;
    opacity: 1;
}
.nav-link:hover{
	color: var(--blue-dark) !important;
}
.navbar-light .navbar-nav .active>.nav-link, 
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link.show, 
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--blue-dark)
}


/* =============== */
/* HEADER HOME */
/* =============== */
.header-home {
	width: 100%;
	height: 700px;
    background-size: cover;
    background-position: center;
    background-image: url('https://cuatr0000.com/wp-content/uploads/2021/07/IUVARE-DREAM.png');
}
.header-home::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}

.header-home-sm{
	width: 100%;
	height: 50vh;
	min-height: 340px;
}
.header-home h1{
	font-size: 4rem;
}
.header-home h1 span{
    background-image: linear-gradient(transparent calc(65% - 5px), var(--blue) 5px);
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline;
    transition: 0.5s ease;
}
.header-home h2{
	font-size: 32px;
	color: #fff;
	font-weight: 400;
}


/* =============== */
/* CTA */
/* =============== */
.cta-iuvare{
    background-image: url('https://cuatr0000.com/wp-content/uploads/2024/04/cta-1.jpg');
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-iuvare:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue-dark);
    opacity: 0.6;
}
.cta-iuvare p{
    font-size: 2rem;
}
.bg-fixed{
	background-attachment: fixed;
}
.bg-image{
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.about-image{
	position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
}
.about-alt p{
    color: #b5b5b5;
}
.about-alt-image{
	position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    right: 0;
}
.about-alt-image::before{
	content: "";
    position: absolute;
    width: 40%;
    height: 15px;
    background: var(--blue);
    top: -15px;
    right: 0;
}
.testimonail .review i{
	font-size: 35px;
	color: var(--purple-tin);
}


.img-fig::before{
    content: "";
    position: absolute;
    width: 40%;
    height: 10px;
    background: var(--blue);
}
.img-left-bottom-fig::before{
    bottom: -10px;
    left: 0;
}
.img-left-top-fig::before{
    top: -10px;
}
.img-right-top-fig::before{
    top: -10px;
    right: 0;
}
.img-right-bottom-fig::before{
    bottom: -10px;
    right: 0;
}





.contact-form{
	background-color: var(--blue-dark);
	padding: 30px 20px;
    border-radius: 5px;
}
.form-control {
    height: 50px;
    font-size: 15px;
    color: #495057;
    border: none;
}
textarea.form-control{
    height: 150px;
}
.wpcf7-spinner{
    display: none !important;
}

.owlPhotos .owl-item{
    height: 500px;
}
.owl-carousel .owl-item img,
.owlPhotos .owl-item img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.owl-theme .owl-dots{
    text-align: center;
    margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--purple);
}
.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 5px 4px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 30px
}

footer{
	padding: 35px 0;
	background: var(--blue);
}
footer p{
	color: #fff;
    letter-spacing: 1px;
    font-size: 14px;
}
footer p a{
	color: #fff;
	opacity: 0.7;
}


@media (max-width: 768px) {
    .navbar-collapse,
    .navbar-nav{
        text-align: center;
    }
    .nav-link::before{
        content: none;
    }
    .nav-item {
        margin: 0;
    }
    .nav-link{
        padding: 10px 0 !important;
        font-size: 17px;
    }
    .margin-100 {
        margin: 0;
    }
.section-100 {
    padding: 50px 0;
}
.section-title h2 {
    font-weight: 700;
    font-size: 2rem;
}
.text-sm-black{
    color: #000 !important;
}

}



