/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global style
4. Animation
5. Heromastersection
6. Navbar
7. Who We Are Section
8. Produt Section
9. Infrastrcture Section
10. Footer Section
**********************************************/


/*** 
====================================================================
	Fonts (CormorantGaramond and FiraSans)
====================================================================
 ***/

@font-face {
    font-family: CormorantGaramond-Light;
    src: url("../fonts/aifonts/CormorantGaramond-Light.ttf");
}

@font-face {
    font-family: CormorantGaramond-Medium;
    src: url("../fonts/aifonts/CormorantGaramond-Medium.ttf");
}

@font-face {
    font-family: CormorantGaramond-SemiBold;
    src: url("../fonts/aifonts/CormorantGaramond-SemiBold.ttf");
}

@font-face {
    font-family: CormorantGaramond-Bold;
    src: url("../fonts/aifonts/CormorantGaramond-Bold.ttf");
}

@font-face {
    font-family: FiraSans-ExtraLight;
    src: url("../fonts/aifonts/FiraSans-ExtraLight.ttf");
}

@font-face {
    font-family: FiraSans-Light;
    src: url("../fonts/aifonts/FiraSans-Light.ttf");
}

@font-face {
    font-family: FiraSans-Regular;
    src: url("../fonts/aifonts/FiraSans-Regular.ttf");
}

@font-face {
    font-family: FiraSans-Medium;
    src: url("../fonts/aifonts/FiraSans-Medium.ttf");
}

@font-face {
    font-family: FiraSans-SemiBold;
    src: url("../fonts/aifonts/FiraSans-SemiBold.ttf");
}


/*** 
====================================================================
	Reset
====================================================================
 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

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


/***
====================================================================
	Global style
====================================================================
 ***/

body {
    font-family: FiraSans-Light;
    font-size: 16px;
}

.text-white {
    color: #ffffff;
}

.text-blue {
    color: #000066;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.button-one {
    border: 2px solid #000065;
    color: #ffffff;
    background-color: #000065;
    padding: 8px 20px;
    cursor: pointer;
    transition: .3s;
}

.button-one:hover {
    background-color: #ffffff;
    border: 2px solid #cc193d;
    color: #cc193d;
}

.button-two {
    border: 1px solid #cc193d;
    color: #ffffff;
    background-color: rgb(204, 25, 61);
    padding: 8px 20px;
    cursor: pointer;
    transition: .3s;
}

.button-two:hover {
    border: 1px solid #cc193d;
    color: #ffffff;
    //background-color: rgba(0, 0, 0, .2);
}


/* animation button */

.banner-link-message {
    // margin: 0 13px 0 16px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 14px 21px 12px;
    cursor: pointer;
    text-decoration: none;
    color: #FFFFFF;
    border: 1px solid #000064;
    background-color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    border-radius: 0;
    min-width: 124px;
    text-align: center;
}

.banner-link-message:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000064;
    border-radius: 100%;
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.banner-link-message:hover:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.banner-link-message:hover {
    color: #cb193d;
    border: 1px solid #cb193d;
}


/*showmorebtn*/

.showmorebtn {
    height: 40px;
    padding: 10px 20px;
}


/***
====================================================================
	animation
====================================================================
 ***/

.master-down-animation::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    left: 5px;
    top: 5px;
    border-radius: 4px;
    background-color: #00ffa5;
}

.master-down-animation::after {
    animation: k 1.3s infinite
}

@keyframes k {
    0% {
        opacity: 1;
        top: 5px
    }
    70% {
        opacity: .75;
        top: 15px
    }
    94% {
        opacity: 0;
        top: 10px
    }
    95% {
        opacity: 0;
        top: 5px
    }
    to {
        opacity: 1;
        top: 5px
    }
}

.down-animation {
    position: absolute;
    height: 10px;
    color: #ffffff;
    bottom: 7.5%;
    width: 10px;
}

.down-animation::before {
    position: absolute;
    animation: k 1.3s infinite;
    left: -7px;
    font-size: 24px;
}

.top-master-arrow {
    background-color: #cc193d;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    display: none;
}


/***
====================================================================
	Heromaster Section
====================================================================
 ***/

.heromastersection {
    //background-image: url("../images/heromasterimg.png");
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 50px 0px 40px;
}

.master-footer-content {
    color: #ffffff;
    position: absolute;
    bottom: 15%;
    width: 100%;
}

.master-heading {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
}

.master-footer-content-desc {}

.master-down-animation {
    height: 40px;
    width: 24px;
    border-radius: 15px;
    margin: 0 auto;
    border: 2px solid #ffffff;
    position: absolute;
    bottom: 100%;
    left: calc(50% - 12px);
    bottom: 8%;
}

.master-down-animation::after {
    position: absolute;
    content: "";
    height: 18%;
    top: 10%;
    width: 2px;
    background-color: #ffffff;
    left: calc(50% - 1px);
}


/*********** slider ************/

.heromastersection {
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0;
    /* background-color: tan; */
}

.masterslider img {
    top: 0;
    height: 100vh;
    width: 100% !important;
    right: 0;
    bottom: 0;
    left: 0;
    position: relative;
}

.master-oeverlay {
    position: absolute;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    padding-top: 50px;
}


/***
====================================================================
	Navbar
====================================================================
 ***/


/*==== master navbar =====*/

.master-navbar .nav-item {
    margin: 20px 10px 0;
}

.master-navbar li.nav-item.dropdown.show a.nav-link {
    background-color: rgba(255, 255, 255, .5);
}

.master-navbar li.nav-item:hover a.nav-link {
    background-color: rgba(255, 255, 255, .5);
}

.master-navbar a.nav-link {
    color: #ffffff;
    font-family: FiraSans-Medium;
    font-weight: 100;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    text-transform: uppercase;
}

.master-navbar .dropdown-menu.show,
.master-navbar .dropdown-menu {
    color: #ffffff;
    border-radius: 0;
    border: none;
    background-color: transparent;
    padding: 0;
    margin-top: 1px;
}

.master-navbar .dropdown-item {
    color: #ffffff;
    background-color: rgba(255, 255, 255, .5);
    //font-family: FiraSans-Medium;
    font-weight: 100;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    margin-bottom: 1px;
}

.master-navbar .dropdown-item:hover {
    background-color: rgba(255, 255, 255, .1);
    color: #ffffff;
}

.master-navbar .dropdown:hover>.dropdown-menu,
.master-navbar .dropdown:hover>.dropdown-menu .dropdown-submenu:hover .dropdown-menu {
    display: block;
}


/*==== common navbar =====*/

.common-navbar {
    position: fixed;
    z-index: 1000;
    width: 100%;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    transition: .3s;
    top: 0;
}

.homepage .common-navbar {
    transform: translate3d(0, -100px, 0);
}

a.nav-link.active {
    color: #cc193d !important;
}

.common-navbar a.nav-link {
    color: #000066;
    font-family: FiraSans-SemiBold;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 10px 25px !important;
    border: 1px solid transparent;
}

.common-navbar .nav-item:hover a.nav-link,
.common-navbar li.nav-item.dropdown.show a.nav-link {
    //color: #fff;
    text-decoration: none;
    border: 1px solid #cc193d;
}

.common-navbar li.nav-item.dropdown.show a.nav-link,
.common-navbar .nav-item.dropdown:hover a.nav-link {
    border-bottom: 1px solid transparent;
}

.common-navbar .dropdown-item:focus,
.common-navbar .dropdown-item:hover,
.common-navbar .dropdown-item.active,
.common-navbar .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #cc193d;
}

.common-navbar .dropdown-menu {
    margin: 0;
    border-radius: 0;
    border: 1px solid #cc193d;
}

.common-navbar .dropdown-item {
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.common-navbar .dropdown:hover>.dropdown-menu,
.common-navbar .dropdown:hover>.dropdown-menu .dropdown-submenu:hover .dropdown-menu {
    display: block;
}


/*sub dropdown menu*/

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}


/***
====================================================================
	who we are section
====================================================================
 ***/

.wearesection {
    background-image: url(../images/we-are-section-bg1.png);
    /* min-height: 100vh; */
    position: relative;
    padding: 10% 0;
}

.wearesectionBox {
    background-color: #ffffff;
    width: 480px;
    padding: 50px;
    position: relative;
    /* right: 10%; */
    /* top: 20%; */
    margin: 0 10% 0 auto;
}

.wearesectionBox-title {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
    color: #000066;
    line-height: 44px;
    margin: 0;
}

.wearesectionBox-desc p {
    padding-top: 15px;
    line-height: 30px;
    margin-bottom: 0;
    font-size: 18px;
}

.top-box-border {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    left: 0;
    transition: .3s;
}

.top-box-border::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 2px;
    background-color: #000066;
    transition: .3s;
}

.wearesectionBox:hover .top-box-border::after {
    top: 10px;
    left: 10px;
}

.top-box-border::before {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    width: 2px;
    height: 100%;
    background-color: #000066;
    transition: .3s;
}

.wearesectionBox:hover .top-box-border::before {
    top: 10px;
    left: 10px;
}


/* .wearesectionBox:hover .top-box-border {
    width: 100%;
    height: 100%;
}

.wearesectionBox:hover .bottom-box-border {
    width: 100%;
    height: 100%;
} */

.bottom-box-border {
    position: absolute;
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
    transition: .3s;
}

.bottom-box-border::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 2px;
    background-color: #000066;
    transition: .3s;
}

.wearesectionBox:hover .bottom-box-border::after {
    bottom: 10px;
    right: 10px;
}

.bottom-box-border::before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 2px;
    height: 100%;
    background-color: #000066;
    transition: .3s;
}

.wearesectionBox:hover .bottom-box-border::before {
    bottom: 10px;
    right: 10px;
}


/***
====================================================================
	produt section
====================================================================
 ***/

.product-section {
    background-image: url("../images/product-section-bg.png");
    background-size: cover;
    position: relative;
    padding: 7% 40px;
}

.title {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
    margin-bottom: 40px;
    line-height: 44px;
}

.product-box-content {
    background-color: #000066;
    width: 41.666667%;
    position: relative;
}

.product-box-content-title {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
    color: #ffdcc6;
    line-height: 44px;
}

.product-box-left {
    padding: 80px 50px;
}

.product-box-desc {
    padding-top: 15px;
    line-height: 30px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 18px;
    font-family: FiraSans-ExtraLight;
}

.product-section-slider1 {
    height: 100%;
    width: 33%;
    /* float: left; */
    bottom: 0;
    top: 0;
    left: 41.666667%;
    background-size: cover;
}

.product-section-slider2 {
    left: 74.666667%;
    top: 0;
    width: 25%;
    right: 0;
    height: 50%;
}

.product-section-slider3 {
    left: 74.666667%;
    top: 50%;
    width: 25%;
    right: 0;
    height: 50%;
}

.product-section-title {
    font-size: 24px;
    font-family: CormorantGaramond-SemiBold;
    color: #ffffff;
}

.product-section-title {
    font-size: 24px;
    font-family: CormorantGaramond-SemiBold;
    color: #ffffff;
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    left: 0;
    padding: 5px 15px;
}

.product-section-title a {
    color: #ffffff;
}


/* product-slider */

.product-section-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
}

.product-section-arrow i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #cc193d;
    color: #ffffff;
    cursor: pointer;
    margin: 0;
    border: none;
    border: 1px solid #b5072a;
}

.product-section-arrow i.disable {
    background-color: #e03d5d !important;
}

.product-section-arrow i:hover {
    background-color: #b5072a;
}

.product-section-arrow i.fa-angle-right {
    float: right;
    border-left: 1px solid #b5072a;
}


/***
====================================================================
	infrastrcture section
====================================================================
 ***/

.infrastrcture-section {
    padding: 60px;
}

.infra-section-title {
    font-size: 32px;
    font-family: CormorantGaramond-SemiBold;
    color: #000066;
}

.infra-section-desc {
    padding-top: 15px;
    line-height: 30px;
    margin-bottom: 0;
}

.top-infra-box {
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid #e4e4e4;
    position: relative;
    transition: .3s;
}

.top-infra-img {
    height: 350px;
    width: 100%;
    /* margin-bottom: 30px; */
    transition: 1.5s;
    transform: scale(1);
}

.botttom-infra-img {
    transition: 1.5s;
    transform: scale(1);
}

.top-infra-box:hover .top-infra-img,
.top-infra-box:hover .botttom-infra-img {
    transform: scale(1.1);
}

.top-infra-box:after {
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    -webkit-transition: all .6s ease-out 0s;
    -o-transition: all .6s ease-out 0s;
    transition: all .6s ease-out 0s;
    transition: .3s;
}

.top-infra-box:hover:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-box-shadow: inset 0 -40px 200px #000;
    box-shadow: inset 0 -40px 200px #000;
    z-index: 1;
    top: 0;
    left: 0;
}

.top-infra-box-btn {
    position: absolute;
    /* top: 0; */
    z-index: 100;
    /* top: calc(50% - 20px); */
    width: 100%;
    text-align: right;
    /* height: 0; */
    bottom: -20%;
    transition: .3s;
}

.top-infra-box:hover .top-infra-box-btn {
    bottom: 0%;
}


/***
====================================================================
	footer section
====================================================================
 ***/

.footer-section {
    background-image: url(../images/footer-bg.png);
    padding: 60px 60px 0;
}

.footer-section {
    background-size: contain;
}

.homepage .footer-section {
    background-size: cover;
}

.homepage .footer-section {
    padding: 160px 60px 0;
    margin-top: -150px;
}


/* footer-certification-section-title */

.footer-certification-section-title {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-certification-section-desc {
    color: #ffffff;
    width: 80%;
    margin: 0 auto;
    line-height: 30px;
    font-size: 18px;
}

.homepage .cer-img {
    margin-top: 100px;
    position: relative;
}

.cer-box {
    position: relative;
}

.homepage .cer-img:hover::after {
    content: "";
    background-color: red;
    transform: scale(2);
}

.homepage .footer-address {
    margin-top: 100px;
}

.footer-address-content {
    line-height: 26px;
    color: #ffffff;
    margin-top: 30px;
}

.footer-address,
.footer-address a {
    color: #ffffff;
    line-height: 30px;
}

.footer-address-title {
    text-transform: uppercase;
    padding-bottom: 20px;
}

.footer-submit {
    background-color: #80809b;
    color: #00002c;
    padding: 5px 20px;
    margin-top: 10px;
    cursor: pointer;
    transition: .3s;
}

.footer-submit:hover {
    background-color: #6a6a88;
    color: #ffffff;
}

.form-control {
    border: 1px solid #80809b;
    color: #80809b;
    border-radius: 0;
    background-color: transparent;
}

.copyright {
    color: #80809b;
    border-top: 1px solid #1a1a43;
    padding: 20px;
    margin-top: 15px;
}


/***
====================================================================
	contaactus page
====================================================================
 ***/

.other-page {
    padding-top: 86px;
}

.contactus-header {
    padding: 60px;
}

.maintitle {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
    padding: 0 0 60px;
    line-height: 44px;
}

.contactus-header-title {
    font-size: 33px;
    color: #cc003d;
    font-family: FiraSans-Regular;
    line-height: 33px;
    padding-bottom: 20px;
}

.border-right {
    border-right: 2px solid #e1e1e1;
}

.contact-social i {
    color: #7c7c7c;
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 10px;
    transition: .3s;
}

.contact-social i:hover {
    color: #cc003d;
}

.contact-address {
    padding-left: 60px;
    position: relative;
    font-family: FiraSans-Regular;
}

.contact-address i {
    position: absolute;
    color: #7c7c7c;
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    margin-right: 5px;
    transition: .3s;
    left: 0;
    top: 0;
    font-size: 18px;
}

.contact-address {
    color: #1e1e1e;
    font-size: 21px;
    margin-left: 10px;
}

.contact-right-address {
    color: #1e1e1e;
    font-size: 21px;
    min-height: 55px;
    padding-left: 60px;
    position: relative;
    line-height: 40px;
    margin-left: 10px;
    font-family: FiraSans-Regular;
}

.contact-right-address i {
    position: absolute;
    color: #7c7c7c;
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    margin-right: 5px;
    transition: .3s;
    left: 0;
    top: 0;
    font-size: 18px;
}


/* contact map section  */

.contact-map-section {
    width: 100%;
    padding: 0px 60px 100px;
    position: relative;
}

.contact-map-bg {
    width: 100%;
    position: absolute;
    height: 350px;
    left: 0;
}

.contact-map-content {
    position: relative;
    top: 60px;
    //min-height: 550px;
    z-index: 100;
}


/* contact form */

.contact-form-section {
    padding: 0 60px 60px;
}

.contact-form-desc {
    color: #1e1e1e;
    font-size: 18px;
    width: 80%;
}

.contact-form {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    padding: 8% 12%;
}

.contact-form .form-control {
    min-height: 45px;
    border: none;
    border-bottom: 2px solid #f5f5f5;
    margin-bottom: 20px;
    padding: 0 15px;
    color: rgba(30, 30, 30, .6);
}

.msgbox {
    border: none;
    border-bottom: 2px solid #f5f5f5;
    width: 100%;
    min-height: 100px;
    padding: 0 15px;
    color: rgba(30, 30, 30, .6);
}

.contact-form-btn {
    min-height: 45px;
    background-color: #11006a;
    color: #ffffff;
    width: 100%;
    border: 1px solid transparent;
    margin-top: 20px;
    cursor: pointer;
    transition: .3s;
}

.contact-form-btn:hover {
    background-color: #cc003d;
}


/***
====================================================================
	About us page
====================================================================
 ***/

.top-banner {
    background-image: url("../images/about-banner-img.png");
    height: 75vh;
    position: relative;
}

.banner-title {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
    line-height: 44px;
    color: #ffffff;
    position: absolute;
    /* padding-top: 40%; */
    width: 100%;
    top: 40%;
}

.banner-title-span {
    position: relative;
}

.banner-title-span::before {
    content: "";
    position: absolute;
    top: -10px;
    width: 60%;
    height: 2px;
    background-color: #ffffff;
    right: 0;
}

.banner-title-span::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 60%;
    height: 2px;
    background-color: #ffffff;
    left: 0;
}

.about-box-section {
    background-image: url("../images/about-box-bg.png");
    min-height: 400px;
    background-size: cover;
    color: #ffffff;
    padding: 80px 70px;
    margin-top: -120px;
}

.about-box-section-title {
    font-size: 44px;
    line-height: 58px;
    font-family: CormorantGaramond-Bold;
}

.about-box-section-desc {
    font-size: 18px;
    margin-top: 30px;
    line-height: 30px;
}


/*********** process-section ***********/

section.process-section-wrapper {
    padding: 60px;
    max-width: 90%;
    margin: 0 auto;
}

.process-section-title {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
    line-height: 44px;
}

.process-section-desc {
    padding: 20px 0;
    line-height: 30px;
}

.process-box-title {
    font-size: 21px;
    font-family: FiraSans-Regular;
    color: #11006a;
    padding: 10px 0;
}

.process-box {
    margin-top: 40px;
}

.process-box img {
    background-color: transparent;
    border-radius: 50%;
    transition: 1s;
}

.process-box img:hover {
    background-color: #cc193d;
}


/**** our design section ****/

.ourdesign-section {
    padding: 60px;
    position: relative;
}

.design-box {
    background-image: url("../images/design-box.png");
    padding: 60px 40px;
    background-size: cover;
    color: #ffffff;
    position: relative;
    z-index: 100;
}

.design-box-title {
    font-size: 44px;
    line-height: 58px;
    font-family: CormorantGaramond-Bold;
}

.design-box-desc {
    line-height: 30px;
    font-size: 18px;
    text-align: justify;
    padding-top: 20px;
}

.ourdesign-section-slider {
    position: absolute;
}

.ourdesign-section-slider {
    position: absolute;
    top: 0;
    right: 0;
    /* width: 100%; */
    bottom: 0;
    width: 70%;
}

.ourdesign-section-slider img {
    width: 100%;
    height: 100%;
}

.ourdesign-section-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
}

.ourdesign-section-arrow i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #11006a;
    color: #ffffff;
    cursor: pointer;
    margin: 0;
    border: none;
    border: 1px solid #b5072a;
}

.ourdesign-section-arrow i.fa-angle-right {
    float: right;
    border-left: 1px solid #b5072a;
}

.ourdesign-section-arrow i:hover {
    background-color: #0a0040;
}

.designslider .owl-prev,
.designslider .owl-next {
    display: none;
}


/******** quality assurance ************/

.quality-assurance-section {
    padding: 60px;
}

.quality-assurance-content-box {
    border: 3px solid #cc003d;
    padding: 60px 60px 100px;
    width: 90%;
    position: relative;
    z-index: 100;
}

.quality-assurance-content-box-title {
    font-size: 44px;
    font-family: CormorantGaramond-SemiBold;
    line-height: 44px;
}

.quality-assurance-content-box-desc {
    line-height: 30px;
    padding-top: 20px;
    font-size: 18px;
}

.quality-assurance-footer {
    position: relative;
    padding-left: 10%;
    margin-top: -30px;
}

.quality-assurance-img2 {
    position: absolute;
    top: -40px;
    right: 0;
    transition: .3s;
}

.quality-assurance-img1 {
    transition: .3s;
}

.quality-assurance-img2:hover {
    z-index: 1100;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.quality-assurance-img1:hover {
    z-index: 1000;
    position: relative;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}


/* greenconcept section */

.greenconcept-section {
    padding: 0 60px;
}

.green-concept-box {
    background-image: url(../images/green-concept-box.png);
    padding: 60px 0;
    background-size: cover;
    color: #ffffff;
    position: relative;
}

.green-concept-box-title {
    font-size: 33px;
    font-family: CormorantGaramond-SemiBold;
    line-height: 33px;
}

.green-concept-box-desc {
    line-height: 36px;
    font-size: 21px;
    font-style: italic;
    width: 80%;
    margin: 30px auto 50px;
}

.aboutus-page .footer-section {
    margin-top: -30px;
    padding: 90px 60px 0;
}


/***
====================================================================
	PRODUCT PAGE
====================================================================
 ***/

.product-master-section {
    min-height: 600px;
    //padding: 50px;
    position: relative;
}

.product-master-section::after {
    position: absolute;
    content: "";
    background-image: url(../images/header-product-bg.png);
    width: 50%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.header-product-bg {
    height: 600px;
}

.product-left-cat,
.product-left-cat li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-left-cat li a {
    color: #e1a3af;
    font-family: FiraSans-Regular;
    font-size: 30px;
    transition: .3s;
}

.product-left-cat.largeList li a {
    color: #e1a3af;
    font-family: FiraSans-Regular;
    font-size: 18px;
    transition: .3s;
    line-height: 20px;
}

.product-left-cat li a:hover,
.product-left-cat li a.active {
    color: #ffffff !important;
}

.product-slider-content-wrapper {
    width: 90%;
    padding-top: 10%;
}

.product-slider-content-title {
    font-size: 50px;
    color: #11006a;
    font-family: CormorantGaramond-Bold;
    line-height: 60px;
    padding-bottom: 15px;
}

.product-slider-content {
    font-size: 18px;
    color: #000000;
}


/* product-gallery-header */

.product-gallery-header {
    background-color: #f4f4f4;
    padding: 50px;
    // font-family: CormorantGaramond-Bold;
}

.product-gallery-header-title {
    font-family: CormorantGaramond-Bold;
    font-size: 30px;
    color: #11006a;
}

.product-ul-list,
.product-ul-list li {
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
}

.product-ul-list li a {
    color: #11006a;
    font-size: 18px;
    line-height: 45px;
    padding: 0 20px;
    font-family: FiraSans-Regular;
}

.product-ul-list li {
    float: left;
}

.product-ul-list li:hover,
.product-ul-list a:hover,
.product-ul-list a {
    border-color: transparent !important;
}

.product-ul-list li:hover,
.product-ul-list a:hover {
    color: #cc003d;
}

.product-ul-list a {
    cursor: pointer;
}

.product-ul-list a.active {
    color: #cc003d;
    background-color: transparent !important;
    border: 1px solid transparent !important;
}

.productPageSlider img {
    width: auto !important;
}


/* product-gallery-box */

.product-gallery-box {
    padding: 50px;
}

.imaga-box {
    padding: 50px 30px;
    margin-bottom: 50px;
    transition: .3s;
    border: 1px solid transparent;
    position: relative;
}

.imaga-box img.img-fluid {
    max-height: 270px;
}

.imaga-box:hover {
    background-image: url("../images/product-hover-bg.png");
    border: 1px solid #e1e1e1;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.imaga-box-hover-icon {
    position: absolute;
    height: 50px;
    bottom: -25px;
    left: calc(50% - 25px);
    transform: scale(0);
    transition: .3s;
}

.imaga-box:hover .imaga-box-hover-icon {
    transform: scale(1);
}


/* infrastructure page */

.infra-section {
    min-height: 90vh;
    background-size: cover;
    position: relative;
    padding: 10%;
    margin-bottom: 10px;
}

.infra-container {
    padding: 0 10px;
}

.infra-section::after {
    bottom: 0;
    top: 0;
    width: 25%;
    position: absolute;
    content: "";
}

.infra-section-1 {
    background-image: url("../images/infra-section-1.png");
}

.infra-section.infra-section-1::after {
    background-image: url(../images/infra-pink-bg.png);
    right: 0;
}

.infra-section-2 {
    background-image: url("../images/infra-section-2.png");
}

.infra-section.infra-section-2::after {
    background-image: url(../images/infra-pink-bg.png);
    left: 0;
}

.infra-section-3 {
    background-image: url("../images/infra-section-3.png");
}

.infra-section.infra-section-3::after {
    background-image: url(../images/infra-pink-bg.png);
    right: 0;
}

.infra-section-4 {
    background-image: url("../images/infra-section-4.png");
}

.infra-section.infra-section-4::after {
    background-image: url(../images/infra-pink-bg.png);
    left: 0;
}

.infra-section-5 {
    background-image: url("../images/infra-section-5.png");
}

.infra-section.infra-section-5::after {
    background-image: url(../images/infra-pink-bg.png);
    right: 0;
}

.infra-section-6 {
    background-image: url("../images/infra-section-6.png");
}

.infra-section.infra-section-6::after {
    background-image: url(../images/infra-pink-bg.png);
    left: 0;
}

.infra-inner-box {
    background-color: #ffffff;
    padding: 60px 50px;
    max-width: 40%;
    width: 40%;
    position: relative;
    z-index: 1;
}

.infra-box-right {
    float: right;
}

.infra-inner-box-title {
    font-size: 38px;
    color: #cc003d;
    font-family: CormorantGaramond-Bold;
}

p.infra-inner-box-desc {
    font-size: 18px;
    color: #000000;
    line-height: 30px;
    padding-top: 15px;
}
.footerbg h4
{
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    padding-top: 10px;
}