/* 1- general css style */
/* #00A9FF */
/* #2B3A8D */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #004188;
}

::-webkit-scrollbar-thumb {
    background: #e0b002;
}

/* rubik-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/rubik-v28-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* rubik-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/rubik-v28-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* rubik-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/rubik-v28-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* rubik-900 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/rubik-v28-latin-900.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.line {
    display: block;
    height: 4px;
    width: 100px;
    background: #00A9FF;
    margin: 20px;
    transition: width .5s;
}

.text-justify{
    text-align: left;
    font-size: 14px;
}
.section-title:hover .line {
    width: 150px;
}

a {
    text-decoration: none;
}



hr {
    color: #fff;
}
h1,
h2,
h3,
h4 {
    text-transform: capitalize;
}

.details {
    background-color: #E4AD08;
}

.social-icon {
    border-radius: 50%;
}

.social-icon:hover {
    background-color: #ffffff7d;
}

.marquee {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 30s linear infinite;
    color: #eee;
}

.marquee:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0% {
        text-indent: 27.5em
    }

    100% {
        text-indent: -105em
    }
}

.button-hover,
.button-hover-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 25px;

    &:after {
        display: block;
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        border-radius: 25px;
        top: 50%;
        left: 50%;
        opacity: .4;
        transform: translate(-50%, -50%) scale(0, 0);
        transition: transform .5s ease 0s;
        z-index: 0;
        color: #fff;
    }

    &:hover {
        &:after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1, 1);
            transition: transform .5s ease 0s;
        }
    }
}

.button-hover {
    background: #2B3A8D;

    &:after {
        background-color: rgb(28, 150, 211);
    }
}

.button-hover-1 {
    background: #55f70c;

    &:after {
        background-color: #7B66FF;
    }
}

.btn {
    position: relative;
    text-align: center;
    z-index: 1;
    font-size: 19px;
    background: transparent;
    cursor: pointer;
    color: #fff;
    font-weight: 500;

    &:hover {
        color: #fff;
    }
}

/* navbar */
.navbar .container{
    background-color: #00A9FF;
}
.navbar-nav > li > a::after,
.navbar-nav > li > a.active::after{
    content: "";
    width: 0;
    height: 5px;
    margin-top: 5px;
    display: block;
    background-color: #2B3A8D;
    transition: width .5s;
}
.navbar-nav > li > a.active::after{
    width: 100%;
}
.navbar-nav > li > a:hover::after{
    width: 100%;
}
.navbar-collapse ul>li {
    display: inline-block;
    text-align: center;
    color: #fff;
    width: 90px;
}

.navbar-collapse ul>li>a {
    display: block;
    font-weight: bold;
    color: #fff;
}

.navbar-collapse ul>li>a:hover {
    color: #fff;
}

.nav-btn {
    background-color: #E4AD08;
    border-radius: 25px;
    color: #fff;
}

.nav-btn:hover {
    background-color: #24323D;
    color: #fff;
    border-radius: 25px;
}

.nav-border {
    border: 1px solid #ffffff8c;
}

.border-1 {
    border-left: 1px solid #ffffff8c;
}
.top-bar{
    display: flex;
    padding: 12px 0;
}


.nav-link {
    border-bottom: 5px solid #fff;
    border-width: 0;
}

.nav-icon-1 {
    width: 30px;
    height: 30px;
    position: relative;
    transition: 0.1s;
    margin: 10px 10px;
    cursor: pointer;
    display: inline-block;
}

.nav-icon-1 span {
    width: 5px;
    height: 5px;
    background-color: #fff;
    display: block;
    border-radius: 50%;
    position: absolute;
}

.nav-icon-1 span:nth-child(1) {
    left: 0;
    top: 0;
}

.nav-icon-1 span:nth-child(2) {
    left: 12px;
    top: 0;
}

.nav-icon-1 span:nth-child(3) {
    right: 0;
    top: 0;
}

.nav-icon-1 span:nth-child(4) {
    left: 0;
    top: 12px;
}

.nav-icon-1 span:nth-child(5) {
    position: absolute;
    left: 12px;
    top: 12px;
}

.nav-icon-1 span:nth-child(6) {
    right: 0px;
    top: 12px;
}

.nav-icon-1 span:nth-child(7) {
    left: 0px;
    bottom: 0px;
}

.nav-icon-1 span:nth-child(8) {
    position: absolute;
    left: 12px;
    bottom: 0px;
}

.nav-icon-1 span:nth-child(9) {
    right: 0px;
    bottom: 0px;
}

.nav-icon-1:hover span {
    transform: scale(1.2);
    transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open {
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open span {
    border-radius: 50%;
    transition-delay: 200ms;
    transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open span:nth-child(2) {
    left: 6px;
    top: 6px;
}

.nav-icon-1.open span:nth-child(4) {
    left: 6px;
    top: 18px;
}

.nav-icon-1.open span:nth-child(6) {
    right: 6px;
    top: 6px;
}

.nav-icon-1.open span:nth-child(8) {
    left: 18px;
    bottom: 6px;
}

.tb-effect,
.lt-effect {
    position: relative;
    z-index: 5;
}

.tb-effect::after,
.lt-effect::after {
    content: "";
    position: absolute;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.tb-effect::after {
    height: 0;
    background-color: #E4AD08;
    transition: height .5s;
}

.tb-effect:hover::after {
    height: 100%;
}

.tb-effect:hover {
    color: #fff;
}

.lt-effect {
    background-color: #282E3E;
}

.lt-effect::after {
    width: 0;
    background-color: #282E3E;
    border-radius: 25px;
    transition: width .5s;
}

.lt-effect:hover::after {
    width: 100%;
}

.move {
    position: relative;
    opacity: 0;
}

.move.active {
    opacity: 1;
}

.active.fade-bottom {
    animation: fade-bottom 1s ease-in;
}

.active.fade-left {
    animation: fade-left .7s ease-in;
}

.active.fade-right {
    animation: fade-right .7s ease-in;
}
.active.fade-top{
    animation: fade-top 1s ease-in;
}
@keyframes fade-top {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-bottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Home Section */
header{
    background-image: url(../images/home/ac14bd2b29b5adaa698b454917c776b6.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.hero-content{
    padding: 220px 20px 30px;
    color: #fff;
}

/* install */
.box{
    color: #fff;
    font-family: 'Cabin', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}
.box:before,
.box:after,
.box .box-content:before,
.box .box-content:after{
    content: "";
    background:#00A9FF;
    width: 50%;
    height: 50%;
    transform: translateX(-100%);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}
.box:after{
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    transform: translateX(100%);
}
.box .box-content:before,
.box .box-content:after{
    background: #2B3A8D;
    transform: translateX(0) translateY(-100%);
    left: auto;
    right: 0;
    transition: all 0.4s ease;
}
.box .box-content:after{
    top: auto;
    bottom: 0;
    right: auto;
    transform: translateX(0) translateY(100%);
}
.box:hover:before,
.box:hover:after,
.box:hover .box-content:before,
.box:hover .box-content:after{
    transform: translate(0, 0);
    opacity: 0.8;
}
.box img{
    width: 100%;
    height: 100%;
    transition: all 0.25s;
}
.box .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.2s ease 0s;
}
.box .inner-content{
    text-align: center;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease 0s; 
    z-index: 1;
}
.box:hover .inner-content{ opacity: 1; }
.box .title{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 4px #000;
    margin: 0 0 3px 0;
}
.box .post{
    font-size: 15px;
    font-style: italic;
    text-transform: capitalize;
    text-shadow: 0 0 4px #000;
    margin: 0 0 10px;
    display: block;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.box .icon li{
    display: inline-block;
    margin: 0 5px 0 0;
}
.box .icon li a{
    color: #292929;
    background: #fff;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    height: 35px;
    width: 35px;
    display: block;
    transition: all 0.3s;
}
.box .icon li a:hover{
    color: #fff;
    background: #00A9FF;
    text-shadow: 0 0 2px #fff;
}
@media only screen and (max-width:990px){
    .box{ margin-bottom: 30px; }
}
@media only screen and (max-width:479px){
    .box .title{ font-size: 20px; }
}

/* repair */
.repair{
    background-image: url(../images/home/repair-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.repair .up-bottom{
    display: none;
}

/* spring */
.title h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0593da28;
    top: 10px;

}

.title h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

/* contact */
.contact{
    width: 75%;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin: auto;
}
.contact-title{
    color: #fff;
    background-color: #00A9FF;
    padding: 10px;
 
}
.contact-btn{
    background-color: #2B3A8D;
    color: #fff;
}
.contact-btn:hover{
    background-color: #00A9FF;
    color: #fff;
}
@media (max-width:992px) {
    .contact{
        margin-top: 0;
        width: 100%;
    }
    .contact-title{
        width: 200px;
    }
}
.spam { display:none;}

.offer{
    padding-top: 120px;
}
/* info */
.info {
    background-color: #2B3A8D;
}

.btn-top {
    position: fixed;
    z-index: 2;
    bottom: 1rem;
    left: 5rem;
    font-size: 2em;
    cursor: pointer;
    display: none;
}
.info-btn{
    padding: 10px 5px;
    margin-bottom: 5px;
    font-size: 14px;
    width: 120px;
    background-color: #fff;
    color: #2B3A8D;
    cursor: auto;
}
.service-btn{
    padding: 10px 5px;
    width: 150px;
    background-color: #00A9FF;
    font-size: 15px;
    margin-bottom: 10px;
    &:hover{
        background-color: rgba(18, 37, 143, 0.557)

    }
}
.zip-btn{
    width: 120px;
    background-color: #00A9FF;
    margin: 5px 10px;
}

@media (max-width:1400px) {
    .top-bar .address{
        font-size: 12px;
    }
    .navbar .button-hover a{
        font-size: 12px;
    }
    .navbar-collapse ul>li{
        width: 70px;
    }
    .navbar-collapse ul>li>a{
        font-size: 10px;
    }
    .hero p{
        font-size: 13px;
    }
    .hero h1{
        font-size: 30px;
    }
    .hero-content{
        padding: 150px 0 50px;
    }
    .install p{
        font-size: 11px
    }
    
    .spring p{
        font-size: 12px;
    }
    .zip-btn{
        width: 80px;
    }
    .hours{
        font-size: 20px;
    }
    .working{
        font-size: 12px;
    }
    .location{
        font-size: 12px;
    }
    .hero{
        background-attachment: scroll;
        background-position: center center;
    }
    .repair{
        background-attachment: scroll;
        background-position: center center;
    }
}

@media (max-width:992px) {
    .top-bar{
        display: none;
    }

    hr,
    .nav-btn {
        display: none;
    }

    .border-1,
    .nav-border {
        border: 0;
    }
    .repair .up-bottom{
        display: block;
    }
    .navbar-brand img{
        width: 50%;
        height: 50%;
    }
    .navbar{
        position: fixed;
        width: 100%;
    }
    .navbar .button-hover{
        display: none;
    }
    .arrow-1{
        display: none;
    }
    .repair .up-bottom{
        display: inline-block;
    }
    .title h3{
        display: none;
    }
    .install .install-title{
        font-size: 30px;
    }
}


   input.subject { display: none; }