@import url("https://fonts.googleapis.com/css2?family=K2D:wght@100;200;300;400;500;600;700;800&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
a {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "K2D", sans-serif;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    max-width: 1920px;
    margin: 0 auto;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1350px;
}
/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    padding: 15px 0 30px;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    background-image: url("../images/header-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
}
.navbar-brand img {
    max-width: 100%;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav {
    margin: 0 auto;
}
.navbar-light .navbar-nav li {
    margin-right: 60px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
    margin-left: auto;
}
.navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 20px;
    color: #757575;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}
.navbar-light .navbar-nav .nav-link:before {
    position: absolute;
    content: "";
    height: 7px;
    width: 31px;
    background-image: url("../images/active-icon.svg");
    background-size: contain;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.navbar .navbar-nav li a:focus,
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:hover {
    color: #000000;
    font-weight: bold;
}
.navbar .navbar-nav a.active,
.navbar .navbar-nav a.active:hover {
    color: #000000;
    font-weight: bold;
}
.navbar .navbar-nav a.active:before,
.navbar .navbar-nav a.active:focus:before,
.navbar .navbar-nav a.active:hover:before {
    opacity: 1;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #000000;
    font-weight: bold;
}
/* **** End Header **** */



/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 40px;width: 50px;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #000;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #000;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */


/* ***** Fix Header **** */
header.nav-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
header.nav-new .navbar {
    border-radius: 0;
    box-shadow: none;
}
/* ***** End Fix Header **** */

.btn-main {
    position: relative;
    display: table;
}
.btn-main span {
    background-image: url("../images/btn-border.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45px;
    width: 160px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
    justify-content: center;
    position: relative;
    z-index: 5;
}
.btn-main:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-image: url("../images/btn-bg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    top: -6px;
    left: -4px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.btn-main:hover {
    color: #000;
}
.btn-main:hover:before {
    top: 0;
    left: 0;
}

/* **** Hero **** */
.hero-wrp {
    background: #fff;
    position: relative;
    padding: 270px 0 165px;
    margin: 0 0 90px;
}
.hero-wrp .hero-shap {
    position: absolute;
    right: 0;
    top: 0;
}
.hero-wrp .hero-block h2 {
    font-family: "K2D";
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 95px;
    color: #000000;
    margin: 0 0 30px;
    position: relative;
}
.hero-wrp .hero-block h2:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 60px;
    background-image: url("../images/active-icon.svg");
    background-size: contain;
    top: 0;
    left: 0;
}
.hero-wrp .hero-block h2 span {
    color: #83ae00;
    display: block;
}
.hero-wrp .hero-block h6 {
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    color: #000000;
    margin: 0 0 20px;
}
.hero-wrp .hero-block p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #757575;
    margin: 0 0 50px;
    max-width: 555px;
}
.hero-wrp .leptop-img {
    position: absolute;
    max-width: 100%;
    right: 13%;
    bottom: 0;
}
/* **** End Hero **** */

.titlebar h2 {
    font-family: "K2D";
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 95px;
    color: #000000;
    margin: 0 0 10px;
    position: relative;
}
.titlebar h2:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 60px;
    background-image: url("../images/active-icon.svg");
    background-size: contain;
    top: 0;
    left: 0;
}
.titlebar h2 span {
    color: #83ae00;
    display: block;
}
.titlebar p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #757575;
    margin: 0 0 50px;
    max-width: 555px;
}

/* **** About ***** */
.about-wrp {
    position: relative;
    padding: 270px 0 190px;
}
.about-wrp .about-shap {
    position: absolute;
    left: 0;
    top: 0;
}
.about-wrp .about-shap2 {
    position: absolute;
    right: 80px;
    top: 0;
}
.about-wrp .container {
    max-width: 1490px;
}
.about-wrp .about-block .about-box {
    display: flex;
    align-items: center;
    text-align: right;
    position: relative;
    z-index: 9;
    margin-top: -200px;
}
.about-wrp .about-block .about-box img {
    margin-left: 45px;
    min-width: 308px;
}
.about-wrp .about-block .about-box h3 {
    font-weight: 700;
    font-size: 35px;
    color: #fff;
    line-height: 50px;
}
.about-wrp .about-block .about-box h6 {
    font-weight: 700;
    font-size: 22px;
    line-height: 35px;
    color: #000000;
    margin: 0 0 10px;
}
.about-wrp .about-block .about-box p {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    margin: 0;
}
.about-wrp .about-block .about-right-box.about-box {color: #000;text-align: left;margin: 0;}
.about-wrp .about-block .about-right-box.about-box img {margin-right: 30px;margin-left: 0;}
.about-wrp .about-block .about-right-box.about-box h3 {color: #000;}
.about-wrp .about-block .about-right-box.about-box h6 {color: #83ae00;}
.about-wrp .about-block .about-right-box.about-box p {color: #757575;max-width: 322px;font-weight: 400;}
.about-wrp .about-block .about-right-box.about-box {align-items: flex-start;}
.about-wrp .about-block .about-right-box.about-box div {margin: 135px 0 0;}
/* **** End About ***** */

/* **** Service **** */
.service-wrp {
    padding: 310px 0 390px;
    background-image: url("../images/service-bg.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.service-wrp .container {
    max-width: 1250px;
}
.service-wrp .titlebar h2 {
    text-align: center;
}
.service-wrp .titlebar h2:before {
    top: -5px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.service-wrp .titlebar h2 span {
    display: inline-block;
}
.service-wrp .titlebar p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #757575;
    text-align: center;
    display: block;
    max-width: 100%;
    margin: 0 0 50px;
}
.service-wrp .row {
    align-items: center;
}
.service-wrp .service-box {
    margin: 0 0 30px;
}
.service-wrp .service-dt h2 {
    font-family: "K2D";
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    color: #000000;
    margin: 0 0 20px;
}
.service-wrp .service-dt p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #757575;
    margin: 0;
}
.service-wrp img {
    margin: 0 auto;
}
/* **** End Service **** */

/* **** Contact ***** */
.contact-wrp {
    padding: 335px 0;
    position: relative;
    margin: 0 0 140px;
}
.contact-wrp .about-shap {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 49%;
}
.contact-wrp .about-shap2 {
    position: absolute;
    right: 80px;
    bottom: 0;
}
.contact-wrp .row {
    align-items: center;
}
.contact-wrp .contact-info {
    display: table;
    margin-left: auto;
    margin-right: 150px;
}
.contact-wrp .contact-info .cnt-box {
    margin: 0 auto 50px;
}
.contact-wrp .contact-info .last-cnt-box.cnt-box {
    margin: 0 auto;
}
.contact-wrp .contact-info .cnt-box img {
    max-width: 100%;
    margin: 0 auto 20px;
}
.contact-wrp .contact-info .cnt-box h5 {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    text-align: center;
    margin: 0 0 2px;
}
.contact-wrp .contact-info .cnt-box a {
    font-family: "K2D";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #161616;
    display: block;
}
.contact-wrp .contact-form .titlebar h2 {
    margin: 0 0 20px;
}
.contact-wrp .contact-form .titlebar h2 span {
    display: inline-block;
}
.contact-wrp .contact-form .titlebar p {
    margin: 0 0 30px;
}
.contact-wrp .contact-form form .form-group {
    margin: 0 0 30px;
}
.contact-wrp .contact-form form .form-group label {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #999999;
    margin: 0;
}
.contact-wrp .contact-form form .form-group .form-control {
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    color: #c4c4c4;
    border: 1px solid #d9d9d9;
    box-shadow: none;
    outline: none;
    border-radius: 0;
    resize: none;
}
.contact-wrp .contact-form form button {
    margin: 20px 0 30px;
    border: none;
    background: transparent;
}
.successmsg{
    display: block;
    color: #008000;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}
/* **** End Contact ***** */

/* **** Footer **** */
footer {
    background: #000000;
}
footer .map-bx {
    height: 500px;
}
footer .map-bx iframe {
    height: 100%;
    width: 100%;
}
footer .footer-block {
    padding: 70px 0 80px;
}

footer .footer-apps {
    padding: 0 0 70px;
    margin: 0 0 40px;
    border-bottom: 1px solid #83ae00;
}
footer .footer-apps h2 {
    font-family: "K2D";
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #ffffff;
    text-align: center;
    margin: 0 0 70px;
    position: relative;
}
footer .footer-apps h2:before {
    position: absolute;
    content: "";
    left: 50%;
    top: -15px;
    background-image: url("../images/footer-title-shap.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 60px;
    height: 14px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
footer .footer-apps ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .footer-apps ul img{
    max-width: 100%;
}
footer .row {
    align-items: end;
}
footer .quick-links {
    display: table;
}
footer .quick-links h3 {
    text-align: center;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #83ae00;
    margin: 0 0 50px;
    position: relative;
}
footer .quick-links h3:before {
    position: absolute;
    content: "";
    height: 9px;
    width: 39px;
    background-image: url("../images/quick-icon.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
footer .quick-links ul li {
    margin: 0 0 5px;
}
footer .quick-links ul li:last-child {
    margin: 0;
}
footer .quick-links ul li a {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    display: block;
    text-align: center;
}
footer .quick-links ul li a:hover {
    color: #83ae00;
}
footer .right-quick-links {
    margin-left: auto;
}
footer .right-quick-links ul li {
    margin: 0 0 20px;
}
footer .foot-logo img {
    max-width: 100%;
    margin: 0 auto 30px;
}
footer .foot-logo p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #c4c4c4;
    max-width: 467px;
    margin: 0 auto;
}
.copyright {
    background: #1d1d1d;
    padding: 12px 0;
}
.copyright p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #c4c4c4;
    margin: 0;
    text-align: center;
}
/* **** End Footer **** */