:root {
    --mainTheme: #0072ae!important;
    --colorWhite: #ffffff!important;
    --colorBlack: #000000!important;
    --colorText: #939393!important;
    --colorBackground: #F6F6F6!important;
} 
body {
    font-family: 'Poppins', sans-serif;
}
input,
select,
button {
    outline: none;
    box-shadow: none;
}
input:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none !important;
}
.btn:focus {
    outline: 0;
    box-shadow: none;
}
a {
    text-decoration: none !important;
}

/*-- Start Custom Button --*/
.custom-btn button {
    font-weight: 600;
    border: solid 2px black;
    outline: 0;
    padding: 10px 25px;
    font-size: 16px;
    background-color: var(--colorBlack);
    color: var(--colorWhite);
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}
.custom-btn button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.custom-btn button.theme-btn::after {
    box-shadow: 0px 0px 0px 2px var(--mainTheme);
    top: 0.5rem;
    left: 0.5rem;
}
.custom-btn button.theme-btn:hover {
    background-color: var(--mainTheme);
    border-color: var(--mainTheme);
    color: var(--colorWhite);
    -webkit-transition: .4s;
    transition: .4s;
}
.custom-btn button.theme-btn:hover::after {
    background-color: transparent;
    border-color: var(--mainTheme);
    -webkit-transition: .4s;
    transition: .4s;
}
/*-- End Custom Button --*/

/*-- Start Custom Button --*/
.custom-btn-white button {
    font-weight: 600;
    border: solid 2px black;
    outline: 0;
    padding: 10px 25px;
    font-size: 16px;
    background-color: var(--colorWhite);
    color: var(--colorBlack);
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}
.custom-btn-white button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.custom-btn-white button.theme-btn::after {
    box-shadow: 0px 0px 0px 2px var(--mainTheme);
    top: 0.5rem;
    left: 0.5rem;
}
.custom-btn-white button.theme-btn:hover {
    background-color: var(--colorBlack);
    border-color: var(--colorBlack);
    color: var(--colorWhite);
    -webkit-transition: .4s;
    transition: .4s;
}
.custom-btn-white button.theme-btn:hover::after {
    background-color: transparent;
    border-color: var(--mainTheme);
    -webkit-transition: .4s;
    transition: .4s;
}
/*-- End Custom Button --*/

/*-- Start Header --*/
.header {
    background-color: var(--colorWhite);
    -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
    box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0
}
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--colorWhite);
    opacity: .97;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.header .navbar-toggler .fa-bars {
    color: var(--colorBlack);
}
.header .navbar {
    padding: 10px 0;
}
.header .navbar-brand h1 {
    font-size: 28px;
    font-weight: bold;
    color: var(--mainTheme);
    margin-bottom: 0;
    text-transform: uppercase;
}
.header .navbar-brand h1 span {
    color: var(--colorWhite);
}
.header .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorBlack);
    padding: 10px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.header .navbar-nav .nav-link:hover {
    color: var(--mainTheme);
    -webkit-transition: .4s;
    transition: .4s;
}
.header .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--mainTheme);
}
.header.header-sticky .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--mainTheme);
}
/*-- End Header --*/

/*-- Start Home Slider --*/
.main-slider .owl-carousel .item .slide-bg {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    display: flex;
    align-items: center;
}
.main-slider .owl-carousel .slide-bg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
}
.main-slider .owl-carousel .item::before {
    content: "";
    position: absolute;
    background-color: var(--colorBlack);
    width: 100%;
    height: 100%;
    opacity: .5;
    left: 0;
    top: 0;
    bottom: 0;
}  
.main-slider .owl-item.active .slide-bg {
    animation: scale 40s linear infinite;    
}
.main-slider .owl-theme .owl-nav {
    margin: 0px;
}   
.main-slider .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--colorWhite);
    background-color: var(--colorBlack);
    font-size: 18px;
    opacity: 1;
    border-radius: 5px;
    top: 50%;
    bottom: 0;
    width: 40px;
    height: 40px;
}
.main-slider .owl-carousel .owl-nav button.owl-prev:hover {
    color: var(--mainTheme);  
    background-color: var(--colorBlack);
    opacity: 1;    
    -webkit-transition: .4s;
    transition: .4s; 
}
.main-slider .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--colorWhite);
    background-color: var(--colorBlack);
    font-size: 18px;
    opacity: 1;
    border-radius: 5px;
    bottom: 0;
    top: 50%;
    width: 40px;
    height: 40px;
}
.main-slider .owl-carousel .owl-nav button.owl-next:hover {
    color: var(--mainTheme);  
    background-color: var(--colorBlack);
    opacity: 1;   
    -webkit-transition: .4s;
    transition: .4s;
}
/*-- End Home Slider --*/

/*-- Start --*/
.about {
    padding: 100px 0;
}
.about .section-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 0;
}
.about-box {
    background: #FFFFFF;
    box-shadow: -30px 0px 30px #E8E8E8;
}
.about-content {
    padding: 70px;
}
.about-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--colorBlack);
    margin-bottom: 30px;
    text-transform: uppercase;
}
.about-content p {
    font-size: 14px;
    color: var(--colorText);
    text-align: justify;
    margin-bottom: 0
}
/*-- End --*/

/*-- Start --*/
.our-services {
    padding: 100px 0 70px;
    background: url(../images/happy-customer.webp) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.our-services::before {
    content: "";
    position: absolute;
    background-color: var(--colorBlack);
    width: 100%;
    height: 100%;
    opacity: .5;
    left: 0;
    top: 0;
    bottom: 0;
}
.our-services .section-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--colorWhite);
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
}
.heart-divider{
    height:100%; 
    width:100%;
    margin:0 auto; 
    margin-top:15px;
    margin-bottom:40px;
    text-align:center;
    position: relative;
}
.white-line{
    width:64px; 
    height:8px;
    display:inline-block;
    border-top:solid 1px var(--colorWhite);
}
.grey-line{
    width:64px; 
    height:8px;
    display:inline-block;
    border-top:solid 2px #CCCCCC;
}
.red-heart{
    color:var(--mainTheme); 
    font-size:20px; 
    position:relative; 
    z-index:3
}
.grey-heart{
    color: #CCCCCC;
    font-size:20px; 
    margin-left:-9px; 
    position:relative;
    z-index:2
}
.our-services-box {
    position: relative;
    margin-bottom: 30px;
    border: 8px solid var(--colorWhite);
}
.our-services-box .product_image {
    overflow: hidden;
    position: relative;
}
.our-services-box .product_image a {
    display: block;
}
.our-services-box .product_image a img {
    transition: all .6s linear;
    width: 100%;
}
.our-services-box:hover .product_image img {
    transform: scale(1.1) rotate(0deg);
}
.our-services-box .product_content {
    position: absolute;
    bottom: 15px;
    right: 0px;
    left: 0px;
    margin: 0 auto;
    display: inline-table;
}
.our-services-box .product_content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--colorBlack);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    border-top: 2px solid var(--mainTheme);
    border-bottom: 2px solid var(--mainTheme);
}
.our-services-box .product_content h3 a {
    display: inline-block;
    color: var(--colorBlack);
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
}
.our-services-box .product_content h3 a:hover {
    color: var(--colorWhite);
    background: rgba(0, 0, 0, 0.9);
    -webkit-transition: .4s;
    transition: .4s;
}
/*-- End --*/

/*-- Start --*/
.our-amazing-work {
    padding: 100px 0 76px;
    background-color: var(--colorBackground);
}
.our-amazing-work .section-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 0;
}
.amazing-box {
    margin-bottom: 24px;
    overflow: hidden;
}
.amazing-view {
    position: relative;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    z-index: 1;
}
.amazing-view:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
/*-- End --*/

/*-- Start Footer --*/
footer {
    background-color: var(--colorWhite);
    padding: 20px;
}
.footer-main {
    border: 2px solid #e5e5e5;
    padding: 40px 0 30px;
}
.footer-main .footer-logo img {
    margin-bottom: 20px;
}
.footer-main .footer-logo p {
    font-size: 14px;
    color: var(--colorText);
}
.footer-main .footer-link h6 {
    font-size: 20px;
    font-weight: bold;
    color: var(--colorBlack);
    margin-bottom: 30px;
    text-transform: uppercase;
}
.footer-main .footer-link ul {
    padding-left: 0;
    list-style-type: none;
}
.footer-main .footer-link ul li {
    padding-bottom: 15px;
}
.footer-main .footer-link ul li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--colorText);
    text-transform: uppercase;
}
.footer-main .footer-link ul li a:hover {
    color: var(--mainTheme);
    -webkit-transition: .4s;
    transition: .4s;   
}
.footer-main .footer-social h6 {
    font-size: 20px;
    font-weight: bold;
    color: var(--colorBlack);
    margin-bottom: 30px;
    text-transform: uppercase;
}
.footer-main .footer-social ul {
    flex-wrap: wrap;
    list-style-type: none;
    padding-left: 0;
}
.footer-main .footer-social ul li {
    margin-bottom: 5px;
    padding: 0px 3px;
}
.footer-main .footer-contact {
    margin-bottom: 15px;
}
.footer-main .footer-contact i {
    width: 20px;
    font-size: 20px;
    color: var(--colorBlack);
}
.footer-main .footer-contact p {
    font-size: 14px;
    color: var(--colorText);
    margin-bottom: 0;
    margin-left: 10px;
}
.footer-social ul {
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
}
.footer-social ul li {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #222222;
    border-radius: 5px;
    margin-right: 10px;
    -webkit-transition: .4s;
    transition: .4s;
    cursor: pointer;
}
.footer-social ul li:hover {
    background-color: var(--mainTheme);
}
.footer-social ul li a {
    font-size: 16px;
    color: var(--colorWhite);
}
.footer-social ul li a i {
    color: var(--colorWhite);
}
.copy-right p {
    font-size: 14px;
    color: var(--colorBlack);
    margin-bottom: 0;
    margin-top: 30px;
}
/*-- End Footer --*/

/*-- Start Scroll to Top --*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    outline: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    border:none;
    background: var(--mainTheme);
    color: var(--colorWhite);
    font-size: 20px;
    -webkit-animation: slideInRight 0.4s ease-in-out 1 both;
    animation: slideInRight 0.4s ease-in-out 1 both;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#myBtn:hover {
    background-color: var(--colorBlack);
    -webkit-transition: .4s;
    transition: .4s;
}
/*-- End Scroll to Top --*/

@media(max-width: 1399.98px) {

}
@media(max-width: 1199.98px) {
    .main-slider .owl-carousel .item .slide-bg {
        min-height: 680px;
    }
}
@media(max-width: 991.98px) {
    .header {
        opacity: .97;
    }
    .header .navbar-collapse {
        background-color: var(--colorWhite);
        border-radius: 10px;
        z-index: 1;
        margin-top: 10px;
    }
    .header .navbar-nav .nav-link {
        padding: 10px 0px;
    }
    .main-slider .owl-carousel .item .slide-bg {
        min-height: 580px;
    }
    .about {
        padding: 50px 0;
    }
    .about-box {
        box-shadow: 0px -30px 30px #e8e8e8;
    }
    .about-box .pe-0 {
        padding-right: 12px!important;
    }
    .about-content {
        padding: 50px;
    }
    .our-services {
        padding: 50px 0 20px;
    }
    .border-left {
        height: 322px;
    }
    .border-right {
        height: 322px;
    }
    .our-amazing-work {
        padding: 50px 0 26px;
    }
} 
@media(max-width: 767.98px) {
    .main-slider .owl-carousel .item .slide-bg {
        min-height: 480px;
    }
    .count-box h2 {
        font-size: 34px;
    }
    .border-left {
        height: 314px;
    }
    .border-right {
        height: 314px;
    }
    .filter-shape {
        width: 465px;
    }
}   
@media(max-width: 575.98px) {
    .header .navbar>.container-fluid {
        padding: 0;
    }
    .header .navbar-brand img {
        width: 230px;
    }
    .header .navbar-brand h1 {
        font-size: 22px;
    }
    .main-slider .owl-carousel .owl-nav button.owl-next {
        top: 50%;
        right: 8px;
    }      
    .main-slider .owl-carousel .owl-nav button.owl-prev {
        top: 50%;
        left: 8px;
    }
    .about {
        padding: 40px 0 30px;
    }
    .about .section-title h2 {
        font-size: 24px;
    }
    .about-content h2 {
        font-size: 22px;
    }
    .about-content {
        padding: 30px;
    }
    .our-services {
        padding: 40px 0 10px;
    }      
    .our-services .section-title h2 {
        font-size: 24px;
    }
    .heart-divider {
        margin-bottom: 30px;
    }
    .our-amazing-work .section-title h2 {
        font-size: 24px;
    }
    .our-services-box .product_content h3 {
        font-size: 16px;
    }
    .our-services-box .product_content h3 a {
        padding: 10px 20px;
    }
    .border-left {
        height: 467px;
    }
    .border-right {
        height: 467px;
    }
    footer {
        padding: 14px;
    }
    #myBtn {
        bottom: 15px;
        right: 15px;
    }
    .footer-logo {
        margin-bottom: 30px;
    }
    .footer-main .footer-social h6 {
        margin-top: 20px;
    }
} 