/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
nav ul,
nav li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
ol,
ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
p {
    text-justify: inter-word;
}
:root {
    --p-color: #69b760;
    --s-color: #69b760;
}
button,
a {
    outline: none !important;
}
/* start editing from here */
* {
    margin: 0;
    padding: 0;
}
body {
    color: rgb(18, 29, 51);
    font-size: 15px;
    line-height: 1.5;
    font-family: "Nunito Sans", sans-serif;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
p {
    font-size: 15px;
}

header {
    width: 100%;
    z-index: 99;
    text-align: left;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: absolute;
    top: 0px;
    padding: 15px 0px;
    background: transparent;
}
.nav-up {
    top: -160px;
}
.nav-wrap {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.home-logo {
    width: 110px;
    float: left;
    -webkit-transition: all 0.9s;
    -o-transition: all 0.9s;
    transition: all 0.9s;
}
.home-logo a {
    color: #000;
    font-size: 20px;
    font-weight: 900;
    display: inline-block;
}
.logo1 {
    display: block;
    width: 100%;
}
.logo2 {
    display: none;
}
.nav-menu {
    float: right;
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}
.nav-menu a {
    color: #fff;
    display: block;
    padding: 20px 0px;
    font-weight: 600;
    font-size: 15px;
}
.nav-menu a:hover {
    color: #06c96b !important;
}
.nav-menu li {
    display: inline-block;
    margin-left: 40px;
}
.drop-down {
    position: relative;
}
.drop {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: #fff;
    margin-top: 0px;
    width: 347px;
    margin-left: -67px;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    transition: all 0.4s ease-in-out;
    padding: 10px 0px;
}
.drop li {
    display: block;
    margin: 0px !important;
}
.drop li a {
    padding: 6px 0px 6px 30px !important;
    margin: 0px;
    display: block;
    width: 100%;
    border: 0px;
    font-size: 13px;
    color: #000 !important;
    border-left: 0px solid #fff;
    transition: all 0.2s ease-in-out;
    margin: 10px 0px;
}
.drop li a:hover {
    border-left: 4px solid var(--p-color);
}
.drop-down:hover .drop {
    visibility: visible;
    opacity: 1;
}
#md-show {
    display: none;
}
#md-hide {
    display: inline-block;
}
.link-left {
    display: block;
}

.on-mobile-show {
    display: none;
}

.link-right {
    float: right;
}

.wrap {
    width: 75%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wrap {
        width: 85%;
    }
}
/*------- T o g g l e -------
----------------------------------------------------------
------------------------------------------------*/
.toggle-menu {
    margin-top: 8px;
    cursor: pointer;
    text-align: center;
    position: relative;
    display: none;
}
.toggle-menu div {
    width: 20px;
    height: 1px;
    background: #fff;
    margin-bottom: 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2 ease-in-out;
}
.toggle-menu div:nth-child(1) {
    margin-top: 5px;
}
.toggle-menu div:nth-child(2) {
    width: 70%;
    margin-left: auto;
}
.switch div:nth-child(2) {
    display: none !important;
}
.switch div:first-child {
    -webkit-transform: rotate(45deg) !important;
    -ms-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    position: relative;
    bottom: -3px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.switch div:nth-child(3) {
    bottom: 3px;
    position: relative;
}

.switch div {
    -webkit-transform: rotate(135deg) !important;
    -ms-transform: rotate(135deg) !important;
    transform: rotate(135deg) !important;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.side-menu {
    height: 100%;
    position: fixed;
    width: 250px;
    background: #000;
    left: -250px;
    top: 0;
    bottom: 0;
    z-index: 9;
    padding: 0px 20px;
    padding-top: 60px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    height: 100vh;
    overflow-x: auto;
}
.mov-right {
    left: 0;
    width: 100%;
}
.side-menu li {
    padding: 0px;
    list-style: none;
}
.side-menu a {
    display: block;
    color: #fff;
    padding: 12px 0px;
    font-size: 14px;
    border-bottom: 1px solid rgba(244, 244, 244, 0.2);
}
.side-menu a .arr {
    font-size: 17px;
    position: absolute;
    right: 0px;
    top: 9px;
    color: #999;
    transform: rotate(0deg);
    transition: all 0.4s ease-in-out;
}
.expand {
    display: block;
}
a {
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .toggle-menu {
        display: inline-block;
        float: right;
        z-index: 99;
    }
    .drop-down:hover .drop {
        visibility: hidden;
        opacity: 0;
    }
    .drop li a {
        padding: 6px 0px !important;
        border-bottom: 1px solid rgba(244, 244, 244, 0.2);
        color: #ddd !important;
    }
    .drop {
        visibility: visible;
        opacity: 1;
        padding: 0px;
        height: 0px;
        overflow: hidden;
        position: relative;
        margin-top: 0px;
        border-top: 0px;
        width: auto;
        margin-left: 0;
        border-radius: 0;
        box-shadow: none;
        transition: all 0.4s ease-in-out;
        background: transparent;
    }
    .expand .drop {
        height: auto !important;
        padding: 10px;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    .expand .arr {
        transform: rotate(90deg) !important;
    }
}
/*///////////////////////////////////////////////////*/

.main {
    overflow: hidden;
    height: 550px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.main .inner {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}
.main #myVideo {
    width: 100%;
    object-fit: cover;
    min-height: 100%;
}
@media (min-width: 768px) {
    .vidvid {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background-size: cover;
        background-position: 0 0;
    }
}

@media (max-width: 768px) {
    .vidvid {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background-size: cover;
        background-position: 0 0;
    }
}
.vidvid video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    margin: 0;
    padding: 0;
    pointer-events: none;
}
.main .wrap {
    position: relative;
}
.main #play-png {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 210px;
    z-index: 5;
    cursor: pointer;
    opacity: 0.7;
    width: 110px;
    display: none;
}
#play-png {
    cursor: pointer;
    animation-name: op;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
}
#play-png:hover {
    opacity: 0.9;
}
@keyframes op {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 0.9;
    }
}
.main h1 {
    padding-top: 200px;
    font-size: 70px;
    font-weight: 800;
    line-height: 77px;
    color: #fff;
}
.main h2 {
    font-size: 20px;
    width: 430px;
    color: #e6e6e6;
    margin: 20px 0px;
}
.main #p-text {
    position: absolute;
    width: 100%;
    z-index: 3;
    left: 0;
    right: 0;
}
.main .p-btn {
    background: var(--p-color);
    color: #fff;
    border-radius: 2px;
    border: 1px solid var(--p-color);
    margin-top: 0px;
    height: 45px;
    width: 150px;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
    margin-right: 10px;
}
.main .p-btn:hover {
    background: #fff;
    color: var(--p-color);
}
.main .p-btn-1 {
    color: #f2f2f2;
    border-radius: 2px;
    border: 1px solid #f2f2f2;
    margin-top: 0px;
    height: 45px;
    width: 220px;
    font-size: 16px;
    background: transparent;
    transition: all 0.4s ease-in-out;
}
.main .p-btn-1:hover {
    background: #fff;
    color: var(--p-color);
}

@media (max-width: 768px) {
    .main #play-png {
        top: 200px;
        z-index: 5;
        cursor: pointer;
        opacity: 0.7;
        width: 80px;
        display: block;
    }
    .vidvid {
        z-index: 7;
    }
    .vidvid video {
        position: absolute;
        top: 150px;
        left: 0;
        min-width: auto;
        min-height: auto;
        width: 90%;
        height: auto;
        z-index: 2;
        margin: auto;
        padding: 0;
        pointer-events: none;
        right: 0;
    }
    .display {
        display: block;
    }
}

.about-wrap {
    padding: 70px 0px;
    overflow: hidden;
    text-align: center;
    position: relative;
}
.about-wrap .a-small {
    color: var(--p-color);
    font-size: 22px;
}
.about-wrap h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: center;
    margin: 20px 0px;
    white-space: pre-line;
}
.about-wrap .title-header {
    width: 700px;
    margin: 0 auto;
}
.about-wrap p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
    margin: 10px 0px 60px 0px;
}
.about-wrap .box {
    box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.07);
    padding: 40px;
    height: 253px;
    width: 100%;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0px;
    cursor: pointer;
    padding-top: 160px;
    z-index: 2;
    background: #fff;
}
.about-wrap .box:hover {
    background: var(--s-color);
    top: -10px;
}
.about-wrap .box .svg1 {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.about-wrap .box .svg2 {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.about-wrap .box:hover .svg2 {
    visibility: visible;
    opacity: 1;
}
.about-wrap .box:hover .svg1 {
    visibility: hidden;
    opacity: 0;
}
.about-wrap .box img {
    width: 60px !important;
    position: absolute;
    top: 50px;
    left: 0px;
    right: 0px;
    margin: auto;
}
.about-wrap img {
    width: 100%;
}
.about-wrap h2 {
    font-weight: 800;
    font-size: 17px;
    transition: all 0.3s ease-in-out;
    white-space: pre-line;
    line-height: 20px;
}
.about-wrap .box h2 {
    color: #5c5c5c;
}
.about-wrap .box:hover h2 {
    color: #fff;
}
.about-wrap .dot {
    content: "";
    height: 599px;
    width: 154px;
    left: 0px;
    top: 15px;
    border-radius: 0px;
    position: absolute;
    right: auto;
}
.about-wrap .dot-btm {
    left: auto;
    right: 0px;
    bottom: 15px;
    top: auto;
}

@media (max-width: 768px) {
    .about-wrap .title-header {
        width: 100%;
        margin: 0 auto;
    }

    .about-wrap h1 {
        font-size: 28px;
        line-height: 33px;
        white-space: normal;
        margin-bottom: 13px;
    }
    .about-wrap .dot,
    .about-wrap .dot-btm {
        opacity: 0.1;
    }
}

.about-wrap .case {
    height: 500px;
    width: 100%;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.about-wrap .case .inner {
    background: rgba(0, 0, 0, 0.64);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
.about-wrap .a-btn {
    background: var(--p-color);
    font-size: 13px;
    display: block;
    height: 48px;
    width: 220px;
    left: 232px;
    border-radius: 0px;
    line-height: 48px;
    color: #fff;
    font-weight: 600;
    margin: 20px auto;
}
.about-wrap .case h2 {
    color: #fff;
    position: relative;
    z-index: 2;
}
.about-wrap .case h3 {
    color: #f3f3f3;
    position: relative;
    font-size: 13px;
    padding: 10px 0px;
    z-index: 2;
}
.about-wrap .case h4 {
    color: #fff;
    position: relative;
    z-index: 2;
    font-size: 13px;
    white-space: pre-line;
}
.about-wrap .case img {
    width: 100%;
    height: 500px;
    position: relative;
    top: 0;
}
.about-wrap .case .text {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    left: 0;
    right: 0;
    margin: auto;
    padding: 30px;
}

@media (max-width: 768px) {
    .about-wrap .case {
        height: 320px;
        margin-bottom: 20px;
    }
    .about-wrap .case img {
        width: 100%;
        min-height: 320px;
        position: relative;
        top: 0;
    }
}
.clients-wrap {
    padding-top: 10px;
    padding-bottom: 40px;
}
.clients {
    box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.07);
    padding: 20px;
    margin-bottom: 60px;
}
.clients img {
    position: relative;
    width: 130px !important;
}
@media (max-width: 768px) {
    .clients {
        display: block;
    }
    .clients img {
        position: relative;
        width: 100px !important;
        margin: 10px;
    }
}
.about-wrap .case-2 {
    text-align: left;
    margin-top: 30px;
}
.about-wrap .case-2 img {
    width: 100%;
    position: relative;

    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}
.about-wrap .case-2 h2 {
    color: #69b760;
    font-size: 26px;
    font-weight: 900;
    line-height: 27px;
    padding-top: 40px;
}
.about-wrap .case-2 h4 {
    color: #888;
    white-space: pre-line;
    font-size: 14px;
}
.about-wrap .case-2 h4 strong {
    color: #000;
    font-weight: 700;
    font-style: italic;
    font-size: 19px;
    line-height: 22px;
}

@media (max-width: 768px) {
    .about-wrap .case-2 h2 {
        color: #69b760;
        font-size: 23px;
        font-weight: 900;
        line-height: 27px;
        padding-top: 0px;
        margin-top: -20px;
    }
    .about-wrap .case-2 h4 strong {
        font-size: 16px;
        line-height: 20px;
    }
}
.sm-no {
    display: block;
}
.sm-show {
    display: none;
}
@media (max-width: 768px) {
    .sm-no {
        display: none;
    }
    .sm-show {
        display: block;
    }
}
.abt2 p {
    color: rgba(83, 83, 83, 1);
    white-space: pre-line;
    width: 80%;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .abt2 p {
        width: 100%;
    }
    .about-wrap p {
        font-size: 15px;
    }
    .team {
        margin-bottom: 65px;
    }
    .team .green-c {
        padding-top: 10px;
    }
    .team-wrap h1 {
        padding-bottom: 15px;
    }
    .team1 {
        margin-bottom: 20px;
    }
}
.map-parallax {
    height: 400px;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.page-parallax {
    height: 400px;
    background: url("../img/about.png");
    background-size: cover;
    background-position: center center;
    width: 100%;
    position: relative;
}
.page-parallax h1 {
    color: #fff;
    font-weight: 900;
    font-size: 43px;
    z-index: 2;
    width: 750px;
    position: relative;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    padding-top: 190px;
}
.page-parallax h1 span {
    color: #69b760;
}

.page-parallax p {
    color: #fff;
    position: relative;
    text-align: center;
    z-index: 2;
}
@media (max-width: 768px) {
    .page-parallax {
        height: auto;
        padding-bottom: 150px;
    }
    .page-parallax h1 {
        width: 100%;
        padding-top: 170px;
        font-size: 35px;
        line-height: 44px;
    }
}
.page-parallax .inner {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* F O O T E R */

.footer {
    background: #000;
    padding: 30px 0px 30px;
    overflow: hidden;
    color: #f2f2f2;
}
.footer .col-md-3 {
    padding: 40px;
}
.footer .col-md-3:first-child {
    padding-left: 15px;
}

@media (max-width: 768px) {
    .footer .col-md-3 {
        border-left: 0px !important;
        padding: 30px 15px !important;
    }
}
.footer h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.footer a {
    color: #a2a2a2;
    font-size: 14px;
    border-left: 0px solid #fff;
    transition: all 0.2s ease-in-out;
    margin: 12px 0px;
    padding-left: 0px;
    display: block;
}
.footer a:hover {
    border-left: 4px solid var(--p-color);
    color: #fff;
    padding-left: 5px;
}
.footer .flex {
    display: flex;
}
.footer .flex a {
    margin-right: 17px;
}
#aed {
    border-left: 4px solid var(--p-color);
    color: #fff;
    padding-left: 5px;
}
.footer li {
    border-bottom: 1px dotted #404040;
    padding: 7px 0px;
}
.footer img {
    width: 100px;
}
.socials {
    margin-top: 10px;
}
.socials li {
    border: 0px;
    display: inline-block;
    margin-right: 6px;
    font-size: 16px;
}
.footer p {
    color: #fff;
    font-size: 14px;
    padding-top: 10px;
    white-space: pre-line;
    line-height: 29px;
}
.footer p span {
    font-weight: 600;
}
.footer .n-l {
    line-height: normal;
}
.final-foot {
    background: #000;
    padding: 15px 0px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
}
.final-foot p {
    color: #a2a2a2;
    font-size: 12px;
}
.sample-img {
    margin: 20px 0px;
}
.sample-img {
    text-align: center;
}
.sample-img img {
    width: 110px;
    margin: 10px 20px;
    position: relative;
    top: auto;
    left: auto;
}
@media (max-width: 768px) {
    .sample-img img {
        width: 90px !important;
        margin: 10px;
    }
}
.pp {
    font-size: 21px !important;
    font-weight: 900 !important;
    margin: 50px 0px;
    white-space: pre-line;
}
.pp span {
    display: inline-block;
    padding: 0px 12px;
}
@media (max-width: 768px) {
    .pp span {
        display: inline-block;
        padding: 0px 1px;
        font-size: 14px;
    }
    .pp {
        margin-bottom: 20px;
    }
    .clients-wrap h1 {
        padding-bottom: 20px;
    }
}
.about-wrap ul li {
    position: relative;
    padding: 5px 0px;
}
.about-wrap ul li span {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: rgba(83, 83, 83, 1);
    display: inline-block;
    margin-right: 10px;
}
.vid-blocks {
    width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .vid-blocks {
        width: 90%;
    }
}
.vid-blocks .vid {
    height: 82px;
    width: 100%;
    margin: 20px 0px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #d2d2d2;
    font-weight: 700;
    font-size: 14px;
    padding: 22px 10px;
    box-sizing: border-box;
    box-shadow: 0px 4px 124px rgba(0, 0, 0, 0.07);
}
.vid-blocks h5 {
    margin: 50px 0px;
    font-weight: 700;
}
.vid-blocks .videoWrapper {
    border-radius: 20px;
}
@media (max-width: 768px) {
    .vid-blocks .vid {
        margin: 10px 0px;
    }
    .vid-blocks h5 {
        margin: 50px 0px 20px;
    }
    .no-p {
        padding-top: 10px !important;
    }
}
.brand {
    border: 1px solid #f5f5f5;
    padding: 10px;
    min-height: 290px;
}
.brand img {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
}
.gray {
    background: rgba(244, 244, 244, 0.4);
}
.social img {
    height: 255px;
}
@media (max-width: 768px) {
    .gray {
        background: rgba(244, 244, 244, 0.5);
    }
    .brand {
        margin-bottom: 15px;
    }
    .brands-wrap {
        padding: 50px 0px;
    }
    .social img {
        height: auto;
    }
}
.brands-wrap h1 {
    margin-bottom: 30px;
    font-size: 25px;
}
.tiny {
    color: rgba(83, 83, 83, 1);
    font-size: 12px;
}
.pt-70 {
    padding-top: 70px;
}
.pt-60 {
    padding-top: 60px;
}
.pt-50 {
    padding-top: 50px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-10 {
    padding-top: 10px;
}
.pb-40 {
    padding-bottom: 50px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-10 {
    padding-bottom: 20px;
}
.green-c {
    color: var(--p-color) !important;
}
.career-info strong {
    font-weight: 900;
    color: #000;
}
.career-info p {
    color: #535353;
    margin-bottom: 20px;
}

.wrap-c {
    padding: 60px 40px;
    overflow: hidden;
    width: 1020px;
}
.info-cb {
    width: 430px;
    position: absolute;
    float: left;
    margin-top: 50px;
}
.mail-wrap {
    width: 600px;
    float: right;
    margin: 0 auto;
    background: var(--p-color);
    padding-right: 30px;
    padding-left: 130px;
    padding-bottom: 60px;
}
@media (max-width: 1030px) {
    .wrap-c {
        width: 760px;
    }
    .info-cb {
        width: 390px;
    }
    .mail-wrap {
        width: 400px;
    }
}
@media (max-width: 768px) {
    .wrap-c {
        width: 90%;
    }
    .info-cb {
        width: 100%;
        float: none;
        position: relative;
    }
    .mail-wrap {
        width: 100% !important;
        padding: 50px 30px !important;
        float: none;
        position: relative;
    }
}
.info-cb-in {
    background: #ffffff;
    padding: 40px 10px;
    min-height: 220px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 102px 0px rgba(0, 0, 0, 0.07);
}
.info-cb-in i {
    font-size: 35px;
    color: var(--p-color);
}
.info-cb-in .flex i {
    font-size: 22px;
    margin: 15px;
}
.info-cb-in h2 {
    padding-bottom: 10px;
    padding-top: 10px;
}
.info-cb-in p {
    font-size: 14px;
}
.info-cb-in a {
    color: #212529;
}
.mail-wrap h1 {
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}
.mail-wrap input,
.mail-wrap textarea {
    height: 40px;
    background: transparent !important;
    border-radius: 0px;
    padding: 25px;
    color: #fff !important;
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
}
.mail-wrap input::placeholder,
.mail-wrap textarea::placeholder {
    color: #fff;
    opacity: 0.7;
}
.mail-wrap textarea {
    min-height: 130px;
    height: auto;
}
.mail-wrap button {
    background: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    width: 220px;
    border-radius: 0px;
    box-shadow: none !important;
    outline: none !important;
    margin-top: 20px;
    color: var(--p-color) !important;
    padding: 15px 25px;
    opacity: 1;
}
.mail-wrap button:hover {
    opacity: 0.9;
}
.error {
    color: red;
    font-size: 12px;
    position: relative;
    top: -10px;
}
@media (max-width: 920px) {
    .mail-wrap {
        width: 90%;
    }
}

.contact-bk {
    width: 100%;
    position: relative;
    margin-top: -60px;
}
.contact-bk .wrap {
    width: 730px;
}
@media (max-width: 768px) {
    .contact-bk .wrap {
        width: 90%;
    }
    .ctb {
        margin-bottom: 20px;
    }
}
.ctb {
    text-align: center;
    border: 1px solid #ddd;
    min-height: 300px;
    padding: 50px;
    background: #fff;
}
.ctb i {
    font-size: 40px;
    color: var(--p-color);
}
.ctb h2 {
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0px 10px 0px;
}
.ctb p {
    font-size: 14px;
}
.ctb h4 {
    color: var(--p-color);
    padding-top: 15px;
}
.cont {
    padding: 20px;
    border: 1px solid var(--p-color);
    color: var(--p-color) !important;
    display: block;
    margin: 0px auto;
    width: 170px;
    margin-bottom: 80px;
}
.clients-1 {
    padding-bottom: 0px;
}
.clients-1 .clients {
    box-shadow: none;
    margin-bottom: 30px;
}
.footer-break {
    position: relative;
    padding: 120px 0px 130px 0px;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}
.footer-break .bg-image {
    width: 100%;
    background: url("../img/foot.jpg");
    background-size: cover;
    background-position: center center;
    /* Add the blur effect */
    /* Full height */
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-break .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(14, 51, 24, 0.6);
}
.footer-break h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 42px;
    position: relative;
    z-index: 3;
    margin: 20px auto;
    font-family: "Poppins", sans-serif;
}
.footer-break p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    width: 400px;
    line-height: 20px;
    position: relative;
    z-index: 3;
    margin: 20px auto;
}
@media (max-width: 768px) {
    .footer-break p {
        width: 100%;
    }
}
.footer-break a {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    width: 200px;
    text-align: center;
    margin: 20px 0px;
    position: relative;
    z-index: 3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff !important;
    margin: 20px auto;
}
@media (max-width: 768px) {
    .footer-break h1 {
        width: 100%;
    }
}
br {
    padding: 10px 0px;
    display: block;
}
.mp {
    padding-left: 63px;
    text-align: left !important;
    padding-bottom: 20px;
    position: relative;
}
.mp img {
    width: 49px;
    position: absolute;
    left: 0;
}
