/*!
Theme Name: Aptus Automation Theme
Theme URI: http://underscores.me/
Author: Webyvibz
Author URI: https://www.webyvibz.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aptus-automation-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Aptus Automation Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


* {
    box-sizing: border-box;
}

body,html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	overflow-x:hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #151616;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.60;
    background: #FBFBFB;
}

img {
    display: block;
    max-width: 100%;
}

p {margin: 0 0 30px 0;}

p:last-child {
    margin: 0;
}

a {
    color: #151616;
    text-decoration: none;
	transition:0.5s all;
}

a:hover {
    color: #E31E24;
}

ol,ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
    margin: 0;
    line-height: 1.60;
}

h1, .title {
    font-size: 48px;
}

h2 {
    font-size: 38px; 
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 18px;
}


section {
    padding: 100px 0 ;
    position: relative;
}

section.pt-0 {
    padding-top: 0;
}

section.pb-0 {
    padding-bottom: 0;
}

section.p-0 {
    padding-top: 0;
    padding-bottom: 0;
}



input,textarea,select {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    padding: 15px;
    border:1px solid rgba(18, 57, 100, 0.15);
	width:100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}


.button {
    font-size: 16px;
    padding: 25px 45px;
    line-height: 1.60;
    background: #ffffff;
    text-decoration: none;
    font-weight: 400;
    color: #E31E24;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.button:hover {
	background:#151616;
	color:#fff;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

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

.wrapper {
    width: 69.0625%;
    margin: 0 auto;
    position: relative;
}

.heading-group {
    margin-bottom: 26px;
}
.intro-description {
    margin-bottom: 30px;
}

/* HEADER */
header.site-header {
    padding:0 0 8px 0;
}

.header-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {max-width:180px; height:auto;}

.menu {
    display: flex;
    flex-wrap: wrap;
}

.menu li:not(:last-child) {
    padding-right: 50px;
}

.menu li a {
    font-size: 14px;
    line-height: normal;
    transition: 0.5s all;
}

.sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	background-color: #ffff;
	width: 100%;
	z-index: 99;
	padding:10px 0 !important;
	transition: 0.5s all;
	animation: slideDown 0.55s ease-out;
	box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.2);
}


@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
}

.hamburger-menu {
    cursor: pointer;
    z-index: 99;
    display: none;
    height: 30px;
    padding-top: 15px;
    margin-right: 15px;
}

.bar,
.bar:after,
.bar:before {
    width: 25px;
    height: 2px;
}

.bar {
    position: relative;
    background: #e31e24;
    transition: all 0ms 300ms;
}

.bar.animate {
    background: rgba(255, 255, 255, 0);
}

.bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: #e31e24;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: #e31e24;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* FOOTER */
.site-footer {padding:50px 0;}

.footer-row {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	padding-bottom:27px;
	border-bottom:1px solid rgb(21 22 22 / 12%);
}

.footer-left {
    width: 26.01809954751131%;
}

.footer-right {
    width: 68.25037707390649%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}


.footer-left .site-branding {margin-bottom:32px;}


.footer-descreption p {
	color: #151616;
	text-align: justify;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0.39px;
	margin-bottom:30px;
}

.ft-list-icon {
    display: inline-flex;
    flex-wrap: wrap;
}

.ft-list-icon a {
    font-size: 16px;
    color: #E31E24;
    border-radius: 50% 50% 50% 50%;
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
    border: 1px solid #D2D2D2;
}

.ft-list-icon a:hover {
    background: red;
    color: #fff;
}

.ft-list-icon a:not(:last-child) {
    margin-right: 12px;
}

.footer-block:first-child {width:12.38121546961326%;}

.footer-block:nth-child(2) {width:21.99447513812155%;}

.footer-block:last-child {width:34.70165745856354%;}

.footer-heading h2{
	color: #151616;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	margin-bottom:32px;
}

.footer-block ul li a {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 2.85714;
}

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

.company-information li:not(:last-child){margin-bottom:15px;}


ul.company-information li {display:flex; flex-wrap:wrap;}

.company-information li a {
	display:flex;
	align-items:flex-start;
}

ul.company-information li a:first-child {
    padding-right: 5px;
}

.company-information li a img {margin-right:15px; position:relative; top:10px;}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 34px;
    align-items: center;
}

.footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-bottom ul li:not(:last-child) {
    padding-right: 40px;
}

.footer-bottom ul li a {
    text-decoration: underline;
	font-size:14px;
	line-height:2.57143;
}

.copyright-text p {
    font-size: 14px;
    line-height: 1.71429;
}

/* ABOUT-SECTION */
section.about-section {
    padding: 50px 0 70px 0;
    background: #E31E24;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.about-content {
    width: 78.43137254901961%;
}

.about-content .heading-group {
    margin-bottom: 43px;
}

.about-content .main-heading-text {
    color: #fff;
    text-transform: uppercase;
}

.about-content .intro-description {
    color: #fff;
	margin:0;
}

/* SERVICES-SECTION */
section.services-section {
    padding: 80px 0 120px 0;
}

.services-section .main-heading-text {
    text-transform: uppercase;
}

.services-section .intro-description {
	width:56.86274509803922%;
	margin-left:auto;
	margin-right:auto;
}

.services-row ul {
    display: flex;
    flex-wrap: wrap;
    margin: -25px -15px;
}

.services-row ul li {
    width: 33.33%;
    padding: 0 15px;
    margin: 25px 0;
	position:relative
}

.services-row ul li a {
    position: absolute;
    inset: 0;
}

.services-content {margin-top:20px;}

.services-row .slick-slide img {width:100%;}

/* PRODUCT-SECTION */

section.product-section {background:#F5F5F5;}

.product-section .heading-group {margin-bottom:56px;}

.product-wrap:first-child {padding-bottom:150px;}

ul.product-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

ul.product-row li {
    width: 25%;
    padding: 15px;
}

.product-image ,.product-content {width:100%;}

.product-block {
    background: #fff;
    padding: 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
	position:relative;
	transition:all .3s ease-in-out!important;
}
.product-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,.19), 0 6px 6px rgba(0,0,0,.23);
}
.product-block a {position:absolute; inset:0;}

.product-content {
    margin-top: 20px;
}

.product-image img {
    width: 100%;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 1.1 / 1;
    object-fit: contain;
    object-position: center;
	padding:10px;
}

/* CTA */
section.cta-section {padding-top:50px;}

.cta-img img {
    border-radius: 5px;
}

.cta-img {
    position: relative;
}

.cta-row {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 35px 35px 50px 35px;
    justify-content: space-between;
    align-items: center;
	color:#fff;
}

.cta-content {
    width: 61%;
}

.cta-row .intro-description {margin:0;}

.cta-content .heading-group {
    margin-bottom: 4px;
}

a.scrolltotop {
    background: #E31E24;
    border: 1px solid transparent;
    bottom: 20px;
    color: #fff;
    display: flex;
	align-items:center;
	justify-content:center;
    font-size: 20px;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 99;
}

a.scrolltotop:hover {
    background: #151616;
    border: 1px solid;
}

a.whatsapp-link {
    background: #25d366;
    border-radius: 50%;
    bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    position: fixed;
    left: 20px;
    text-align: center;
    width: 60px;
    z-index: 99;
    transition: 0.5s all;
    font-size: 36px;
}

/* INNER-BANNER */
section.inner-banner {
	padding:70px 0;
	color:#fff;
	text-align:center;
	text-transform:uppercase;
	background:#E31E24;
}

.bread-crumb a {
    color: #ffff;
}

/* ABOUT-US PAGE */
.image-block-row {
	display:flex; 
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	margin:-15px;
}

.image-block-row:nth-child(odd) {
	margin-bottom:50px;
}

.image-block-row:nth-child(even) {
	flex-direction:row-reverse;
}

.left-part ,.right-part {width:50%; margin:15px 0; padding: 0 15px;}

.left-part img {width:100%; height:auto;}

section.authorised-section {background:#F5F5F5;}

.authorised-section .heading-group {margin-bottom:40px;}

.authorised-slide .slick-slide {margin:0 15px;}

.image-block-row ul li {
    margin-bottom: 8px;
	padding-left:30px;
	position:relative;
}

.service-section .image-block-row {
	background:#F5f5f5;
	padding:25px;
	
}

.image-block-row ul li:before {
	content: "";
    width: 20px;
    height: 20px;
    background-image: url(https://aptusautomation.in/wp-content/uploads/2023/12/double-check.png);
    background-position: center;
    position: absolute;
    top: 2px;
    left: 0;
    background-size: 20px;
}

.image-block-row .intro-description {margin:0;}

/* CONTACT-PAGE */
.contact-wrap {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin:-15px;
}

.left-block ,.right-block {width:50%; margin:15px 0; padding:0 15px;}

.grid-row {display:flex; flex-wrap:wrap;}

.grid-col {margin:0 0 20px 0; width:100%;}

input.wpcf7-form-control.wpcf7-submit.has-spinner.button {background:#E31E24; color:#fff; transition:0.5s all; width:auto; cursor:pointer;}

input.wpcf7-form-control.wpcf7-submit.has-spinner.button:hover {background:#000;}

.responsive-iframe {
    padding-top: 100%;
    position: relative;
}
.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.contact-top {margin-bottom:50px;}

.contact-top ul.company-information {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.contact-top ul.company-information li {
    width: 33.33%;
    padding: 15px;
    margin: 0;
}

.contact-top ul.company-information li a {
    flex-direction: column;
    align-items: center;
}

.contact-top ul.company-information li a img {
    position: unset;
    margin-bottom: 20px;
    width: 45px;
    height: 45px;
	margin-right:0;
}

.company-block {background:#f5f5f5; padding:25px; width:100%; text-align:center; height:100%;}


/* Product-page */
ul.product-categories {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

ul.product-categories li {
    width: 33.33%;
    padding: 0 15px;
    margin: 15px 0;
    text-align: center;
}

.product-category-inner {
	padding:15px; 
	border:1px solid #000;
	border-radius:15px; 
    position: relative;
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}

/* .company-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
	opacity:0;
	background: rgb(40 39 39 / 50%);
	transition:all 0.5s ease ;
	border-radius:15px;
}

.company-logo  img {width:70%; height:auto; margin:0 auto;} */


.category-img.company-logo img {
    padding: 10px;
    aspect-ratio: 1.1 / 1;
    width: 100%;
    object-fit: contain;
    object-position: center;
    height: auto;
}

.category-name {
    margin-top: 20px;
	font-size:18px;
}

/* ul.product-categories li:hover .company-logo {opacity:1;} */

.category-img img {
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1.1 / 1;
    object-fit: contain;
	height:auto;
    object-position: center;
}

ul.related-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -15px;
}

ul.related-posts li {
    width: 33.33%;
    padding: 0 15px;
	margin:15px 0;
}

.related-posts-inner {
    border: 1px solid #a7a7a7;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.post-img {padding:15px;}

.post-img img {
    width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: 100%;
    aspect-ratio: 1.1 / 1;
    object-fit: contain;
    object-position: center;
}

.post-heading {
    margin-top: 20px;
	padding:15px;
	background:#c7c5c5;
	width:100%;
}

.post-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.post-left > div {
    background: #F5F5F5;
    padding: 35px;
	height:100%;
}

.post-right, .post-left{
    width: 50%;
	margin:15px 0;
	padding:0 15px;
}

.post-right img {
    width: auto;
    margin: 0 auto;
}

.post-left .button {
    background: #000;
    color: #ffff;
    padding: 10px 20px;
}

.tabbing-list {
    display: flex;
}

.tabbing-box {
    width: 100%;
    text-align: center;
    height: auto;
}


.tabbing-link {
    width: 100%;
    font-size: 18px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    background-color: #f0f0f0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.tabbing-link.active {
    border-bottom-color: #e31e24;
    background-color: #fff;
    color: #e31e24;
    box-shadow: 0px 8px 22px 0px rgba(0, 0, 0, 0.09);
}

.courses-tab {
    padding: 20px 30px;
	background:#f9f9f9;
}

.courses-tab ul {
	list-style:disc;
	padding-left:30px;
}

.courses-tab ul li{
	margin-bottom:10px;
}

.courses-content i {
    color: red;
    margin-right: 15px;
    font-size: 20px;
}

.post-right ul .slick-slide img {
    width: auto;
    height: auto;
}

.post-right ul .slick-dots li button:before {
	font-size:8px;
}

.prod-details-images img {height: auto;width:100%;}

.prod-details-images > div {width: 50%;margin: 10px 0;padding: 0 10px;}


.prod-details-images {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.prod-details-images > div:not(:last-child) {margin-bottom: 20px;}

.grid-col textarea {
    max-height: 180px;
}

.authorised-slide .slick-slide img {
    aspect-ratio: 16 / 8;
    height: auto;
    object-fit: scale-down;
    object-position: center;
}

.error-icon {
    display: table;
    margin: 0 auto;
    padding: 20px;
    color: #ffffff;
    border-radius: 50%;
    background-color: #E31E24;
    font-size: 100px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 30px;
}

.page-title {margin-bottom:20px;}

.page-content a {
	text-decoration:underline;
	color:#E31E24;
}

section.coming-section {
    padding-top: 30px;
}

.coming-wrap {
    padding: 150px 0;
    position: relative;
}

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

.coming-content {
    max-width: 934px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    z-index: 2;
    color: #fff;
}

/* HERO-BANNER */
.bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

span.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #000000 10.05%, #000000 10.06%, rgba(0, 0, 0, 0.71) 61.72%);
}

.banner-row {
    position: relative;
    color: #fff;
    width: 100%;
}

.banner-inner {
    display: flex;
    flex-wrap: wrap;
	align-items:center;
    margin: -15px;
}

.banner-img, .banner-content {
    width: 50%;
    padding: 0 15px;
    margin: 15px 0;
}

.banner-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content .button:hover {
    background: #E31E24;
}