/* 
-----------------------------------------------------
Fonts CDN
-----------------------------------------------------
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800&display=swap');
/* 
-----------------------------------------------------
Fonts CDN
-----------------------------------------------------
*/




/* 
-----------------------------------------------------
Colors Variables
-----------------------------------------------------
*/
:root {
    --myFonts: 'Nunito', sans-serif;
    ;
    --primary: #1c97ca;
    --secondary: #121212;
    --white: #fff;
    --green: #64AE3C;
}

/* 
-----------------------------------------------------
Colors Variables
-----------------------------------------------------
*/






/* 
-----------------------------------------------------
Default CSS
-----------------------------------------------------
*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--myFonts);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--myFonts);
    margin-bottom: 0;
}

p {
    font-family: var(--myFonts);
    margin-bottom: 0;
    line-height: 30px;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    display: inline-block;
}

a,
a:hover {
    text-decoration: none;
}

button {
    border: none;
    outline: none;
}

button:focus {
    box-shadow: none;
}

/* 
-----------------------------------------------------
Default CSS
-----------------------------------------------------
*/





/* 
-----------------------------------------------------
Header CSS
-----------------------------------------------------
*/

.header {
    background: var(--white);
}

.navbar-brand {
    text-transform: uppercase;
    font-size: 35px;
    color: var(--green) !important;
    font-weight: 300;
    letter-spacing: 2px;
}

.navbar-nav.ms-auto {
    display: flex;
    column-gap: 20px;
}

.nav-link {
    font-size: 16px;
    color: var(--secondary) !important;
    position: relative;
    text-transform: capitalize;
    padding: 2px 0 !important;
    display: inline-block;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    background: var(--green);
    width: 100%;
    height: 2px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
}

.nav-link:hover {
    color: var(--green) !important;
}

.nav-link:hover::after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

/* 
-----------------------------------------------------
Header CSS
-----------------------------------------------------
*/





/* 
-----------------------------------------------------
Banner CSS
-----------------------------------------------------
*/
.banner {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/banner-01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 30px;
}

.banner_content {
    color: var(--white);
}

.banner_content h4 {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 300;
}

.banner_content h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
}

.banner_content p {
    font-size: 18px;
    margin-bottom: 50px;
}

.banner_content a {
    padding: 17px 30px;
    background: var(--green);
    display: inline-block;
    line-height: 1;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}


/* 
-----------------------------------------------------
Banner CSS
-----------------------------------------------------
*/





/* 
-----------------------------------------------------
Products CSS
-----------------------------------------------------
*/
.product {
    padding: 100px 0;
}
.heading {
    margin-bottom: 25px;
}
.heading h2 {
    color: var(--green);
    font-size: 27px;
    font-weight: 500;
}
.heading p {
    color: #888;
    font-size: 17px;
    font-weight: 500;
}
.product_area>.row {
    row-gap: 24px;
}
.product_card {
    border: 1px solid #e6e6e6;
    padding: 30px;
    border-radius: 15px;
}
.pro_model {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.pro_features {
    color: #787878;
    line-height: 25px;
    min-height: 75px;
}
.pro_second_para {
    color: #aab1bf;
    font-size: 15px;
    display: block;
    margin: 20px 0 15px;
}
.pro_btn {
    background: var(--green);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.pro_btn:hover {
    background: #666;
    color: var(--white);
}
/* 
-----------------------------------------------------
Products CSS
-----------------------------------------------------
*/




/* 
-----------------------------------------------------
Features CSS
-----------------------------------------------------
*/
.features {
    background: linear-gradient(to left,rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(../img/feature_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: var(--white);
    background-attachment: fixed;
}
.feature_content {
    border: 2px solid var(--green);
    padding: 30px;
    background: rgba(0,0,0,.1);
    backdrop-filter: blur(57px);
}
.feature_content h2 {
    margin-bottom: 20px;
    font-size: 27px;
}
.feature_content p {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 20px;
    color: rgba(255,255,255,.8);
}
/* 
-----------------------------------------------------
Features CSS
-----------------------------------------------------
*/





/* 
-----------------------------------------------------
Choose CSS
-----------------------------------------------------
*/

.choose_area {
    padding: 100px 0;
}
.choose_card {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card_info {
    padding: 30px;
    min-height: 180px;
}
.card_info h4 {
    font-size: 22px;
    color: #121212;
    font-weight: 700;
    margin-bottom: 15px;
}
.card_info p {
    font-size: 16px;
    color: #787878;
    line-height: 25px;
}

/* 
-----------------------------------------------------
Choose CSS
-----------------------------------------------------
*/



/* 
-----------------------------------------------------
Contact CSS
-----------------------------------------------------
*/
.contact_area {
    padding: 100px 0;
    background: #f5f5fd;
}
.contact_info {
    margin-bottom: 30px;
}
.contact_info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.contact_info p {
    line-height: 25px;
}
.cta_info ul {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    margin-top: 15px;
}
.cta_info ul li {
    position: relative;
}
.cta_info ul li::after {
    content: '/';
    position: absolute;
    left: 140px;
    top: 0;
}
.cta_info ul li:last-child:after {
    display: none;
}
.cta_info ul li a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #121212;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.cta_info ul li a:hover {
    color: var(--primary);
}

.form_area {
    max-width: 50%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 30px;
}
.form_area form {
    display: grid;
    row-gap: 20px;
}
.input_group input {
    padding: 15px;
    outline: none;
}
.input_group input.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}
.input_group textarea.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}
.form_btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.send_btn {
    background: var(--green);
    display: inline-flex;
    width: 160px;
    font-size: 15px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.send_btn:hover {
    background: #666;
}
/* 
-----------------------------------------------------
Contact CSS
-----------------------------------------------------
*/




/* 
-----------------------------------------------------
Footer CSS
-----------------------------------------------------
*/
.footer {
    background: #333;
    padding: 100px 0;
    color: #fff;
}
.social_link a {
    color: var(--white);
    margin: 15px 0;
    display: block;
}


/* 
-----------------------------------------------------
Footer CSS
-----------------------------------------------------
*/

