/*
Theme Name: Total Power
Theme URI: http://www.sizdom.com/
Description: A custom WordPress website for Total Power Company.
Author: Sizdom Technologies
Text Domain: sizdom
Author URI: https://www.sizdom.com/
Version: 1.0
Tags: clean, light, responsive, multi-column, portfolio, business

License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html

This theme goes along with the Total Power Company.
*/
:root{
    --white: #fff;
    --smoke: whitesmoke;
    --black: #1d242e;
    --dark: #000;
    --green: #54c1b0;
    --blue: #066ab5;
}
html, body{
    font-family: 'Sora', sans-serif;
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    font-size: 16px;
}
img{
    max-width: 100%;
    height: auto;
}
a, a:hover, a:active, a:focus{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
#wpadminbar{
    display: none;
}
.theme_p_200{
    padding: 200px 0;
}
.theme_p_100{
    padding: 100px 0;
}
.theme_p_50{
    padding: 50px 0;
}
header.header {
    position: fixed;
    z-index: 999;
    width: 100vw;
    top: 0;
    padding: 10px 0;
    transition: .2s all linear;
    background-color: transparent;
}
header.header.darkHeader{
    background-color: var(--dark);
}
a.navbar-brand {
    display: inline-block;
    max-width: 70px;
    margin-right: 50px;
}
ul.navbar-nav > li > a {
    display: inline-block;
    color: var(--white);
    margin-right: 30px;
    text-transform: uppercase;
    position: relative;
    overflow-x: hidden;
}
ul.navbar-nav > li > a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--green), var(--blue));
    top: 50%;
    left: -100%;
    transform: translate(0, -50%);
    transition: .5s all linear;
}
ul.navbar-nav > li > a:hover:before {
    left: 100%;
}
.page_header ul.navbar-nav > li > a, .page_header ul.top_right_menu > li > a {
    color: var(--dark);
}
header.header.darkHeader.page_header ul.navbar-nav > li > a, header.header.darkHeader.page_header ul.top_right_menu > li > a {
    color: var(--white);
}
ul.top_right_menu {
    text-align: right;
}
ul.top_right_menu > li {
    display: inline-block;
}
ul.top_right_menu > li > a {
    color: var(--white);
    display: inline-block;
    vertical-align: bottom;
    height: 30px;
    width: 30px;
    text-align: center;
    margin-left: 10px;
}
span.menu_trigger {
    width: 30px;
    height: 30px;
    display: block;
}
span.menu_trigger > span.bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    margin-bottom: 6px;
}
.page_header  span.menu_trigger > span.bar{
    background: var(--dark);
}
header.header.darkHeader.page_header span.menu_trigger > span.bar{
    background-color: var(--white);
}
.pop_menu {
    position: fixed;
    z-index: 999999;
    top: -100vh;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--dark);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: .2s all linear
}
.pop_menu.show_pop{
    top: 0;
    opacity: 1;
    visibility: visible;
}
a.close_menu {
    position: absolute;
    right: 10%;
    font-size: 3rem;
    color: var(--white);
}
a.pop_log {
    display: block;
    max-width: 300px;
}
.pop_menu_area {
    height: 100vh;
    padding: 50px;
    position: relative;
}
ul.pop_menus {
    margin-top: 50px;
}
ul.pop_menus a {
    display: block;
    width: fit-content;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
ul.pop_menus a:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--blue), var(--green));
    transform: translate(0, -50%);
    transition: .3s all linear;
}
ul.pop_menus a:hover:before{
    left: 100%;
}
ul.pop_social {
    position: absolute;
    bottom: 10%;
    right: 10%;
}
ul.pop_social li {
    display: inline-block;
}
ul.pop_social li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    background: var(--white);
    border-radius: 100%;
    color: var(--dark);
    padding-top: 5px;
}
section.home_video {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: var(--smoke);
}
a.video_control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: var(--white);
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 14px;
    border-radius: 100%;
    color: var(--green);
    visibility: hidden;
    opacity: 0;
    transition: .2s all linear;
}
section.home_video:hover .video_control{
    visibility: visible;
    opacity: 1;;
}
.home_video > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 1
}
section.home_video:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 2;
}
.video_content {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 10%;
    transform: translate(-0, -50%);
}
.video_content img {
    max-width: 400px;
}
section.home_services_icon, .position_relative {
    position: relative;
}
.home_icons_serv {
    position: absolute;
    text-align: center;
    width: 100%;
    background: var(--white);
    padding: 30px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 6;
}
.home_icons_serv img {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
}
.home_icons_serv p{
    margin: 0;
}
.heading_border_right {
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
}
h2, h3, h4{
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
}
.heading_border_right:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: var(--green);
    left: 0;
}
.heading_border_right.border_blue:before{
    background: var(--blue);
}
.special_link {
    display: inline-block;
    padding: 10px 20px 10px 0;
    color: var(--black);
    position: relative;
    transition: .2s all linear;
}
.special_link > i{
    margin-right: 10px;
}
a.special_link.link_ops {
    padding: 10px 20px !important;
}
a.special_link.link_ops i {
    margin-right: 0px;
    margin-left: 20px;
}
.special_link:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--green);
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: .2s all linear;
}
.special_link:hover{
    color: var(--white);
}
.special_link:hover:after{
    height: 100%;
}
section.home_companies {
    background: var(--smoke);
}
.companies_heading {
    text-align: center;
    margin-bottom: 50px;
}
.companies_heading h3, .companies_heading h4 {
    width: fit-content;
    margin: 0 auto;
    text-transform: capitalize;
}
.companies_heading.companies_left{
    text-align: left;
}
.companies_heading.companies_left h3,.companies_heading.companies_left h4{
    margin: 0 0;
}
.companies_heading h4 {
    margin: 0 auto;
    font-style: italic;
    padding-left: 30%;
}
.companies_heading h5 {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 10px 0 0 150px;
    font-style: italic;
}
.service_home_box {
    position: relative;
    overflow: hidden;
}
.service_space{
    margin: 50px 0 ;
}
.service_box_hover {
    position: absolute;
    top: 50%;
    left: -50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: 3;
    transition: .2s all linear;
}
.service_home_box:hover .service_box_hover{
    visibility: visible;
    opacity: 1;
    left: 50%;
    transform: translate(-50%, -50%);
}
.service_box_hover img{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.service_box_img {
    background: var(--blue);
    text-align: center;
    padding: 60px 0;
}
.service_box_img > img {
    max-width: 300px;
}
.service_box_heading {
    box-shadow: 0px 4px 5px #1c1c1c2e;
    padding: 20px 0;
}
.service_box_heading h4 {
    font-weight: 300;
    font-size: 18px;
    padding: 20px;
}
.service_box_small .service_box_img > img {
    max-width: 150px;
}
.service_box_small > div > div:nth-child(1) .service_box_img, .service_box_small > div > div:nth-child(4) .service_box_img {
    background: var(--green);
}
.service_box_small .service_box_heading {
    padding: 0;
}
.service_box_small .service_box_img{
    padding: 30px  0;
}
.service_box_small .service_box_heading{
    box-shadow: none;
}
.project_container {
    position: relative;
    height: 100vh;
    max-height: 550px;
    overflow: hidden;
    margin-top: 50px;
}
.project_container > .projects_in {
    position: absolute;
    top: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: .5s all linear;
}
.project_container > .projects_in.active{
    visibility: visible;
    opacity: 1;
    z-index: 2;
}
.text-right{
    text-align: right;
}
.home_project_list h3 {
    color: var(--green);
    font-style: italic;
}
ul.projects_list > li {
    margin-bottom: 20px;
}
ul.projects_list > li > strong {
    display: block;
}
ul.projects_menu {
    position: relative;
    margin-top: 50px;
}
ul.projects_menu > li > a {
    position: absolute;
    top: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    font-style: italic;
    transition: .2s all linear;
}
ul.projects_menu > li > a.active{
    visibility: visible;
    opacity: 1;
    z-index: 2;
}
ul.projects_menu > li > a > strong {
    display: block;
    font-size: 26px;
    color: var(--blue);
}
ul.projects_menu > li > a > strong i {
    width: 50px;
    font-size: 48px;
    vertical-align: middle;
    margin-right: 50px;
    color: var(--dark);
}
section.home_products {
    background: var(--smoke);
}
.product_slide_img img {
    width: 100%;
    height: auto;
}
.product_slide_head small {
    display: block;
    margin: 10px 0;
}
.product_slide_head h4 {
    font-size: 2rem;
}
.product_slider_navs {
    position: absolute;
    bottom: 50px;
    width: 40%;
    text-align: center;
}
.slick-dots li{
    display: inline-block;
    vertical-align: middle
}
.slick-dots li button {
    display: block;
    color: transparent;
    max-width: 15px;
    max-height: 15px;
    border: 1px solid var(--dark);
    border-radius: 100%;
    margin: 0 2px;
}
.slick-dots li.slick-active button {
    background: var(--blue);
    border-color: var(--blue);
}
.product_slider_navs >  button, button.slick_btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--black);
    text-align: center;
    padding-top: 5px;
    border-radius: 100%;
}
.product_slider_navs > button:hover, button.slick_btn:hover{
    border-color: var(--black);
}
.slide-m-dots {
    display: inline-block;
    margin: 0 10px;
}
ul.home_new_items {
    margin-top: 30px;
}
ul.home_new_items > li > a {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--blue);
    padding: 30px 50px;
    color: var(--dark);
    text-align: center;
    transition: .2s all linear;
}
ul.home_new_items > li > a:hover{
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}
span.title{
    font-weight: bold;
}
span.date {
    font-weight: bold;
    font-size: 1rem;
}
span.date small {
    font-weight: 400;
    margin-left: 10px;
}
.footer{
    background-color: var(--smoke);
}
ul.footer_menu li {
    display: inline-block;
    width: 32.333%;
    margin-bottom: 10px;
}
ul.footer_menu li a {
    display: inline-block;
    color: var(--dark);
}
.footer_fact {
    width: fit-content;
    margin: 30px 0 30px auto;
}
.footer_fact a {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--blue);
}
.footer_fact a i {
    transform: rotate(30deg);
    margin-left: 10px;
}
.footer_fact strong {
    font-size: 16px;
}
.designedby {
    text-align: right;
}

.designedby img {
    max-height: 20px;
    width: auto;
}
p.copyright, p.designedby {
    margin: 0;
}
ul.footer_social {
    margin-top: 40px;
    text-align: center;
}
ul.footer_social li {
    display: inline-block;
}
ul.footer_social li a {
    display: block;
    width: 30px;
    height: 30px;
    background: var(--green);
    color: var(--white);
    border-radius: 100%;
    padding-top: 4px;
    transition: .2s all linear;
}
ul.footer_social li a:hover{
    background-color: var(--dark);
}
.page_cover {
    margin-top: 50px;
    min-height: 60vh;
    background-image: url(images/page-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.page_cover_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page_cover_content h3{
    font-size: 2rem;
    text-align: center;
}
img.float_left, img.float_right {
    float: left;
    max-width: 48%;
    margin-bottom: 15px;
}
img.float_right{
    float: right;
}
.text-left{
    text-align: left;
}
.about_faq{
    min-height: 50vh;
}
.faq_content {
    position: absolute;
    max-width: 50%;
    text-align: justify;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: .2s all linear;
}
ul.faq_list > li {
    border-bottom: 1px solid var(--dark);
    padding: 30px;
    max-width: 48%;
}
ul.faq_list > li:hover > .faq_content{
    visibility: visible;
    opacity: 1;
}
ul.faq_list > li > p {
    position: relative;
    margin: 0;
    transition: .2s all linear;
    font-size: 1.5rem;
}
ul.faq_list > li:hover > p {
    padding-left: 50px;
    color: var(--green);
}
ul.faq_list > li > p > i {
    position: absolute;
    left: 100%;
    top: 50%;
    display: block;
    transition: .2s all linear;
    transform: translate(0, -50%);
}
ul.faq_list > li:hover > p > i {
    right: unset;
    left: 0;
}
.service_text_box {
    padding: 10px;
    margin-bottom: 20px;
    transition: .2s all linear;
}
.service_text_box strong, .service_text_box p{
    margin: 0;
    font-size: 14px;
}
.service_text_box strong{
    margin: 10px 0;
    display: block;
}
.service_text_box:hover {
    box-shadow: 1px 1px 10px #ccc;
    background: var(--green);
    color: var(--white);
}
.service_icon {
    width: 30px;
    height: 30px;
    background: var(--green);
    border-radius: 100%;
    padding: 3px 8px;
}
.service_icon img {
    filter: invert(1);
}
.service_text_box:hover .service_icon{
    background-color: var(--white);
}
.service_text_box:hover .service_icon img {
    filter: invert(0);
}
.service_choice_img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.service_choice_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    transition: .2s all linear;
}
.service_choice_box{
    margin-bottom: 30px;
}
.service_choice_box:hover .service_choice_img img{
    transform: translate(-50%, -50%) scale(1.1);
}
.service_choice_box h4 {
    font-size: 1.4rem;
    font-weight: 300;
    padding: 30px 10px 0;
    color: var(--dark);
    min-height: 52px;
}
.products_page_heading {
    position: relative;
    border-bottom: 2px solid var(--blue);
    margin-bottom: 50px;
}
.sidebar h5 {
    font-weight: bold;
    border-bottom: 2px solid var(--blue);
    width: fit-content;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
}
ul.side_menu {
    margin-bottom: 30px;
}
ul.side_menu li {
    display: block;
}

ul.side_menu li a {
    display: inline-block;
    padding-left: 20px;
    position: relative;
    color: var(--dark);
}
ul.side_menu li a:before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid var(--dark);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: .2s all linear;
}
ul.side_menu li a:hover, ul.side_menu li.active a{
    color: var(--blue);
}
ul.side_menu li a:hover:before, ul.side_menu li.active a:before{
    background-color: var(--blue);
    border-color: var(--blue);
}
.product_page_box {
    height: 320px;
    overflow: hidden;
    background: whitesmoke;
    position: relative;
    margin-bottom: 30px;
}
.product_page_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    background: var(--dark);
    padding: 50px;
    z-index: 1;
}
.product_page_box .product_page_img img{
    transition: .2s all linear;
}
.product_page_box_content {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    z-index: 2;
    text-align: center;
    transition: .2s all linear;
}
.product_page_box_content h4 {
    font-size: 16px;
    font-weight: unset;
}
.product_page_box:hover .product_page_img {
    height: 100%;
}
.product_page_box:hover .product_page_img img{
    margin-top: 50px;
    transform: scale(1.1);
}
.product_page_box:hover .product_page_box_content {
    background: transparent;
    bottom: calc(100% - 80px);
    color: var(--white);
}
.product_page_box > a {
    position: absolute;
    z-index: 3;
    color: var(--white);
    right: 20px;;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: .2s all linear;
}
.product_page_box:hover > a{
    visibility: visible;
    opacity: 1;
}
.project_slide_box{
    position: relative;
    overflow: hidden;
    margin: 0 10px;
}
.project_slide_hover {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .2s all linear;
}
.project_slide_box:hover .project_slide_hover{
    top: 0;
    opacity: 1;
}
.project_slide_hover_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    color: var(--white);
}
.project_slide_hover a{
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    color: var(--white);
}
.project_slide_hover img {
    min-width: 100%;
    min-height: 100%;
}
ul.news_category {
    margin-bottom: 50px;
    text-align: center;
}
ul.news_category li {
    display: inline-block;
}
ul.news_category li a {
    display: block;
    padding: 5px 20px;
    border-bottom: 3px solid var(--green);
    margin: 0 10px;
    color: var(--dark);
}
ul.news_category li a:hover{
    border-color: var(--blue);
    color: var(--blue);
}
.news_page_box {
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}
.news_page_box_content {
    position: absolute;
    bottom: 0;
    background: transparent;
    width: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--white);
    transition: .2s all linear;
    min-height: 10%;
}
.news_page_box:hover .news_page_box_content {
    background-color: var(--dark);
    min-height: 100%;
}
.news_page_box_content h3 {
    font-size: 1rem;
    transition: .2s all linear;
}
.news_page_box:hover .news_page_box_content h3 {
    font-size: 2rem;
}
.news_page_box_content > a{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: .2s all linear;
    color: var(--white);
}
.news_page_box:hover .news_page_box_content > a{
    visibility: visible;
    opacity: 1;
    z-index: 3;
}
.news_boxtime span {
    float: left;
    font-weight: bold;
    font-size: 2rem;
}
.news_boxtime span:nth-child(2) {
    float: right;
}
.news_boxtime span small{
    font-weight: 300;
    font-size: 1rem;
    text-transform: capitalize;
}
.news_boxtime {
    height: 48px;
    border-top: 1px solid var(--white);
    padding: 10px 0 0;
    margin-top: 20px;
    transition: .2s all linear;
}
.news_page_box:hover .news_boxtime{
    visibility: hidden;
    opacity: 0;
}
ul.contact_info_list {
    margin: 30px 0;
}
ul.contact_info_list li a {
    display: block;
    color: var(--dark);
    margin-bottom: 10px;
    transition: .2s all linear;
    text-transform: uppercase;
}
ul.contact_info_list li a i{
    width: 20px;
    margin-right: 10px;
}
ul.contact_info_list li a:hover{
    color: var(--green);
}
.google_map {
    height: 100%;
    background-color: var(--smoke);
}
.google_map iframe {
    height: 100%;
    width: 100%;
    filter: invert(100%);
}
.contact_form input, .contact_form textarea {
    display: block;
    width: 100%;
    padding: 7px 20px;
    margin-bottom: 20px;
    border: 2px solid var(--smoke);
    resize: none;
    max-height: 150px;
    transition: .2s all linear;
}
.contact_form input:hover, .contact_form textarea:hover,
.contact_form input:focus, .contact_form textarea:focus{
    border-color: var(--green);
}
.contact_form input[type="submit"] {
    margin: 0;
    background: var(--green);
    color: var(--white);
    border-radius: 30px;
}
.contact_form input[type="submit"]:hover{
    background-color: var(--blue);
}
.product_single_images img {
    width: 100%;
}
ul.product_thumbs {
    text-align: center;
}
ul.product_thumbs li {
    display: inline-block;
}
ul.product_thumbs li a img {
    max-width: 110px;
}
.related_slider_pro, .common_slider_bg {
    background: var(--smoke);
    padding: 50px 0;
}
.related_slider_pro img{
    margin: 0 auto;
}
.related_product_box a{
    color: var(--dark);
}
.related_slider_pro .slick-list{padding:0 10% 0 0 !important;}
a.apply_job {
    display: block;
    border: 2px solid var(--green);
    padding: 10px 40px;
    width: fit-content;
    margin-left: auto;
}
.job_box {
    border-bottom: 2px solid var(--blue);
    padding: 10px 0;
    margin-bottom: 20px;
}
.product_not_found {
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-weight: bold;
}
.product_not_found p {
    margin: 0;
}
@media screen and (max-width: 565px) {
    button.navbar-toggler{
        display: none;
    }
    a.close_menu {
        right: 5px;
        top: 0px;
    }
    section.home_video{
        height: 50vh;
    }
    .video_content img {
        max-width: 250px;
    }
    .home_icons_serv {
        padding: 10px;
        position: unset;
        transform: unset;
        padding-top: 50px;
    }
    .theme_p_200 {
        padding: 100px 0;
    }
    .home_ser_box_icon {
        margin-bottom: 30px;
    }
    .home_about_content {
        margin-bottom: 40px;
    }
    .companies_heading h4 {
        padding: 0;
    }
    .service_box_img > img {
        max-width: 150px;
    }
    .project_container {
        height: 300px;
    }
    ul.projects_menu {
        min-height: 200px;
        margin: 0;
    }
    .product_slider_navs {
        bottom: -60px;
        width: 100%;
    }
    ul.footer_social {
        margin-bottom: 30px;
    }
    .footer_fact {
        margin: 30px auto;
    }
    p.copyright, .designedby {
        text-align: center;
    }
    a.footer_logo {
        max-width: 80%;
        display: block;
        margin: 0 auto;
    }
    .service_text_box .service_icon {
        margin: 0 auto;
    }
    .service_text_box {
        text-align: center;
    }
    .product_page_img{
        height: 70%;
    }
    
}




