@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a,
a:hover {
    color: #464646;
    text-decoration: none
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;

}

section {
    padding: 100px 0px;
}


body {
    font-size: 16px;
    color: #464646;
}

.bg-body {
    background-image: url(../images/hero.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-group .required:after {
    content: "*";
    color: red;
}

.navbar-default {
    background-color: transparent;
    border: none;
}

.navbar {
    margin: 0;
}

.navbar-nav .nav-link {
    padding: 20px 15px !important;
    color: #fff;
    transition: 0.5s;
}

.header.active .navbar-nav .nav-link {
    padding: 10px 15px !important;
    color: #000;
    transition: 0.5s;
}

.navbar-nav {
    margin-top: 0px !important;
}

/*
.navbar-nav .nav-link.active {
    color: #ffcb05
}
*/

.navbar-nav .nav-link a {
    color: #000;
    font-weight: normal;
}

.navbar-nav .nav-link a:hover,
.navbar-nav .nav-link:hover {
    color: #ffcb05;
    font-weight: normal;
}


.header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    padding: 10px 0px;
    z-index: 99;
    transition: all 0.3s ease-in-out;
    height: auto;
    background-color: transparent;
    text-align: center;
    line-height: 40px;
    transition: .3s;
}

.header.active {
    background: white;
    top: 0px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    transition: .3s;
}

.logo {
    width: 100%;
    transition: .3s;
}

.header.active .logo {
    width: 80%;
    transition: 0.5s;
}

.header .pic-1 {
    display: block;
    transition: 0.5s;
}

.header .pic-2 {
    display: none;
    transition: 0.5s;
}

.header.active .logo {
    width: 80%;
    transition: 0.5s;
}

.header.active .pic-2 {
    display: block;
    transition: 0.5s;
}

.header.active .pic-1 {
    display: none;
    transition: .3s;
}

.navbar {
    background-color: transparent;
}

.dropdown-menu {
    padding: 0;
    margin: 0;
    overflow: hidden
}

.banner {
    height: 100vh;
    /*
    background-image: url(../images/hero-banner.png);
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
*/
}

.bg-overly {
    background-color: rgba(0, 0, 0, 0.25);
    height: 100vh;
    padding: 70px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-text {
    color: #fff;
}

.welcome-text p {
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.dropdown-item.active,
.dropdown-item:active {
    background: #000;
    color: #fff !important;
}

.navbar-nav .nav-btn {
    background: #ffcb05;
    color: #fff !important;
    padding: 0px 20px !important;
    line-height: 38px;
    border-radius: 100px;
}

.btn-danger {
    background: #ffcb05;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

.btn-danger:hover {
    background: #000;
    color: #fff;
    border: solid 1px #000
}

.btn-orange {
    background: #ffcb05;
    color: #000;
    border: 2px solid #ffcb05;
    border-radius: 50px;
    font-size: 16px;
    padding: 10px 30px;
    transition: 0.3s;
    font-weight: bold;
    margin: 0px 10px;
}

.btn-orange:hover {
    background-color: #000;
    color: #fff;
    transition: 0.3s;
    border: 2px solid #000;
}

.btn-line {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 16px;
    padding: 10px 30px;
    transition: 0.3s;
    font-weight: bold;
    margin: 0px 10px;
}

.btn-line:hover {
    background-color: #000;
    color: #fff;
    transition: 0.3s;
    border: 2px solid #000;
}

.text-orange {
    color: #ffcb05
}

.text-white {
    color: #fff
}


.hero-text {
    color: #fff;
    margin-top: 15%
}

h1 {
    color: #fff;
    /*    color: #ffcb05;*/
    margin-bottom: 70px;
    transform: translateY(50px);
    transition-delay: 0.9s;
    transition-duration: 1s;
    font-weight: bold;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-text h3 {
    margin-bottom: 80px;
    font-weight: 700;
    color: #000;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
    font-size: 26px;
}


p {
    margin-bottom: 20px;
    line-height: 28px;
    font-weight: 400
}

.form-control,
.form-select {
    margin-bottom: 12px;
    padding: 10px;
    font-size: 14px;
    /*    border-radius: 50px;*/
    border: solid 1px #ccc;
}

.form-control::placeholder {
    color: #494949;
    opacity: 1 !important;
    /* Firefox */
    font-size: 12px;
}

.form-control::-ms-input-placeholder {
    /* Edge 12-18 */
    color: red;
}

.card-body small {
    font-size: 10px;
    color: #fff;
    margin-left: 8px;
    line-height: 12px;
}

input[type=checkbox] {
    width: 34px;
    height: 34px;
}


.up-title {
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #999;
    display: block;
    text-align: center;
    text-transform: capitalize;
}

.main-title {
    position: relative;
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin: 10px 0 60px 0;
    letter-spacing: -0.5px;
}

.main-title:after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    height: 1px;
    width: 80px;
    background-color: #ffcb05a6;
    transform: translateX(-50%);
}

.main-title:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    height: 3px;
    width: 30px;
    background-color: #ffcb05;
    transform: translateX(-50%);
}

.span-title {
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #999;
}

.box-padding {
    padding: 80px 50px;
}

.about-text h4 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.video-area {
    position: relative;
    background-color: #f4f4f4;
}

.video-area .video-text {
    padding: 80px 50px;
}

.video-area h3 {
    font-weight: 600;
}

.video-area p {
    margin-bottom: 20px;
}

.video-area .btn-3 {
    margin-top: 5px;
}

.video-area .btn-3:before {
    background-color: #f4f4f4;
}

.video-area .video-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-image: url(../images/why.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
}

.video-area .video-image .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
}

.video-area .video-image .video-icon .fa {
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    color: #333;
    background-color: #fff;
    font-size: 25px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    padding-left: 5px;
}

.video-area .video-image .video-icon .fa:after {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    height: 100px;
    width: 100px;
    border: 11px solid rgba(240, 240, 240, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: -1
}

.video-area .video-image .video-icon:hover .fa:after {
    transform: scale(.8);

}


.features .features-image {
    position: relative;
    background-image: url(../images/features.jpg);
    background-size: cover;
    height: 650px;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
}

.features .features-image .icon-box {
    position: absolute;
    height: 60px;
    width: 100px;
    text-align: center;
}

.features .features-image .icon-box p {
    color: #fff;
    font-weight: 600;
    margin-top: 5px;
    text-align: center;
    font-size: 13px;
    line-height: 24px;
}

.features .features-image .icon-1 {
    left: 50%;
    top: 40%;
    transform: translateX(-50%)translateY(-50%);
}

.features .features-image .icon-2 {
    right: 10%;
    top: 10%;
}

.features .features-image .icon-3 {
    right: 10%;
    bottom: 25%;
}

.features .features-image .icon-4 {
    left: 10%;
    top: 10%;
}

.features .features-image .icon-5 {
    left: 10%;
    bottom: 25%;
}

.features .features-image .icon-box .fa {
    height: 60px;
    width: 60px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    line-height: 60px;
    transition: transform 0.6s ease-in-out;
}

.features .features-image .icon-box .fa:hover {
    background-color: #ffcb05;
    transform: rotate(50deg);
    color: #fff;
}

.features .features-text {
    padding-top: 40px;
    margin-top: 30px;
}

.features .features-text h4 {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
}

.features .tabs {
    margin-bottom: 20px;
}

.features .tabs li {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    display: inline-block;
    padding: 10px 15px;
    margin-right: 10px;
    margin-left: 0;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
    border-radius: 3px;
}

.features .tabs li.active {
    color: #fff;
    background-color: #ffcb05;
    border: 1px solid #ffcb05;
}

.features .tabs li .icon {
    font-size: 15px;
    margin-right: 5px;
}

.features .tabs-content #tab2-content,
.features .tabs-content #tab3-content,
.features .tabs-content #tab4-content {
    display: none;
}

.features .tabs-content div p {
    margin-bottom: 30px;
}

.features .tabs-content div .weight-p {
    font-weight: 600;
    color: #333
}


.numbers {
    background-image: url(../images/wordrobs.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.numbers .overlay-bg {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 90px 0px 70px;
}


.numbers .single-number {
    margin-bottom: 30px;
    cursor: pointer;
}

.numbers .single-number i {
    font-size: 30px;
    color: #fff;
    height: 75px;
    width: 75px;
    line-height: 75px;
    border: 1px solid #888;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
}

.numbers .single-number:hover i {
    background-color: #ffcb05;
    border-color: #ffcb05;
}

.numbers .single-number p {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}

.numbers .single-number h5 {
    font-weight: 400;
    color: #ddd
}

.blog-area {
    background-color: #f4f4f4;
}



.address i {
    font-size: 25px;
    margin-right: 10px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    color: #222222;
    background-color: #ffcb05;
}

.address {
    margin-bottom: 30px;
}

.address p {
    margin-bottom: 5px;
    color: #333;
}

.footer {
    padding: 40px 0 20px 0;
    background-color: #222;
}

.footer .copyright,
.footer .social-icons {
    margin-bottom: 20px;
}

.footer .copyright p {
    color: #ccc;
}

.footer .copyright p strong {
    color: #fff;
}

.footer .social-icons a {
    display: inline-block;
    font-size: 15px;
    margin-left: 15px;
    margin-bottom: 10px;
    color: #fff;
    background-color: #444;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.social-icons a {
    display: inline-block;
    font-size: 15px;
    margin-left: 15px;
    margin-bottom: 10px;
    color: #fff;
    background-color: #ccc;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.social-icons a:hover {
    background-color: #ffcb05;
    color: #000;
}


.footer .social-icons a:hover {
    background-color: #ffcb05;
    color: #fff;
}










@media screen and (max-width: 768px) {

    section {
        padding: 30px;
    }

    .navbar-collapse {
        background: #fff
    }

    footer,
    footer .dev {
        text-align: center;
    }

    .hero-text {
        margin-top: 30%
    }

    .header .navbar-nav .nav-link,
    .header.active .navbar-nav .nav-link{
        padding: 3px 15px !important;
        color: #000;
        transition: 0.5s;
    }
    .navbar-toggler{
        border: none;
        background: #ffcb05
    }
    .navbar-toggler i{
        color: #000
    }
    .video-area .video-image{
        position: relative
    }

}

::selection {
    color: #fff;
    background: #ffcb05;
}
