/* 1- general css style */
/* #134b70 */
/* #508d4e */

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


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

::-webkit-scrollbar-track {
    background: #134b70;
}

::-webkit-scrollbar-thumb {
    background: #508d4e;
}

/* 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: 300px;
    background: #508d4e;
    margin: 20px;
    transition: width .5s;
}

.line-1 {
    display: block;
    height: 4px;
    width: 300px;
    background: #134b70;
    margin: 20px;
    transition: width .5s;
}

.text-justify {
    text-align: justify;
}

.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
    }
}

/*GrayScale*/
.column#grayscale img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.column#grayscale:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.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: #508d4e;

    &:after {
        background-color: #134b70;
    }
}

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

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

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

    &:hover {
        color: #000;
    }
}

/* navbar */

.navbar-nav>li>a::after,
.navbar-nav>li>a.active::after {
    content: "";
    width: 0;
    height: 5px;
    margin-top: 5px;
    display: block;
    background-color: #508d4e;
    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;
    width: 100px;
}

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

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

.navbar-nav .nav-link.active {
    color: #508d4e;
}

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


.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: #000;
    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 */
.hero {
    background-image: url(../images/home/austin-garage-doors-hero.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

}

.hero-content {
    color: #fff;
    padding: 280px 0px 100px;
}

.install-hero {
    background-image: url(../images/installation/garage-door-installation-hero.webp);
}

.repair-hero {
    background-image: url(../images/repair/austin-garage-doors-hero.webp);
}

.opener-hero {
    background-image: url(../images/opener/austin-garage-doors-opener-hero.webp);
}

.spring-hero {
    background-image: url(../images/spring/garage-door-springs-hero.webp);
}

/* installation */
.install img {
    border-radius: 50%;
    border: 1px solid #ddd;
    padding: 5px;
    box-shadow: -50px 5px 2px 5px #508d4e;
}

.prof {
    display: inline-block;
    background-color: #508d4e;
    border-radius: 25px;
    padding: 20px;
    font-size: 30px;
    text-align: center;
    margin: auto;
    color: #fff;
}

.install-cont {
    background-color: #134b70;
    margin-top: 100px;
    margin-left: -150px;
    color: #fff;
}

/* repair */
.repair {
    background-color: #134b70;
}

.repair-cont {
    border: #508d4e 5px solid;
}

.repair-img {
    margin-top: 150px;
}

/* testimonial */
.accordion {
    background-image: url(../images/home/testimonial-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.card {

    border: none;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1)
}

.card:hover {

    background-color: #eee;

}

.card-body .ratings i {
    color: orange;
}

.testimonial-list {
    list-style: none;
}

.testimonial-list li {

    margin-bottom: 20px;
}

.testimonials-margin {

    margin-top: -19px;
}

/* contact-us */
.offer-img {
    margin-top: 200px;
    margin-right: 40px;
    z-index: 1;
}

.contact-us {
    background-color: #eee;
    padding-left: 50px;
    margin-left: -100px;
}

.form-control {
    border: 2px solid #134b70;
}

.contact-btn {
    background-color: #508d4e;
    border-radius: 25px;
}

.contact-btn:hover {
    background-color: #134b70;
}

  form.CUS input.subject { display: none; }

.form-control::placeholder {
    color: #3078b3;
}

/* info */
.info {
    background-color: #134b70;
}

.service-btn {
    display: inline-block;
    width: 150px;
    font-size: 15px;
    background-color: #508d4e;
    margin: 10px;

    &:hover {
        background-color: #07589b;
    }
}

.zip-code {
    font-size: 20px;
}

.about-content p {
    padding-bottom: 20px;
    font-size: 18px;
}

.about-content a {
    font-size: 18px;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 10px;
    z-index: 996;
    background: #134b70;
    font-size: 30px;
    text-align: center;
    width: 70px;
    height: 50px;
    border-radius: 4px;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top:hover {
    background: #508d4e;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.datepicker-dropdown {
    padding: 20px !important;
}

#lz_overlay_wm .lz_overlay_wm_icon {
    background-color: #508d4e;
    border-radius: 50%;
}

.lz_chat_header {
    background-color: #508d4e !important;
}

#lz_chat_overlay_data_form_ok_button {
    background: #508d4e !important;
}

@media (max-width:1400px) {
    .navbar-collapse ul>li {
        width: 100px;
    }

    .navbar-collapse ul>li>a {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-content {
        padding: 200px 0px 100px;
    }

    .hero-content article {
        font-size: 14px;
    }

    .hero-content .btn {
        font-size: 15px;
    }

    .install p {
        font-size: 13px;
    }

    .prof {
        font-size: 24px;
    }

    .repair p {
        font-size: 13px;
    }

    .opener article {
        font-size: 13px;
    }

    .info .service-btn {
        width: 100px;
        font-size: 12px;
    }
}

@media (max-width:1200px) {
    .navbar-collapse ul>li {
        width: 90px;
    }

    .navbar-collapse ul>li>a {
        font-size: 11px;
    }

    .hero-content {
        padding: 180px 0px 100px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .hero-content article {
        font-size: 12px;
    }

    .hero-content .btn {
        font-size: 12px;
    }

    .install h2 {
        font-size: 25px;
    }

    .install p {
        font-size: 11px;
    }

    .prof {
        font-size: 17px;
    }

    .install .line {
        width: 200px;
    }

    .repair p {
        font-size: 11px;
    }

    .opener article {
        font-size: 11px;
    }

    .info .service-btn {
        width: 90px;
        font-size: 10px;
    }

    .zip {
        font-size: 25px;
        margin-top: 10px;
    }

    .info .marquee {
        font-size: 12px;
    }

    .info-sec p {
        font-size: 13px;
    }
}

@media (max-width:992px) {
    .navbar-collapse ul>li {
        width: 120px;
    }

    .navbar-collapse ul>li>a {
        font-size: 18px;
    }

    .navbar-brand {
        width: 75%;
    }

    .hero {
        background-image: url(../images/home/austin-garage-doors-hero-992px.webp);
    }

    .install-hero {
        background-image: url(../images/installation/garage-door-installation-hero-992px.webp)
    }

    .repair-hero {
        background-image: url(../images/repair/garage-door-repair-hero-992px.webp);
        background-position: 35%;
    }

    .opener-hero {
        background-image: url(../images/opener/garage-door-opener-hero-992px.webp);
        background-position: 20%;
    }

    .spring-hero {
        background-image: url(../images/spring/garage-door-springs-992px.webp);
        background-position: 20%;

    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-content article {
        font-size: 14px;
    }

    .hero-content .btn {
        font-size: 16px;

        &:hover {
            color: #fff;
        }
    }

    .install-cont {
        background-color: #134b70;
        margin-top: 10px;
        margin-left: 0px;
        color: #fff;
    }

    .install img {
        border-radius: 50%;
        border: 1px solid #ddd;
        padding: 5px;
        box-shadow: -10px 5px 2px 5px #508d4e;
    }

    .repair-cont {
        border: #508d4e 1px solid;
    }

    .contact-us {
        background-color: #eee;
        padding-left: 50px;
        margin-left: 0px;
    }

    .offer-img {
        margin-top: 10px;
        z-index: 1;
    }

    .repair-img {
        margin-top: 10px;
    }

    .line {
        width: 200px;
    }

    .zip {
        font-size: 18px;
    }
}