@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

:root {
    --theme: #339966;
}

body {
    word-break: break-word;
    font: 15px/25px "Roboto", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

body::-webkit-scrollbar-track {
    background-color: #fff;
}

body::-webkit-scrollbar {
    width: 7px;
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #000;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Roboto", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Roboto", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/* project css start */

header {
    position: absolute;
    width: 100%;
    z-index: 9;
    padding: 15px 0px;
    background: #00000078;
    transition: 0.3s ease-in-out;
}

.cust_container {
    padding: 0 4%;
    max-width: 1920px;
}

header ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

header a.logo_here {
    display: block;
}

header a.logo_here>img {
    width: auto;
}

header ul>li>a {
    font-size: 16px;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

header ul>li>a:hover {
    color: var(--theme);
    transition: 0.3s ease-in-out;
}

header ul>li>a.active {
    color: var(--theme);
    transition: 0.3s ease-in-out;
}

.theme_btn {
    background: var(--theme);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 45px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    position: relative;
}

.theme_btn:hover {
    color: #fff;
    box-shadow: 0 0 0px 6px #33996652;
    transition: 0.3s ease-in-out;
    text-shadow: 3px 3px 0px #00000070;
}

.banner {
    position: relative;
    height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.banner>img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -2;
}

.banner:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgb(0 0 0 / 56%) 0%, rgba(0, 0, 0, 0) 100%);
}

.banner .banner_textt>h2 {
    color: #fff;
    font-size: 65px;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 20px;
}

.banner .banner_textt>h2>span {
    font-weight: 600;
}

.banner .banner_textt>h3 {
    color: #fff;
    margin: 0;
    font-size: 50px;
    text-align: right;
    font-weight: 200;
    margin-bottom: 20px;
    margin-top: -50px;
}

.banner .banner_textt>h3>span {
    display: block;
    font-weight: 600;
}

.banner .banner_textt>h1 {
    text-align: center;
    margin: 0;
    font-size: 8vw;
    line-height: 1;
    font-weight: bold;
    background: -webkit-linear-gradient(#ffffff7a, #33333300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner .banner_textt>p {
    margin: 0;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 200;
}

.banner .globe_wrpr_main>span {
    position: absolute;
    display: block;
    width: 25px;
    height: 40px;
    border: 3px solid #fff;
    border-radius: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 40%;
    z-index: 2;
}

.banner .globe_wrpr_main>span:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 5px;
    height: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 7px;
    border-radius: 10px;
}

.turning_industrial {
    padding: 70px 0px;
    position: relative;
    padding-bottom: 0;
}

.theme_heading {
    text-align: center;
}

.theme_heading>h2 {
    font-size: 80px;
    color: #000;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}

.theme_heading>h2>span {
    font-weight: 600;
}

.theme_heading>p {
    color: #666666;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    width: 70%;
    margin: 0 auto;
}

.turning_industrial .turning_sticky_wrpr>.arr_img {
    width: 28%;
    margin: 0 auto;
    display: block;
    margin-top: 60px;
}

.turning_industrial .turning_sticky_wrpr {
    position: relative;
    z-index: 1;
}

.turning_industrial .turning_scroll_wrpr .turning_text_wrpr {
    text-align: center;
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.turning_industrial .turning_scroll_wrpr .turning_text_wrpr>h3 {
    font-size: 28px;
    color: #111111;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

.turning_industrial .turning_scroll_wrpr .turning_text_wrpr>p {
    margin: 0;
    color: #999999;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.banner .globe_wrpr_main {
    position: absolute;
    width: 40%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -40%;
    margin: 0 auto;
    border: 5px solid #ffffff2b;
    border-radius: 50%;
}

.banner .globe_wrpr_main>.pin-spacer {
    padding: 0 !IMPORTANT;
    height: auto !IMPORTANT;
}

@keyframes abc {
    0% {
        transform: translate(0px, 240px) scale(0.3, 0.3) rotate(0deg);
    }

    100% {
        transform: translate(0px, 240px) scale(0.3, 0.3) rotate(360deg);
    }
}

.globe_img.img-rota {
    animation: 10s linear 0s infinite normal none running abc;
}

header.sticky {
    position: fixed;
    padding: 12px 0px;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(20px);
}

.turning_sticky_wrpr {
    position: relative;
    z-index: 2;
}

.turning_scroll_wrpr {
    width: 85%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    margin: 0 auto;
    right: 0;
}

.turning_scroll_wrpr {
    padding-top: 500px;
}

.turning_industrial .turning_scroll_wrpr .turning_text_wrpr:after {
    width: 40px;
    height: 40px;
    border-left: 1px solid var(--theme);
    border-top: 1px solid var(--theme);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    transition: 0.3s ease-in-out;
}

.turning_industrial .turning_scroll_wrpr .turning_text_wrpr:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    border-bottom: 1px solid var(--theme);
    border-right: 1px solid var(--theme);
    right: 0;
    bottom: 0;
    transition: 0.3s ease-in-out;
}

.turning_industrial .turning_scroll_wrpr .turning_text_wrpr:hover:after {
    width: 100px;
    height: 100px;
    transition: 0.3s ease-in-out;
}

.turning_industrial .turning_scroll_wrpr .turning_text_wrpr:hover:before {
    width: 100px;
    height: 100px;
    transition: 0.3s ease-in-out;
}

.vision_driving {
    padding: 100px 0px 80px;
}

.vision_driving .theme_heading {
    margin-bottom: 50px;
}

.vision_driving .visions_cards_wrpr .visions_card {
    padding: 50px;
    border-radius: 20px;
    background: #449DBE;
    margin-bottom: 20px;
}

.vision_driving .visions_cards_wrpr .visions_card .row {
    align-items: center;
}

.vision_driving .visions_cards_wrpr .visions_card .vision_textt>h3 {
    color: #fff;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 300;
}

.vision_driving .visions_cards_wrpr .visions_card .vision_textt>p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.vision_driving .visions_cards_wrpr .visions_card .vision_textt {
    width: 90%;
}

.vision_driving .visions_cards_wrpr .visions_card .vision_textt ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision_driving .visions_cards_wrpr .visions_card .vision_textt ul>li>a {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 300;
    border: 1px solid #fff;
    transition: 0.3s ease-in-out;
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.vision_driving .visions_cards_wrpr .visions_card .vision_textt ul>li>a:hover {
    color: var(--theme);
    background: #fff;
    border-color: var(--theme);
}

.vision_driving .visions_cards_wrpr .visions_card .vision_imgg>img {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    object-fit: cover;
}

.the_opportunity {
    position: relative;
    z-index: -1;
    margin-top: 200px;
}

.the_opportunity .theme_heading {
    text-align: left;
    margin-bottom: 0;
}

.the_opportunity .theme_heading>h2 {
    font-size: 60px;
}

.the_opportunity .theme_heading>p {
    width: 100%;
    line-height: 1.4;
    color: #000;
}

.the_opportunity .row {
    align-items: center;
}

.the_opportunity .opportunity_box>h3 {
    color: #339966;
    font-size: 70px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 15px;
}

.the_opportunity .opportunity_box>p {
    color: #111111;
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
    margin: 0;
}

.turning_industrial .theme_heading {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 35%, rgba(255, 255, 255, 0.83) 100%);
    backdrop-filter: blur(10px);
}

.video_sec {
    padding: 0px 0px 80px;
}

.video_sec .vid_wrpr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_sec .vid_wrpr>video {
    width: 100%;
    height: 600px;
    border-radius: 30px;
    object-fit: cover;
}

.video_sec .vid_wrpr>a {
    position: absolute;
    z-index: 1;
}

.video_sec .vid_wrpr>a>img {
    width: 90px;
}

.polymer_sec .theme_heading {
    text-align: left;
}

.polymer_sec .theme_heading>h2 {
    font-size: 68px;
    margin-bottom: 0;
}

.polymer_sec a.theme_btn {
    margin-left: auto;
}

.polymer_sec a.theme_btn {
    margin-left: auto;
}


.polymer_sec ul.polymer_wrpr>li:nth-child(odd) {
    border-color: #449dbe;
}

.polymer_sec {
    padding-bottom: 100px;
}

.polymer_sec ul.polymer_wrpr>li>span {
    color: #111111;
    font-size: 16px;
}

.polymer_sec ul.polymer_wrpr>li>img {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.polymer_sec ul.polymer_wrpr>li>h3 {
    margin: 0;
    color: #111111;
    font-weight: 500;
    font-size: 16px;
    text-align: right;
}


.polymer_sec ul.polymer_wrpr {
    position: relative;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1800px;
    margin-top: 100px;
}

.polymer_sec ul.polymer_wrpr>li {
    position: absolute;
    width: 300px;
    height: 320px;
    padding: 25px;
    background: #fff;
    border-radius: 25px;
    border: 1px solid var(--theme);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) rotateX(18deg) rotateY(-28deg);
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.polymer_sec ul.polymer_wrpr>li:nth-child(1) {
    transform: translate(-33%, -29%) rotateX(-15deg) rotateY(-20deg);
    z-index: 7;
}

.polymer_sec ul.polymer_wrpr>li:nth-child(2) {
    transform: translate(-29%, -32%) rotateX(-15deg) rotateY(-20deg);
    z-index: 6;
}

.polymer_sec ul.polymer_wrpr>li:nth-child(3) {
    transform: translate(-25%, -36%) rotateX(-15deg) rotateY(-20deg);
    z-index: 5;
}

.polymer_sec ul.polymer_wrpr>li:nth-child(4) {
    transform: translate(-21%, -40%) rotateX(-15deg) rotateY(-20deg);
    z-index: 4;
}

.polymer_sec ul.polymer_wrpr>li:nth-child(5) {
    transform: translate(-18%, -43%) rotateX(-15deg) rotateY(-20deg);
    z-index: 3;
}

.polymer_sec ul.polymer_wrpr>li:nth-child(6) {
    transform: translate(-14%, -47%) rotateX(-15deg) rotateY(-20deg);
    z-index: 2;
}

.polymer_sec ul.polymer_wrpr>li:nth-child(7) {
    transform: translate(-10%, -50%) rotateX(-15deg) rotateY(-20deg);
    z-index: 1;
}

.polymer_sec:hover ul.polymer_wrpr>li:nth-child(1) {
    transform: translate(-240%, -50%) rotateX(-15deg) rotateY(-20deg);
}

.polymer_sec:hover ul.polymer_wrpr>li:nth-child(2) {
    transform: translate(-180%, -50%) rotateX(-15deg) rotateY(-20deg);
}

.polymer_sec:hover ul.polymer_wrpr>li:nth-child(3) {
    transform: translate(-110%, -50%) rotateX(-15deg) rotateY(-20deg);
}

.polymer_sec:hover ul.polymer_wrpr>li:nth-child(4) {
    transform: translate(-40%, -50%) rotateX(-15deg) rotateY(-20deg);
}

.polymer_sec:hover ul.polymer_wrpr>li:nth-child(5) {
    transform: translate(20%, -50%) rotateX(-15deg) rotateY(-20deg);
}

.polymer_sec:hover ul.polymer_wrpr>li:nth-child(6) {
    transform: translate(70%, -50%) rotateX(-15deg) rotateY(-20deg);
}

.polymer_sec:hover ul.polymer_wrpr>li:nth-child(7) {
    transform: translate(120%, -50%) rotateX(-15deg) rotateY(-20deg);
}

.cta_sec {
    padding: 50px 0px;
}

.cta_sec .cta_wrpr {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 30px;
    height: 500px;
    display: flex;
    align-items: end;
}

.cta_sec .cta_wrpr>img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(.8);
}

.cta_sec .cta_wrpr .cta_text {
    padding: 50px;
}

.cta_sec .cta_wrpr .cta_text>h2 {
    color: #fff;
    font-size: 60px;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>p {
    width: 280px;
    color: #fff;
    margin: 0;
    line-height: 1.6;
    font-size: 24px;
    font-weight: 300;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>ul {
    margin: 0;
    display: flex;
    align-items: center;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>ul>li>img {
    width: 80px;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>ul>li:nth-child(1) {
    border-right: 1px solid #fff;
    padding-right: 20px;
    margin-right: 20px;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>ul>li>span {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>ul>li>div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 10px;
    border-radius: 40px;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>ul>li>div>p {
    margin: 0;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>ul>li>div>a {
    border: 1px solid #cbcbcb;
    padding: 3px;
    border-radius: 50%;
}

.cta_sec .cta_wrpr .cta_text>.cta_text_mul>ul>li>div>a>img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    object-position: right;
}

.cta_sec .cta_wrpr .cta_img {
    padding-right: 90px;
}

.cta_sec .cta_wrpr .cta_img>img {
    width: 100%;
}

.footer_area {
    padding-top: 60px;
}

.footer_area .ft_text_img>h2 {
    background: url(../images/text-image.png);
    background-size: cover;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 125px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

.footer_area .ft_locations_wrpr {
    position: relative;
    height: 350px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.footer_area .ft_locations_wrpr .ft_locations_box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
}

.footer_area .ft_locations_wrpr .ft_locations_box>img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.footer_area .ft_locations_wrpr .ft_locations_box>span {
    color: #111111;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    display: block;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box1 {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box2 {
    right: 50px;
    top: 40px;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box3 {
    left: 20%;
    top: 60px;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box4 {
    left: 10%;
    top: 160px;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box5 {
    left: 35%;
    top: 160px;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box6 {
    top: 160px;
    left: 53%;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box7 {
    top: 130px;
    left: 72%;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box8 {
    bottom: 0;
    left: 0;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box9 {
    bottom: 0;
    left: 23%;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box10 {
    bottom: 0;
    left: 45%;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box11 {
    bottom: 40px;
    right: 30%;
}

.footer_area .ft_locations_wrpr .ft_locations_box.box12 {
    bottom: 70px;
    right: 0;
}

footer {
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

footer>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
}

footer p {
    text-align: center;
    color: #fff;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 80px;
}

footer p>strong {
    font-weight: 500;
}

footer .footer_info>a {
    display: block;
    margin-bottom: 20px;
}

footer .footer_info>a>img {
    width: auto;
}

footer .footer_info>p {
    text-align: left;
    font-size: 16px;
    margin: 0;
    text-transform: capitalize;
}

footer .footer_links>h5 {
    font-size: 20px;
    color: var(--theme);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer .footer_links>ul {
    margin: 0;
    display: flex;
    gap: 10px;
}

footer .footer_links>ul>li>a {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    transition: 0.3s ease-in-out;
}

footer .row.brd_top {
    border-top: 1px solid #fff;
    padding-top: 30px;
    margin-top: 50px;
    padding-bottom: 30px;
}

footer .row.brd_top p {
    text-align: left;
    font-size: 16px;
    margin: 0;
}

footer .row.brd_top ul.social_media_links {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

footer .row.brd_top ul.social_media_links>li>a>img {
    width: 30px;
}

.ft_text_img {
    position: relative;
    z-index: 2;
}

.ft_text_img>img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.footer_area .col-lg-12>.pin-spacer {
    padding: 0 !important;
    height: auto !important;
}