p,
h1,
h2,
h3,
h4,
ul {
    margin: 0;
}

ul {
    padding: 0;
}

a,
.navbar-toggle {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

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

.back_to_top {
    position: fixed;
    right: 25px;
    bottom: 0;
    z-index: 100;
    opacity: 0;
    background-color: #031e31;
    color: #ffffff !important;
    padding: 9px 13px 10px;
}

.back_to_top.show {
    opacity: 0.5;
    bottom: 59px;
}

.back_to_top.show:hover {
    opacity: 1;
}


/* font-family: 'Lato', sans-serif; */


/* font-family: 'Roboto', sans-serif; */


/* font-family: 'Poppins', sans-serif; */

body {
    background-color: #ffffff;
    color: #000000;
}

.img-responsive {
    margin: 0 auto;
}

a {
    text-decoration: none;
}

.header-full {
    border-top: 3px solid #01426f;
}

.header-row {
    padding: 15px 0;
}

.header-row .logo-div {
    text-align: center;
}

.header-row .logo-div img {
    display: inline-block;
}

.header-row .header-contact {
    display: flex;
    padding-top: 20px;
}

.header-row .header-contact p {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.header-row .header-contact a,
.header-row .header-contact .fa {
    color: #ec7c1a;
}

.header-row .header-contact .fa {
    font-size: 35px;
    float: left;
    padding-right: 12px;
}

.header-row .header-contact a {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 22px;
}

.header-row .header-contact a:hover {
    color: #01426f;
}

.header-row .header-contact.phone-div {
    justify-content: flex-end;
}

.header-row .header-contact.phone-div p {
    text-align: right;
}

.navigation-full {
    background: #01426f;
}

.navbar {
    border: none;
    margin: 0 auto;
    float: none;
    display: flex;
}

#navbar {
    padding: 0;
    margin: 0 auto;
}

.navbar-nav li {
    padding: 10px 22px 12px 22px;
}

.navbar-nav li a {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 19px;
    text-transform: uppercase;
    background-color: transparent;
    padding: 15px 0 10px;
    border-bottom: 1px solid transparent;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.nav li a:focus {
    color: #ffffff;
    background-color: transparent;
}

.navbar-nav li a:hover,
.navbar-nav li .active,
.navbar-nav .active:hover,
.navbar-nav .active:focus {
    background-color: transparent;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.navbar-nav li a:hover::after,
.navbar-nav li .active::after,
.navbar-nav .active:hover::after,
.navbar-nav .active:focus::after {
    position: absolute;
    display: block;
    bottom: -4px;
    left: calc(50% - 4px);
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #ffffff;
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background-color: transparent;
    border: none;
}

.nav .open>a::after,
.nav .open>a:hover::after,
.nav .open>a:focus::after {
    display: none;
}

.dropdown-menu {
    background-color: #01426f;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu>li>a {
    padding: 12px 30px;
    border: none;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>.active,
.dropdown-menu>li>.active:hover {
    background-image: none;
    background-color: #002946;
    border: none;
}

.dropdown-menu>li>a:hover::after,
.dropdown-menu>li>.active::after,
.dropdown-menu>li>.active:hover::after {
    display: none;
}

.slider-full {
    padding: 0;
}

.carousel-inner .item img {
    width: 100%;
}

.carousel-caption {
    font-family: 'Lato', sans-serif;
    right: 10%;
    left: 20%;
    padding: 35px 0;
    bottom: 150px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption h1 {
    font-weight: 700;
    font-size: 46px;
    padding-bottom: 20px;
}

.carousel-caption a {
    display: inline-block;
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4)
}

@-webkit-keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

@keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

.carousel-caption a {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.carousel-caption a:before {
    content: '';
    position: absolute;
    border: #e1e1e1 solid 1px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.carousel-caption a:hover:before,
.carousel-caption a:focus:before,
.carousel-caption a:active:before {
    -webkit-animation-name: hvr-ripple-out;
    animation-name: hvr-ripple-out;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 40px;
    height: 40px;
    margin-top: -10px;
    font-size: 29px;
    border: 1px solid;
}

.glyphicon-chevron-left:before {
    font-family: 'FontAwesome';
    content: "\f104";
}

.glyphicon-chevron-right:before {
    font-family: 'FontAwesome';
    content: "\f105";
}

.container-a-full {
    background: url('../images/container-a-back.png');
    background-size: cover;
}

.container-a-row {
    text-align: center;
    padding: 70px 0 100px;
}

.container-a-row h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 35.24px;
    text-transform: capitalize;
    padding-bottom: 50px;
    color: #292929;
}

.container-a-row .box {
    padding-bottom: 20px;
    background-color: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 5px 0px #6f6f6f;
}

.container-a-row .box img {
    width: 100%;
}

.container-a-row .box h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    color: #ec7c1a;
    padding: 25px 0;
}

.container-a-row .box p {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #242424;
    min-height: 205px;
    padding: 0 15px;
}

.container-a-row .box a {
    font-family: 'Lato', sans-serif;
    font-size: 17.05px;
    color: #ffffff;
    background-color: #01426f;
    border-radius: 15px;
    padding: 10px 35px;
}

.container-a-row .box a:hover {
    background-color: #002946;
}

.factory-automation-a .product{
    font-family: 'Lato', sans-serif;
    list-style: none;
    border-radius: 20px;
    box-shadow: 0 0 5px 0px #6f6f6f;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #ffffff;
}
.factory-automation-a .product img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.factory-automation-a .product h3{
    font-weight: 600;
    font-size: 25px;
    text-align: center;
    padding: 25px 0 15px;
}
.factory-automation-a .product ul,
.factory-automation-a .product ol{
    margin: 20px 0 20px 50px;
}
.factory-automation-a .product ul li,
.factory-automation-a .product ol li{
    text-align: left;
    font-size: 16px;
    padding-bottom: 5px;
}

.container-b-row {
    padding: 40px 0;
}

.container-b-row .left-content .inner-div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: calc(100% - 30px);
    height: 100%;
    top: 0;
    padding: 35px;
    z-index: 10;
}

.container-b-row .left-content h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 46px;
    color: #ffffff;
    padding-bottom: 50px;
    letter-spacing: 2px;
}

.container-b-row .left-content a {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #ffffff;
    padding: 8px 23px;
    border: 2px solid #01426f;
    background-color: #01426f;
    border-radius: 25px;
}

.container-b-row .left-content a:hover {
    background-color: #012742;
}

.container-c-full {
    background: url('../images/container-c-back.png');
    background-repeat: no-repeat;
    background-position: top left;
}

.container-c-row {
    font-family: 'Lato', sans-serif;
    padding: 100px 0 60px;
    color: #000000;
}

.container-c-row > div{
    min-height: 460px;
}

.container-c-row h2 {
    font-family: inherit;
    font-weight: 700;
    font-size: 35.24px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.container-c-row p,
.container-c-row ol li {
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    line-height: 2;
}

.container-c-row p,
.container-c-row ol {
    padding-top: 40px;
}
.container-d-full {
background: url('../images/container-d-back.jpg') center;
background-size: cover;
}
.container-d-row {
    text-align: center;
    padding: 80px 0;
}

.container-d-row .content-div {
    font-family: 'Lato', sans-serif;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffffff;
    display: inline-block;
    padding: 25px 80px 30px;
}

.container-d-row .content-div::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 42px;
    height: 42px;
    margin-top: 10px;
    margin-left: -21px;
    background: url('../images/phone-icon.png');
}

.container-d-row p,
.container-d-row span {
    font-family: inherit;
}

.container-d-row p {
    font-size: 22.86px;
    text-transform: uppercase;
    color: #de9624
}

.container-d-row p:nth-child(1) {
    padding-bottom: 10px;
}

.container-d-row span {
    font-size: 33.06px;
    color: #ffffff;
}

.container-d-row a {
    font-weight: 700;
    font-size: 41px;
    color: #ec7c1a;
}

.container-d-row a:hover {
    color: #ffffff;
}

.container-e-full iframe {
    width: 100%;
    height: 400px;
    margin-bottom: -5px;
}

.footer-full {
    background: url('../images/footer-back.jpg');
    background-size: cover;
}

.footer-row {
    padding-bottom: 50px;
}

.footer-row .block h3 {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15.89px;
    color: #ffffff;
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer-row .block h3::after {
    content: '';
    display: block;
    width: 100%;
    padding-top: 3px;
    border-bottom: 1px solid #ffffff;
}

.footer-row .block p,
.footer-row .block a {
    font-family: 'Lato', sans-serif;
}

.footer-row .block p,
.footer-row .block a,
.footer-row .block .fa {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff
}

.footer-row .block a:hover {
    color: #ec7c1a;
}

.footer-row .block div {
    padding-bottom: 15px;
}

.footer-row .block span {
    float: left;
    padding-right: 10px;
}

.footer-row .block div p {
    display: inline-flex;
}

.footer-row .block:nth-child(2) li,
.footer-row .block:nth-child(3) li {
    list-style: none;
}

.footer-row .block:nth-child(2) li a,
.footer-row .block:nth-child(3) li a {
    text-transform: capitalize;
}

.footer-row .block:nth-child(2) li a:before,
.footer-row .block:nth-child(3) li a:before {
    content: '|';
    display: inline-block;
    padding-right: 10px;
}

.footer-row .block:nth-child(5) {
    text-align: center;
    min-height: 0;
}

.footer-row .block:nth-child(5) h3 {
    padding-top: 20px;
}

.factory-automation-footer .block:nth-child(3){
    padding-left: 60px;
}

/* ------------------------------- copyright start ------------------------------- */

.copyright-full {
    background-color: #ffffff;
}

.copyright-row p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000000;
    text-align: center;
    padding: 15px 0;
}

.copyright-row p,
.copyright-row p span,
.copyright-row p a {
    font-size: 16px;
    letter-spacing: 1px;
}

.copyright-row p span,
.copyright-row p a {
    color: #19547c;
}

.copyright-row p a:hover {
    text-decoration: none;
    color: #000000;
}

.copyright-row p span img {
    margin-top: -5px;
}


/* ------------------------------- copyright end ------------------------------- */


/* ------------------------------- container layout start ------------------------------- */

.container-layout-row {
    font-family: 'Lato', sans-serif;
    padding: 50px 0;
    color: #000000;
    min-height: 350px;
}

.container-layout-row h1 {
    font-weight: 700;
    font-size: 42px;
    padding-bottom: 15px;
}

.container-layout-row h2 {
    font-weight: 600;
    font-size: 36px;
    padding: 25px 0 15px;
}

.container-layout-row h3 {
    font-weight: 600;
    font-size: 25px;
    padding: 25px 0 15px;
}

.container-layout-row p {
    font-weight: 400;
    font-size: 17px;
    padding-top: 12px;
    line-height: 1.5;
}

.container-layout-row ul,
.container-layout-row ol {
    margin: 20px 0 20px 50px;
}

.container-layout-row ul li,
.container-layout-row ol li,
#company-details dt, #company-details dd,
#company-details dd a {
    font-size: 17px;
    line-height: 1.5;
}

.container-layout-row a {
    font-weight: 500;
    font-size: 17px;
    color: #01426f;
}

.container-layout-row a:hover {
    color: #000000;
}

.privacy-details {
    border: 2px solid #c7c7c7;
    padding: 1%;
}

.privacy-policy ul li {
    padding-bottom: 8px;
}

.container-layout-row .product-list{
    columns: 2;
    margin: 0;
}

.container-layout-row .product{
    list-style: none;
    border-radius: 20px;
    box-shadow: 0 0 5px 0px #6f6f6f;
    padding: 15px;
    margin-bottom: 20px;
}

.container-layout-row .product img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.container-layout-row .product h3{
    text-align: center;
}
.container-layout-row .product ul li,
.container-layout-row .product ol li{
    padding-bottom: 5px;
}
.container-layout-row .security-system-row .product{
    min-height: 690px;
}
.container-layout-row .cctv-system-row .product{
    min-height: 475px;
}

/* ------------------------------- gallery start ------------------------------- */

.mainGalleryContainer {
    min-height: 335px;
}

.description {
    margin-top: 105px !important;
    text-align: center !important;
    width: 100% !important;
    float: none !important;
}

.description a {
    font-size: 15px;
}

#main-content-row #main-content .mainContentSection .description h2 {
    font-size: 25px;
}

.title {
    float: none !important;
    height: 100px !important;
    width: 100% !important;
}

.gallerydiv {
    width: 100%
}

.b {
    float: left;
    width: 33.3333% !important;
    margin-left: 0 !important;
    min-height: 370px;
}

.img_thumb {
    height: auto !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center;
}

.img_thumb a:hover {
    color: #585858;
}

.img_thumb a {
    color: #b666d2;
}

.img_thumb img {
    border: 3px solid;
}

.fancybox img {
    padding: 10px 10px 10px 0;
    width: 16%;
}

.title {
    height: 85px !important;
}

.title h2 {
    font-size: 27px !important;
    padding-top: 20px;
}

.b .description {
    padding-top: 10px;
}


/* ------------------------------- gallery end ------------------------------- */

#company-details h2,
#contact-form h2,
#map-container h2 {
    text-transform: capitalize;
    padding: 0
}

#map-container h2 {
    padding-top: 25px;
}

#company-details a {
    font-size: 14px;
    font-weight: 700;
    color: #01426f;
}

#company-details a:hover {
    color: #000000;
}

#company-details a:focus {
    color: #01426f;
}

#contact-form form {
    padding: 20px 0;
}

.list-unstyled {
    padding-left: 15px !important;
    margin: 0 !important;
}

.list-unstyled li {
    font-weight: 400 !important;
    font-size: 13px !important;
    color: #ff0000 !important;
    line-height: 16px !important;
    list-style: none !important;
}


/* ------------------------------- container layout end ------------------------------- */

@media screen and (min-width: 1400px) {
    .carousel-caption {
        padding: 50px;
        bottom: 250px;
        right: 10%;
        left: 33%;
    }
    .carousel-caption h1 {
        font-size: 55px;
    }
    .carousel-caption a {
        font-size: 30px;
        padding: 12px 30px;
    }
    .container-c-full {
        background: url('../images/container-c-back.jpg');
        background-size: cover;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .carousel-caption {
        bottom: 80px;
    }
    .carousel-caption h1 {
        font-size: 33px;
    }
    .container-a-row .box h3 {
        font-size: 19px;
    }
    .container-a-row .box p {
        font-size: 14px;
    }
    .container-a-row .box a {
        font-size: 14px;
        padding: 8px 25px;
    }
    .container-b-row .left-content h2 {
        font-size: 35px;
    }
    .container-c-full {
        background-position-x: -95px;
    }
    .container-c-row > div {
        min-height: 500px;
    }
    .container-c-row p,
    .container-c-row ol {
        padding-top: 25px;
    }
    .container-c-full {
        background-position-x: -95px;
    }
    .container-c-row {
        padding: 50px 0 60px;
    }
    #company-details dt{
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .header-full,
    .navigation-full,
    .slider-full,
    .container-a-full,
    .container-b-full,
    .container-c-full,
    .container-d-full,
    .footer-full,
    .container-layout-full {
        padding-left: 0;
        padding-right: 0;
    }
    .header-row .header-contact .fa {
        font-size: 20px;
        padding-right: 10px;
    }
    .header-row .header-contact a {
        font-size: 20px;
    }
    .navbar-nav li a {
        font-size: 14px;
        padding: 4px 0 8px;
    }
    .dropdown-menu>li>a {
        padding: 10px 20px;
    }
    .navbar-nav li a:hover::after,
    .navbar-nav li .active::after,
    .navbar-nav .active:hover::after,
    .navbar-nav .active:focus::after {
        bottom: -3px;
        width: 6px;
        height: 6px;
    }
    .carousel-caption {
        padding: 25px 0;
        bottom: 25px;
        right: 13%;
    }
    .carousel-caption h1 {
        font-size: 25px;
    }
    .container-a-row {
        padding: 50px 0 60px;
    }
    .container-a-row .box {
        margin-top: 15px;
    }
    .container-a-row .box h3 {
        font-size: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .container-a-row .box p {
        font-weight: 400;
        font-size: 15px;
        min-height: 135px;
    }
    .container-a-row .box a {
        font-size: 15px;
        border-radius: 20px;
        padding: 8px 30px;
    }
    .factory-automation-a .product h3 {
        font-size: 20px;
        padding: 20px 0 10px;
    }
    .factory-automation-a .product ul, .factory-automation-a .product ol {
        margin: 15px 0 20px 30px;
    }
    .container-b-row .left-content .inner-div {
        padding: 20px;
    }
    .container-b-row .left-content h2 {
        font-size: 24px;
        padding-bottom: 35px;
    }
    .container-b-row .left-content a {
        font-size: 14px;
    }
    .container-c-full {
        background: none;
    }
    .container-c-row {
        padding: 30px 0 50px;
    }
    .container-c-row > div {
        min-height: 0;
    }
    .container-c-row h2 {
        text-align: center;
    }
    .container-e-full iframe {
        height: 320px;
    }
    .footer-row {
        padding-bottom: 40px;
    }
    .footer-row .block {
        min-height: 215px
    }
    .footer-row .block h3 {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .factory-automation-footer .block:nth-child(3) {
        padding-left: 15px;
    }
    /* ------------------------------- copyright start ------------------------------- */
    .copyright-row p {
        padding: 15px 0;
    }
    .copyright-row p,
    .copyright-row p span,
    .copyright-row p a {
        font-size: 12px;
    }
    /* ------------------------------- copyright end ------------------------------- */
    /* ------------------------------- container layout start ------------------------------- */
    .container-layout-row {
        padding: 35px 0;
    }
    .container-layout-row h1 {
        font-size: 32px;
    }
    .container-layout-row h2 {
        font-size: 26px;
    }
    .container-layout-row h3 {
        font-size: 22px;
    }
    .container-layout-row p {
        font-size: 16px;
    }
    .container-layout-row a {
        font-size: 16px;
    }
    .container-layout-row ul,
    .container-layout-row ol {
        margin: 15px 0 15px 30px;
    }
    .container-layout-row ul li,
    .container-layout-row ol li,
    #company-details dt, #company-details dd,
    #company-details dd a {
        font-size: 16px;
    }
    .container-layout-row .cctv-system-row .product {
        min-height: 440px;
    }
    #company-details dt{
        width: 100%;
    }
    /* ------------------------------- gallery start ------------------------------- */
    .gallerydiv .b {
        width: 50% !important;
    }
    d/* ------------------------------- gallery end ------------------------------- */
    #map-container iframe {
        height: 350px;
    }
    /* ------------------------------- container layout end ------------------------------- */
}

@media (max-width: 767px) {
    /* ------------------------------- header start ------------------------------- */
    .header-row .header-contact.phone-div {
        justify-content: center;
    }
    .header-row .header-contact.phone-div p {
        text-align: center;
    }
    .navigation-full,
    .navigation-div {
        padding: 0
    }
    .navbar {
        display: block;
    }
    .nav-full {
        position: relative;
        width: 100%;
    }
    .nav-full .container {
        padding: 0 15px;
    }
    #navbar {
        float: none;
        padding: 0 15px;
    }
    .navbar-header {
        background: #01426f;
        border-top: 1px solid #ffffff;
    }
    .navbar-brand {
        color: #ffffff;
    }
    .navbar-brand:hover {
        color: #ffffff;
    }
    .navbar-toggle .icon-bar {
        background-color: #ffffff;
    }
    .navbar-toggle {
        padding: 6px 6px;
    }
    .navbar-toggle.collapsed {
        background-color: transparent;
    }
    .navbar-collapse {
        border-top: 1px solid #ffffff;
    }
    .animated-icon1,
    .animated-icon2,
    .animated-icon3 {
        width: 30px;
        height: 20px;
        position: relative;
        margin: 0px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    .animated-icon1 span,
    .animated-icon2 span,
    .animated-icon3 span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    .animated-icon1 span {
        background: #e65100;
    }
    .animated-icon2 span {
        background: #e3f2fd;
    }
    /* Icon 2*/
    .animated-icon2 span:nth-child(1) {
        top: 0px;
    }
    .animated-icon2 span:nth-child(2),
    .animated-icon2 span:nth-child(3) {
        top: 8px;
    }
    .animated-icon2 span:nth-child(4) {
        top: 16px;
    }
    .animated-icon2.open span:nth-child(1) {
        top: 11px;
        width: 0%;
        left: 50%;
    }
    .animated-icon2.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .animated-icon2.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .animated-icon2.open span:nth-child(4) {
        top: 11px;
        width: 0%;
        left: 50%;
    }
    .navbar-nav {
        margin: 0 -15px;
    }
    .navbar-nav li {
        padding: 0;
        text-align: left;
    }
    .navbar-nav li a {
        line-height: 20px;
        padding: 12px 16px;
        font-size: 16px;
        border: 0;
    }
    .navbar-nav li a,
    .navbar-nav li a:focus {
        color: #ffffff;
        background-color: #01426f;
    }
    .navbar-nav li a:hover,
    .navbar-nav li .active,
    .navbar-nav .active:hover,
    .navbar-nav .active:focus {
        background: #01192b;
        color: #ffffff;
        text-decoration: none;
        border: 0;
    }
    .navbar-nav li a:hover::after, .navbar-nav li .active::after, .navbar-nav .active:hover::after, .navbar-nav .active:focus::after{
        display: none;
    }
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 8px 15px 8px 25px;
    }
    .carousel-caption {
        padding: 10px 0;
        bottom: 15px;
        right: 18%;
        left: 18%;
    }
    .carousel-caption h1 {
        font-size: 15px;
    }
    .carousel-caption a {
        font-size: 11px;
        padding: 6px 10px;
    }
    .container-a-full {
        padding: 0;
    }
    .container-a-row {
        padding: 30px 0 40px;
    }
    .container-a-row h2 {
        font-size: 30px;
        padding-bottom: 10px;
    }
    .container-a-row .box {
        margin-top: 25px;
    }
    .container-a-row .box h3 {
        font-size: 22px;
        padding-top: 20px;
        padding-bottom: 18px;
    }
    .container-a-row .box p {
        font-size: 16px;
        min-height: 0;
        padding-bottom: 15px;
    }
    .container-a-row .box a {
        font-size: 15px;
        padding: 8px 25px;
    }
    .factory-automation-a h2 {
        padding-bottom: 20px;
    }
    .container-b-full {
        padding: 0;
    }
    .container-b-row {
        padding: 0;
    }
    .container-b-row .left-content .inner-div {
        padding: 30px;
    }
    .container-b-row .left-content h2 {
        font-family: 'Lato', sans-serif;
        font-size: 24px;
        color: #ffffff;
        padding-bottom: 35px;
    }
    .container-c-full {
        background: none;
        padding: 0;
    }
    .container-c-row {
        padding: 40px 0 30px;
    }
    .container-c-row > div {
        min-height: 0;
    }
    .container-c-row h2 {
        font-size: 30px;
    }
    .container-c-row p,
    .container-c-row ol {
        padding-top: 20px;
    }
    .container-c-row p,
    .container-c-row ol li {
        font-weight: 400;
        font-size: 15px;
    }
    .container-d-row .content-div {
        padding: 25px 15px 30px;
    }
    .container-d-row p {
        font-size: 18px;
    }
    .container-d-row span {
        font-size: 22px;
    }
    .container-d-row a {
        font-size: 26px;
    }
    .container-e-full iframe {
        height: 70vw;
    }
    .footer-row {
        padding-bottom: 30px;
    }
    .footer-row .block h3 {
        font-size: 15px;
        padding-top: 40px;
        padding-bottom: 15px;
    }
    .footer-row .block:nth-child(5) {
        text-align: left;
    }
    .factory-automation-footer .block:nth-child(3) {
        padding-left: 15px;
    }
    /* ------------------------------- header end ------------------------------- */
    /* ------------------------------- copyright start ------------------------------- */
    .copyright-row p {
        padding: 10px 0;
    }
    .copyright-row p,
    .copyright-row p span,
    .copyright-row p a {
        font-size: 11px;
    }
    .copyright-row p span img {
        margin-top: 0;
    }
    /* ------------------------------- copyright end ------------------------------- */
    /* ------------------------------- container layout start ------------------------------- */
    .container-layout-full {
        padding: 0;
    }
    .container-layout-row {
        padding: 20px 0;
        min-height: 250px;
    }
    .container-layout-row h1 {
        font-size: 24px;
        padding-bottom: 10px;
    }
    .container-layout-row h2 {
        font-size: 20px;
        padding: 12px 0 10px;
    }
    .container-layout-row h3 {
        font-size: 19px;
        padding: 12px 0 10px;
    }
    .container-layout-row p {
        font-size: 14px;
        padding-top: 8px;
    }
    .container-layout-row ul,
    .container-layout-row ol {
        margin: 15px 0 15px 20px;
    }
    .container-layout-row ul li,
    .container-layout-row ol li,
    #company-details dt, #company-details dd,
    #company-details dd a {
        font-size: 14px;
    }
    .container-layout-row a {
        font-size: 14px;
    }
    .container-layout-row .security-system-row .product,
    .container-layout-row .cctv-system-row .product {
        min-height: 0;
    }
    #company-details dt{
        width: 100%;
    }
    /* ------------------------------- gallery start ------------------------------- */
    .gallerydiv .b {
        width: 100% !important;
    }
    .title h2 {
        font-size: 22px !important;
        line-height: 25px !important;
    }
    .fancybox img {
        padding: 5px 5px;
        width: 49%;
    }
    .fancybox-title-float-wrap .child {
        font-size: 9px;
    }
    /* ------------------------------- gallery end ------------------------------- */
    #company-details h2 {
        padding-bottom: 15px;
    }
    #contact-form h2,
    #map-container h2 {
        padding-top: 20px;
        margin: 0;
    }
    #company-details dl {
        margin: 0 0 20px;
    }
    #map-container iframe {
        height: 200px;
    }
    /* ------------------------------- container layout end ------------------------------- */
}