/* font */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* variable */
:root {
    --base-color: #1a1919;
    --medium-gray:#787875;
    --white: #d8d8d4;
    --concrete-gray:#d8d8d4;
    --picton-blue:#4dc2f0;
    --light-medium-gray:#cdcdc7;
    --dark-gray:#2d2d2d; 
    --zeus-grey:#333331;
    --dark-medium-gray:#383636;
    --footer-gray: #d5d4d4;
    --alt-font: 'Roboto Condensed', cursive;
    --primary-font: 'Roboto', sans-serif;
}
body {
    font-size: 17px;
    line-height: 30px;
}
.container-fluid {
    max-width: 1750px;
}

/* heading tag */
h1 {
    font-size: 5rem;
    line-height: 4.5rem;
}
/*h3 {*/
/*    font-size: 3.125rem;*/
/*    line-height: 2.8rem;*/
/*}*/
h4 {
    font-size: 3.125rem;
    line-height: 2.8rem;
}
.fs-325 {
    font-size: 20.313rem;
    line-height: 20.313rem;
}
/* page title */
.page-title-large h1 {
    font-size: 5.625rem;
    line-height: 4.375rem;
}
/* header */
header .container-fluid {
    padding: 0;
}
.navbar .navbar-nav .nav-link {
    font-weight: 700;
    font-size: 15px;
    padding: 10px 24px;
}

header .navbar-brand {
    padding: 38px 0;
}
header .navbar-brand img {
    max-height:24px;
}
/* line height */
.lh-160 {
    line-height: 10rem;
}
.lh-300 { 
    line-height: 18.75rem;
}
/* top bottom left right */
.top-minus-250px {
    top: -250px;
}
.right-minus-250px {
    right: -250px;
}
.left-minus-230px {
    left: -230px;
}
/* bg color */
.bg-concrete-gray {
    background-color: var(--concrete-gray);
}
.bg-maire-yellow {
    background-color: var(--picton-blue);
}

.button-bg-picton-blue {
    --bs-bg-opacity: 1;
    background-color: var(--picton-blue);
}

.text-picton-blue, .btn-link.text-picton-blue {
    color: var(--picton-blue);
}

.text-dark-medium-gray, .btn-link.text-dark-medium-gray {
    color: var(--dark-medium-gray);
}


.img-form-success {
    width: 56px !important;
    height: 56px !important;
}

/*.return-to-form {*/
/*    color: black;*/
/*}*/

/* border color */
.border-color-zeus-grey {
    border-color: var(--zeus-grey) !important;
}
/* text color */
.text-concrete-gray {
    color: var(--concrete-gray);
}
.text-white, .btn-link.text-white, a.text-white-hover:hover {
    color: var(--white) !important;
}
/* word break normal */
.word-break-normal {
    word-break: normal;
}
/* btn */
.btn {
    font-family: var(--primary-font) !important;
    letter-spacing: 0;
}
.btn.btn-switch-text.btn-large > span {
    font-size: 15px;
    padding: 18px 36px; 
}
.btn.btn-switch-text.btn-medium > span {
    font-size: 14px;
    padding: 14px 28px; 
}
.btn.btn-base-color {
    color: var(--dark-gray);
}
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}
.btn.btn-link {
    padding: 0;
}
.btn.btn-black:hover, .btn.btn-black:active {
    color: var(--picton-blue) !important;
}
.threeD-letter-menu {
    min-height: inherit;
}
/* hover box */
.hover-box.dark-hover:hover i {
    color: var(--base-color) !important;
    -webkit-transform: scale(1.2);  
    transform: scale(1.2);
}

/* team style 08 */ 
.team-style-08 figure figcaption .social-icon a {
    background-color: var(--base-color);
}
.team-style-08 figure figcaption .social-icon a:hover {
    color: var(--dark-gray);
} 
/* team style 04 */ 
.tab-style-04 .nav-tabs .nav-item .nav-link {
    color: var(--dark-gray); 
}
/* Counter style 04 */
.counter-style-04 .vertical-counter-number ul {
    line-height: 1;
}

/* Autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{
    transition: background-color 5000s ease-in-out 0s;
}
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px var(--picton-blue) inset !important;
}

/* footer */
footer {
    padding-top: 40px;
    padding-bottom: 40px;
}
footer a {
    color: var(--dark-gray);
} 
footer a:hover {
    color: var(--white);
}
footer .footer-logo img {
    max-height: 56px;
    scale: 125%;
}
footer .list-style-05 li:before {
    background-color:var(--dark-gray);
}
footer .list-style-05 li:hover {
    margin-left: 0;
}
footer .list-style-05 li:before {
    margin: 0 20px;
}
footer ul li {
    margin-bottom: 7px;
    -webkit-transition: all 300ms cubic-bezier(0.37, 0.8, 0.63, 1);
    transition: all 300ms cubic-bezier(0.37, 0.8, 0.63, 1);
}
footer ul li:last-child{
    margin-bottom: 0;
}
footer ul li a:hover {
    /*padding-left: 15px;*/
}

@media (max-width: 1599px) {
    .fs-325 {
        font-size: 18.313rem;
        line-height: 18.313rem;
    }
}
/* media query responsive */
@media (max-width: 1499px) {
    .fs-325 {
        font-size: 16rem;
        line-height: 16rem;
    }
}
@media (max-width: 1399px) {
    .bottom-minus-130px {
        bottom: -70px;
    }
    .fs-325 {
        font-size: 15rem;
        line-height: 15rem;
    }
} 
@media (max-width: 1199px) {
    .lg-lh-128 {
        line-height: 8rem;
    }
    .lg-bg-black {
        background-color: var(--picton-blue);
    }
    .fs-325 {
        font-size: 12rem;
        line-height: 12rem;
    } 
}
@media (max-width: 991px) {
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav > .nav-item {
        border-bottom: 0;
        text-align: center;
    }
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .nav-link {
        font-size: 42px;
        line-height: 42px;
        font-weight: 700;
    }
    .main-content {
        z-index: inherit;
    }
    .lh-300 {
        line-height: 15rem;
    }
    footer {
        padding-top: 90px;
        padding-bottom: 70px;
    }
    .fs-325 {
        font-size: 10rem;
        line-height: 10rem;
    }
    .text-sliding-line {
        background-size: 6px 6px;
    }
    .text-sliding-line2 {
        background-size: 6px 6px;
    }
}
@media (max-width: 767px) {
    .sm-border-start {
        border-left: 1px solid !important;
    }
    .btn.btn-switch-text.btn-large > span {
        padding: 18px 30px;
    }
    footer ul li {
        margin-bottom: 6px;
    }
    footer {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    footer .footer-logo img { 
        width: auto;
    }
    .fs-325 {
        font-size: 9rem;
        line-height: 10.5rem;
    } 
}
@media (max-width: 575px) {
    .xs-lh-112 {
        line-height: 7rem;
    }
    .xs-lh-160 {
        line-height: 10rem;
    }
    .fs-325 {
        font-size: 6rem;
        line-height: 8rem;
    }
}
