/*
 * Template Name: MMS - HTML5 Template Page
 * Author: pfitinc - (https://www.fiverr.com/tonton131)
 * Version: 1.0
 * Copyright 2025 tonton131

===========================================
    
    All include section: 

    01. google font css
    02. Basic css
	03. header section css
	04. home section css
	05. service section css
	06. how work section css
	07. scan smarter section css
	08. footer section css
	09. Responsive section css



===========================================
*/

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

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

button:focus, input:focus, textarea:focus {
	outline: 0;
}

/*==============
   02. Basic css
================*/
body {
    font-family: "Roboto", sans-serif;
    background: #F9FBFE;
    color: rgba(0, 0, 0, 0.80);
    font-size: 18px;
    line-height: 24px;
}

main {
    max-width: 1145px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 0;
    background-color: #FEFEFF;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
            box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    border-radius: 15px;
}

.container {
    max-width: 1015px;
    width: 100%;
    margin: 0 auto;
    padding-right: 10px;
    padding-left: 10px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.col {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

.col_3 {
		-webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col_4 {
	 -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333333333333%;
    flex: 0 0 33.33333333333333%;
    max-width: 33.33333333333333%;
}

.col_5 {
		-webkit-box-flex: 0;
    -ms-flex: 0 0 41.66666666666667%;
    flex: 0 0 41.66666666666667%;
    max-width: 41.66666666666667%;
}

.col_7 {
		-webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333333333333%;
    flex: 0 0 58.33333333333333%;
    max-width: 58.33333333333333%;
}

.img_fluid {
	max-width: 100%;
	height: auto;
}

.mt_10 {
	margin-top: 10px !important;
}

.mt_30 {
	margin-top: 30px !important;
}

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

.head_text01 {
    font-size: 45px;
    font-weight: 600;
}

.head_text02 {
		font-size: 20px;
    font-weight: 500;
}

.head_text03 {
    font-size: 26px;
    font-weight: 500;
}

.section_padding {
	padding: 80px 0;
}

.text_center {
	text-align: center;
}

.custom_btn {
    height: 60px;
    background: #086AD8;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 25px;
    text-decoration: none;
    font-size: 23px;
    border-radius: 10px;
    color: #ffffff;
		text-transform: capitalize;
		border: 2px solid transparent;
		-webkit-transition: 0.4s all ease-in-out;
		-o-transition: 0.4s all ease-in-out;
		transition: 0.4s all ease-in-out;
		-webkit-box-shadow: rgba(0, 104, 220, 100%) 0px 1px 1px 0px, rgb(0, 69, 147, 100%) 0px 1px 1px 1px;
		        box-shadow: rgba(0, 104, 220, 100%) 0px 1px 1px 0px, rgb(0, 69, 147, 100%) 0px 1px 1px 1px;
		font-weight: 500;
}

.custom_btn:hover {
	  background: transparent;
	  border: 2px solid #086AD8;
	  -webkit-box-shadow: unset !important;
	          box-shadow: unset !important;
	  color: #086AD8 !important;
}

/*=======================
   03. header section css
=========================*/
header {
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
    margin-top: 40px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    background: #ffffff;
    height: 75px;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 999;
}

header .col {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

header .logo {
	display: inline-block;
}

header .logo img {
	max-width: 110px;
	width: 100%;
}

.hamburger_menu {
    cursor: pointer;
    z-index: 999;
}

.hamburger_menu span {
	background: #000000;
	width: 30px;
	height: 3px;
	display: block;
	margin: 5px 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger_menu:hover .line_top {
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
}

.hamburger_menu:hover .line_bottom {
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
}

.hamburger_menu .line_top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	    -ms-transform: translateY(200%) rotate(135deg);
	        transform: translateY(200%) rotate(135deg);
}

.hamburger_menu .line_center.current {
	opacity: 0;
}

.hamburger_menu .line_bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	    -ms-transform: translateY(-325%) rotate(-135deg);
	        transform: translateY(-325%) rotate(-135deg);
}

header .dropdown_wrap {
	position: relative;
}

header .dropdown_menu {
    position: absolute;
    background: #ffffff;
    padding: 15px 25px;
    right: 0;
    top: 170%;
    border-radius: 5px;
    width: 180px;
    text-align: right;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border: 1px solid rgba(0, 0, 0, 0.21);
}

header .dropdown_menu.open {
	top: 130%;
	visibility: visible;
	opacity: 1;
}

header .dropdown_menu li {
	display: block;
}

header .dropdown_menu li a {
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

header .dropdown_menu li a:hover {
	color: #086AD8;
	text-decoration: underline;
}

/* Desktop: show nav links inline, hide hamburger */
@media (min-width: 992px) {
	.hamburger_menu { display: none; }

	header .dropdown_wrap { position: static; }

	header .dropdown_menu {
		position: static;
		visibility: visible;
		opacity: 1;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 4px;
		-webkit-box-shadow: none;
		        box-shadow: none;
		border: none;
		background: transparent;
		padding: 0;
		width: auto;
		top: auto;
		right: auto;
		border-radius: 0;
	}

	header .dropdown_menu li { display: inline-block; }

	header .dropdown_menu li a {
		padding: 8px 14px;
		border-radius: 8px;
		font-size: 15px;
		font-weight: 500;
		display: inline-block;
		color: rgba(0, 0, 0, 0.70);
		text-decoration: none;
	}

	header .dropdown_menu li a:hover {
		text-decoration: none;
		background: #F0F5FB;
		color: #086AD8;
	}

	header .dropdown_menu .nav-login a {
		background: #086AD8;
		color: #ffffff;
		margin-left: 8px;
		font-weight: 600;
	}

	header .dropdown_menu .nav-login a:hover {
		background: #065ba8;
		color: #ffffff;
	}
}

/*=====================
   04. home section css
=======================*/
.home_wrapper {
	padding: 50px 0 50px 0;
}

.home_wrapper .row {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.home_wrapper .home_img {
    background: #F0F5FB;
    padding: 15px;
    border-radius: 10px;
}

.home_wrapper .home_img figure {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px 0;
    background: #ffffff;
}

.home_wrapper .home_box {
    max-width: 445px;
}

.home_wrapper .home_box h1 {
    font-size: 55px;
    font-weight: 600;
    line-height: normal;
}

.home_wrapper .home_box p {
    font-size: 23px;
    line-height: 34px;
}

.home_wrapper .home_box .home_btn_wrap .custom_btn {
	margin: 30px 15px 0 0;
}

.home_wrapper .home_box .home_btn_wrap .home_btn2 {
	-webkit-box-shadow: unset !important;
	        box-shadow: unset !important;
	background: transparent !important;
	color: rgba(0, 0, 0, 0.70) !important;
	border: 2px solid rgba(0, 0, 0, 0.18) !important;
}

.home_wrapper .home_box .home_btn_wrap .home_btn2:hover {
	border-color: #086AD8 !important;
	color: #086AD8 !important;
	background: transparent !important;
}

/*========================
   05. service section css
==========================*/
.service_wrapper .service_item {
    background: #FFFFFF;
    border-radius: 10px;
    -webkit-box-shadow: rgba(164, 164, 164, 0.20) 0px 2px 8px 0px;
            box-shadow: rgba(164, 164, 164, 0.20) 0px 2px 8px 0px;
    padding: 25px;
    height: 100%;
    border-top: 3px solid transparent;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.service_wrapper .service_item:hover {
	-webkit-transform: translateY(-5px);
	    -ms-transform: translateY(-5px);
	        transform: translateY(-5px);
	border-top: 3px solid #086AD8;
	-webkit-box-shadow: rgba(8, 106, 216, 0.12) 0px 10px 30px 0px;
	        box-shadow: rgba(8, 106, 216, 0.12) 0px 10px 30px 0px;
}

.service_wrapper .service_item .icon {
    height: 50px;
}

.service_wrapper .service_item h2 {
    margin-left: 20px;
}

.service_wrapper .service_item p {
	 margin-top: 20px;
}

/*=========================
   06. how work section css
===========================*/
.how_work_wrapper .how_work_wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.how_work_wrapper .how_work_item {
	color: rgba(0, 0, 0, 0.80);
	text-decoration: none;
	margin-top: 45px;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
	max-width: 300px;
	width: 100%;
}

.how_work_wrapper .how_work_item:hover span {
	background: #086AD8;
	color: #ffffff;
}

.how_work_wrapper .how_work_item span {
    background: #EEF0F5;
    width: 50px;
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 10px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 20px;
    font-size: 25px;
    font-weight: 700;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.how_work_wrapper .how_work_item h3 {
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.how_work_wrapper .how_work_item:hover h3 {
	color: #086AD8;
}

.how_work_wrapper .how_work_item_desc {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.48);
	margin-top: 10px;
	padding-left: 70px;
	line-height: 20px;
}

@media (max-width: 991px) {
	.how_work_wrapper .how_work_item_desc {
		padding-left: 60px;
	}
}

/*=============================
   07. scan smarter section css
===============================*/
.scan_smarter_wrapper p {
    font-size: 19px;
    line-height: 30px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(0, 0, 0, 0.70);
}

.scan_smarter_stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 48px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.scan_smarter_stat .stat_number {
    font-size: 36px;
    font-weight: 700;
    color: #086AD8;
    line-height: 1;
    display: block;
}

.scan_smarter_stat .stat_label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.48);
    margin-top: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/*=============================
   learn more page css
===============================*/
.learn_more_wrapper p {
    font-size: 18px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.72);
}

.learn_more_content {
    max-width: 800px;
    margin: 0 auto;
}

.learn_more_content h1 {
    line-height: 1.15;
}

/* Section headings inside learn more */
.lm_section_title {
    font-size: 22px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
    margin-top: 48px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F0F5FB;
}

.lm_sub_title {
    font-size: 17px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.78);
    margin-top: 28px;
}

/* Metric list */
.metric_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.metric_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: #F9FBFE;
    border-radius: 10px;
    border-left: 3px solid #086AD8;
}

.metric_key {
    font-weight: 700;
    font-size: 15px;
    color: #086AD8;
    white-space: nowrap;
    min-width: 130px;
    line-height: 24px;
}

.metric_value {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.68);
    line-height: 24px;
}

/* Screenshot frame */
.screenshot_frame {
    margin-top: 28px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.screenshot_frame img {
    display: block;
    width: 100%;
    cursor: pointer;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.screenshot_frame img:hover { opacity: 0.94; }

.screenshot_caption {
    background: #F9FBFE;
    padding: 10px 18px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    font-style: italic;
    line-height: 20px;
}

/* Settings grid */
.settings_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.setting_chip {
    background: #F0F5FB;
    border-radius: 10px;
    padding: 14px 18px;
    border-left: 3px solid #086AD8;
}

.setting_chip .chip_label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.setting_chip .chip_value {
    font-size: 17px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.85);
    margin-top: 4px;
}

/* Activity legend */
.activity_legend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.activity_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: #F9FBFE;
    border-radius: 10px;
    font-size: 16px;
}

.activity_dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.activity_dot.green  { background: #28a745; }
.activity_dot.yellow { background: #ffc107; }
.activity_dot.red    { background: #dc3545; }

/* Callout / highlight box */
.callout_box {
    background: #F0F5FB;
    border-left: 4px solid #086AD8;
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin-top: 28px;
}

.callout_box p {
    font-size: 16px !important;
    line-height: 26px !important;
    color: rgba(0, 0, 0, 0.75) !important;
    margin: 0;
}

/* Legacy image class — kept for JS zoom compat */
.learn_more_image {
    display: none; /* replaced by .screenshot_frame */
}

.image_zoom {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    z-index: 9999;
    border-radius: 8px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
    -webkit-animation: zoomIn 0.3s ease;
            animation: zoomIn 0.3s ease;
}

.zoom_close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #086AD8;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
}

.zoom_close:hover { background: #065ba8; }

@-webkit-keyframes zoomIn {
    from { -webkit-transform: translate(-50%, -50%) scale(0.8); transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    to   { -webkit-transform: translate(-50%, -50%) scale(1);   transform: translate(-50%, -50%) scale(1);   opacity: 1; }
}

@keyframes zoomIn {
    from { -webkit-transform: translate(-50%, -50%) scale(0.8); transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    to   { -webkit-transform: translate(-50%, -50%) scale(1);   transform: translate(-50%, -50%) scale(1);   opacity: 1; }
}

@media (max-width: 575px) {
    .settings_grid { grid-template-columns: 1fr; }
    .metric_key { min-width: 90px; }
}

/*=========================
   08. footer section css
===========================*/
footer {
	padding: 30px 0 0 0;
	background: #ffffff;
}

footer .footer_item2 {
    padding-left: 75px;
}

footer .footer_item .footer_logo {
	display: inline-block;
}

footer .footer_item .footer_logo img {
	max-width: 110px;
}

footer .footer_item .footer_social li {
	display: inline-block;
}

footer .footer_item .footer_social li a {
	margin: 10px 10px 0 0;
	display: inline-block;
}

footer .footer_item .footer_social li a img {
    width: 30px;
}

footer .footer_item2 ul {
	margin-top: 20px !important;
}

footer .footer_item ul {
    list-style: none;
}

footer .footer_item2 ul li a {
    color: #000000;
    display: block;
    line-height: 35px;
    text-decoration: none;
}

footer .footer_item2 ul li a:hover {
	text-decoration: underline;
}

footer .footer_nav {
    padding: 24px 0 4px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

footer .footer_nav a {
    color: rgba(0, 0, 0, 0.55);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

footer .footer_nav a:hover {
    color: #086AD8;
}

footer .copyright_wrap {
    margin-top: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

footer .copyright_wrap p a {
	color: #086AD8;
	text-decoration: none;
}

footer .copyright_wrap p a:hover {
	text-decoration: underline;
}

/*===========================
   09. Responsive section css
=============================*/
@media (max-width: 1199px) { 
	.container {
	    max-width: 100%;
	    padding-right: 15px;
	    padding-left: 15px;
	}

	.head_text02 {
	    font-size: 18px;
	}

	.head_text03 {
	    font-size: 24px;
	}

}

@media (max-width: 991px) {
	header {
	    margin-top: 30px;
	    height: 70px;
	}

	.home_wrapper {
		padding: 30px 0 30px 0;
	}

	.home_wrapper .col_7 {
	    -ms-flex: 0 0 100% !important;
	    -webkit-box-flex: 0 !important;
	            flex: 0 0 100% !important;
	    max-width: 100% !important;
	    -webkit-box-ordinal-group: 3;
	        -ms-flex-order: 2;
	            order: 2;
	}

	.home_wrapper .col_5 {
	    -ms-flex: 0 0 100% !important;
	    -webkit-box-flex: 0 !important;
	            flex: 0 0 100% !important;
	    max-width: 100% !important;
	    -webkit-box-ordinal-group: 2;
	        -ms-flex-order: 1;
	            order: 1;
	}

	.home_wrapper .home_img {
	    max-width: 500px;
	    margin: 0 auto;
	}

	.home_wrapper .home_box {
	    max-width: 100%;
	    margin-top: 40px;
	}

	.home_wrapper .home_box h1 {
	    font-size: 45px;
	}

	.home_wrapper .home_box p {
	    font-size: 18px;
	    line-height: 27px;
	}

	.service_wrapper .col_3 {
	    -ms-flex: 0 0 33.33333333333333%;
	    -webkit-box-flex: 0;
	            flex: 0 0 33.33333333333333%;
	    max-width: 33.33333333333333%;
	}

	.section_padding {
		padding: 60px 0;
	}

	.head_text03 {
      font-size: 20px;
  }

  .how_work_wrapper .how_work_item span {
	    width: 45px;
	    height: 45px;
	    margin-right: 15px;
	    font-size: 20px;
	}

	.how_work_wrapper .how_work_item {
	    max-width: 242px;
	}

    footer .col_3 {
	    -ms-flex: 0 0 33.33333333333333%;
	    -webkit-box-flex: 0;
	            flex: 0 0 33.33333333333333%;
	    max-width: 33.33333333333333%;
	}

	footer .custom_responsive_col {
		-ms-flex: 0 0 100% !important;
	    -webkit-box-flex: 0 !important;
		        flex: 0 0 100% !important;
	    max-width: 100% !important;
	}

	footer .footer_item2 {
	    padding-left: 0;
	}

}

@media (max-width: 767px) {
		.service_wrapper .col_3 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
                flex: 0 0 50%;
        max-width: 50%;
    }

    .home_wrapper .home_img {
        max-width: 400px;
    }

		.home_wrapper .home_box h1 {
        font-size: 40px;
    }

    .home_wrapper .home_box p {
        font-size: 16px;
        line-height: 25px;
    }

    .custom_btn {
	    height: 50px;
	    padding: 0 20px;
	    font-size: 16px;
	}

	.head_text01 {
	    font-size: 30px;
	}

	.how_work_wrapper .how_work_wrap {
    -ms-flex-pack: distribute;
        justify-content: space-around;
	}


}

@media (max-width: 575px) {
	body {
	    font-size: 14px;
	    line-height: 22px;
	}

	.home_wrapper {
		text-align: center;
	}

	.home_wrapper .home_box h1 {
     font-size: 28px;
  }

  .home_wrapper .home_box p {
      font-size: 14px;
      line-height: 22px;
  }

	.service_wrapper .col_3 {
      -ms-flex: 0 0 100%;
      -webkit-box-flex: 0;
              flex: 0 0 100%;
      max-width: 100%;
  }

  .service_wrapper .service_item {
	    max-width: 223px;
	    margin: 0 auto;
	}

	.service_wrapper .service_item .custom_flex {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.service_wrapper .service_item h2 {
		margin: 20px 0 0 0 !important;
	}

	.service_wrapper {
		text-align: center;
	}

	.home_wrapper .home_box .home_btn_wrap .custom_btn {
	    margin: 30px 7px 0 7px;
	}

	.service_wrapper .service_item p {
	    margin-top: 10px;
	}

	.how_work_wrapper {
		text-align: center;
	}

    .how_work_wrapper .how_work_wrap {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
  	}

  	footer {
  		text-align: center;
  	}

  	footer .footer_item .footer_social li a {
	    margin: 10px 5px 0 5px;
	}

}