/* 1- general css style */
/* #222F5A */
/* #E4AD08 */
/* #24323D */

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

body {
    font-family: 'Varela Round', sans-serif;
}

.line {
    display: block;
    height: 4px;
    width: 100px;
    background: #83C434;
    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
    }
}

/* navbar */
.navbar {
    background-color: #222F5A;
}
.navbar-nav > li > a::after,
.navbar-nav > li > a.active::after{
    content: "";
    width: 0;
    height: 5px;
    margin-top: 5px;
    display: block;
    background-color: #E4AD08;
    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: 1px solid #ffffff8c;
}
.top-bar{
    padding: 12px 0;
    display: flex;
}

@media (max-width:992px) {
    

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

    .border-1,
    .nav-border {
        border: 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 .5s ease-in;
}

.active.fade-right {
    animation: fade-right .5s 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-color: #222F5A;
}

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

.hero-btn:hover {
    background-color: #24323D;
    color: #fff;
}

.exten-item{
    top: -130px;
    color: #fff;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    background-color: #282E3E;
    border: 1px solid #fff;
}

.hero-exten { 
    margin-top: 50px;
}

@media (max-width:992px) {
    .exten-item{
        top: 5px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;    
    }
    .hero-exten{
        margin-top: 20px;
    }
    .tb-effect::after{
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
}

/* installation */
.install {
    padding-top: 50px;
}

.install-border {
    position: relative;
}



.install-img {
    position: absolute;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
}
@media (max-width:992px) {
    .install-img{
        position: static;
    }
}

/* counter */
.counter-item {
    margin-bottom: 30px;
    .counter-number {
        line-height: 48px;
        font-size: 48px;
        font-weight: bold;
        
    }

    .counter-title {
        color: #24323D;

        strong {
            display: block;
            font-size: 1.2rem;
        }
    }
}

/* repair */

.repair-desc{
    background-color: #24323d;
}
.repair-border{
    border-right: 1px solid #ffffff50;
}
.repair-title{
    color: #E4AD08;
    font-weight: bold;
    font-size: 40px;
}
/* chose */
.chose{
    background-color: #24323D;
    padding-bottom: 200px;
    position: relative;
    
}
.chose-content{
    position: relative;
}
.chose ul li {
    margin-top: 20px;
    margin-left: 20px;
}
@media (max-width:992px) {
    .chose-content{
        width: 100%;
        margin-left: 0;
    }
}
/* contact */
.contact{
    width: 75%;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin: auto;
    margin-top: -200px;
    
}
.contact-title{
    color: #fff;
    background-color: #E4AD08;
    padding: 10px;
    width: 300px;
}
.contact-btn{
    background-color: #24323D;
    color: #fff;
}
.contact-btn:hover{
    background-color: #E4AD08;
    color: #fff;
}
@media (max-width:992px) {
    .contact{
        margin-top: 0;
        width: 100%;
    }
    .contact-title{
        width: 200px;
    }
}
  form.CUS input.subject { display: none; }

/* info */
.info{
    text-align: center;
    background-image: url(../images/home/review-bg.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.info p{
    display: inline-block;
}
.service-btn{
    display: inline-block;
    color: #fff;
    background-color: #434E6E;
    width: 120px;
    margin: 7px 10px;
    text-align: center;
}
.service-btn:hover{
    color: #fff;
}
@media (max-width:992px) {
    .info .address, .openning{
        font-size: 12px;
    }
    .zip-code{
        font-size: 18px;
    }
    .top-bar{
        display: none;
    }
}