/*fonts*/

@font-face {
  font-family: "oswald";
  font-weight: 300;
  src: url(../fonts/oswald/Oswald-Light.ttf);
}
@font-face {
  font-family: "oswald";
  font-weight: 400;
  src: url(../fonts/oswald/Oswald-Regular.ttf);
}
@font-face {
  font-family: "oswald";
  font-weight: 500;
  src: url(../fonts/oswald/Oswald-Medium.ttf);
}
@font-face {
  font-family: "oswald";
  font-weight: 600;
  src: url(../fonts/oswald/Oswald-SemiBold.ttf);
}
@font-face {
  font-family: "oswald";
  font-weight: 700;
  src: url(../fonts/oswald/Oswald-Bold.ttf);
}


/*colors variable*/

:root{
    --color1: #0A1F44;
}

body{
    font-family: oswald;
}

/*Header Css*/

section.header {
    position: fixed;
    background-color: var(--color1);
    width: 100%;
    z-index: 99999;
    top: 0;
}

section.header .my-nav ul.navbar {
    justify-content: center;
    margin-bottom: 0;
}

section.header .my-nav ul.navbar li {
    list-style: none;
    padding: 10px;
    margin: 0px 5px;
}

section.header .my-nav ul.navbar li a {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

/*header mobile css */

@media(max-width:767px){
    
    section.header .my-nav ul.navbar li a {
        font-size: 13px;
    }
}

/*header tab css */

@media(min-width:767px) and (max-width: 992px){
    
}

/*header end*/

/*banner css*/

section.banner-sec {
    height: 350px;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

section.banner-sec .banner-inner {
    max-width: 90%;
    margin: auto;
}

section.banner-sec .main-heading p{
    display: inline-block;
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    background: var(--color1);
    padding: 10px;
}

section.banner-sec .main-cont p {
    display: inline-block;
    color: #000000;
    background: #fff;
    font-weight: 300;
    max-width: 50%;
    font-size: 17px;
    padding: 10px;
}

/*Banner mobile css */

@media(max-width:767px){
    
    
    section.banner-sec {
        height: 200px;
    }
    
    section.banner-sec .main-heading p {
        font-size: 18px;
    }
    
    section.banner-sec .main-cont p {
        font-size: 12px;
        max-width: 90%;
    }
    
}

/*Banner tab css */

@media(min-width:767px) and (max-width: 992px){
    
    section.banner-sec .main-heading p {
        font-size: 24px;
    }
    
    section.banner-sec .main-cont p {
        max-width: 80%;
    }
    
    section.banner-sec {
        height: 200px;
    }
    
}

/*Banner end*/


/*about sec*/

section.about-sec {
    position: relative;
    padding: 30px 0;
}

section.about-sec .about-cont h5 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 50px;
}

section.about-sec .about-cont p {
    font-size: 20px;
    font-weight: 300;
}

section.about-sec .about-cont ul li {
    font-size: 20px;
    font-weight: 300;
    line-height: 35px;
    padding-left: 5px;
    list-style: none !important;
    position: relative;
}

section.about-sec .about-cont ul li:before {
    content: "";
    display: inline-block;
    background-image: url('/images/li-tick.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    margin-right: 8px; 
    vertical-align: middle;
}


/*About mobile css */

@media(max-width:767px){
    
    section.about-sec .about-cont h5 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 20px;
    }
    
    section.about-sec .about-cont p {
        font-size: 12px;
    }
    
    section.about-sec .row.sec {
        flex-direction: column-reverse;
    }
    
    section.about-sec .about-cont ul li {
        font-size: 12px;
        line-height: 20px;
    }
    
    section.about-sec .about-cont ul {
        padding-left: 10px;
    }
    
}

/*About tab css */

@media(min-width:767px) and (max-width: 992px){

    section.banner-sec .main-heading p {
        font-size: 24px;
    }
    
    section.banner-sec .main-cont p {
        max-width: 80%;
    }
    
    section.banner-sec {
        height: 200px;
    }
    
    section.about-sec .about-cont h5 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    section.about-sec .about-cont p {
        font-size: 15px;
    }
    
    section.about-sec .about-cont ul li {
        font-size: 14px;
        line-height: 25px;
    }
    
    section.about-sec .about-cont ul {
        padding-left: 10px;
    }
   
}

/*About end*/


/*product sec*/

section#products {
    position: relative;
    /*padding: 40px 0;*/
}

.product-sec .default-head h5 {
    font-size: 40px;
    text-align: center;
}

.product-sec .default-head p {
    padding: 40px 0;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    max-width: 50%;
    margin: auto;
}

.product-sec .prod-main .prod-desc {
    background: var(--color1);
    color: #fff;
    padding: 10px;
}

.product-sec .prod-main .prod-img {
    max-width: 50%;
    margin: auto;
}

.product-sec .prod-main {
    max-width: 90%;
    margin: auto;
    margin-top: 20px;
}

.product-sec .prod-main .prod-desc p {
    font-weight: 300;
}

section.pro-inner-con {
    position: relative;
    background: var(--color1);
    margin-top: 30px;
}

.pro-inner-con .pro-contact {
    padding: 50px 0;
    text-align: center;
}

.pro-inner-con .con-btn h5 {
    font-size: 35px;
    color: #fff;
    margin-bottom: 30px;
}

.pro-inner-con .con-btn p {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.pro-inner-con .pro-contact .pro-btn {
    padding: 30px;
    border-radius: 40px;
    display: inline-block;
}

.pro-inner-con .pro-contact .pro-btn a {
    background: #fff;
    padding: 15px 70px;
    border-radius: 40px;
    color: var(--color1);
    font-size: 30px;
    font-weight: 700;
}

/*Product mobile css */

@media(max-width:767px){
 
     .product-sec .default-head h5 {
        font-size: 18px;
    }
    
    .product-sec .default-head p {
        font-size: 12px;
        max-width: 100%;
        padding: 10px;
    }
    
    .product-sec .prod-main .prod-desc h5 {
        font-size: 15px;
    }
    
    .product-sec .prod-main .prod-desc p {
        font-size: 12px;
        font-weight: 400;
    }
    
    .pro-inner-con .con-btn h5 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .pro-inner-con .con-btn p {
        font-size: 12px;
    }
    
    .pro-inner-con .pro-contact .pro-btn a {
        font-size: 16px;
        padding: 10px 35px;
    }
    
    .pro-inner-con .pro-contact{
        padding: 20px 0;
    }
    
}

/*Product tab css */

@media(min-width:767px) and (max-width: 992px){
    
    .product-sec .default-head h5 {
        font-size: 24px;
    }
    
    .product-sec .default-head p {
        font-size: 16px;
        max-width: 80%;
        padding: 10px 0 40px;
    }
    
    .product-sec .prod-main .prod-desc h5 {
        font-size: 16px;
    }
    
    .product-sec .prod-main .prod-desc p {
        font-size: 15px;
    }
    
    .pro-inner-con .con-btn h5 {
        font-size: 24px;
    }
    
    .pro-inner-con .con-btn p {
        font-size: 15px;
    }
    
    .pro-inner-con .pro-contact .pro-btn a {
        font-size: 18px;
    }
    
}

/*Product end*/


/*contact css*/

.contact-sec .contact-main {
    padding: 60px 0;
    text-align: center;
    background: #fff;
    max-width: 70%;
    margin: auto;
}

.contact-sec {
    height: 500px;
    align-content: center;
}

.contact-sec .contact-main .con-head h5 {
    font-size: 40px;
    font-weight: 700;
    padding: 40px;
}

.contact-sec .contact-main .contact-cont h5 span {
    font-weight: 600;
}

.contact-sec .contact-main .contact-cont h5 {
    font-size: 20px;
    font-weight: 300;
}

.contact-sec .contact-main .contact-cont h5 a {
    color: #000;
}

.contact-sec .contact-main .contact-cont p {
    font-size: 20px;
    font-weight: 300;
}


/*contact mobile css */

@media(max-width:767px){
 
    .contact-sec .contact-main {
        padding: 20px 10px;
        max-width: 95%;
    }
    
    .contact-sec {
        height: 250px;
    }
    
    .contact-sec .contact-main .con-head h5 {
        font-size: 18px;
        padding: 10px;
    }
    
    .contact-sec .contact-main .contact-cont h5 {
        font-size: 14px;
    }
    
    .contact-sec .contact-main .contact-cont p {
        font-size: 14px;
    }
    
    .contact-sec .contact-main .contact-cont h5 a {
        font-size: 15px;
    }
    
}

/*contact tab css */

@media(min-width:767px) and (max-width: 992px){
    
    .contact-sec {
        height: 300px;
    }
    
    .contact-sec .contact-main {
        padding: 20px;
        max-width: 85%;
    }
    
    .contact-sec .contact-main .con-head h5 {
        padding: 20px;
        font-size: 24px;
    }
    
    .contact-sec .contact-main .contact-cont h5 {
        font-size: 16px;
    }
    
    .contact-sec .contact-main .contact-cont p {
        font-size: 15px;
    }
    
}

/*contact end*/


/*footer css*/

footer.footer-section {
    position: relative;
    padding: 20px;
    background: var(--color1);
}

.footer-botm p.para {
    color: #fff;
    font-weight: 300;
    margin: 0;
}

/*Footer mobile css */

@media(max-width:767px){
 
    .footer-botm p.para {
        font-size: 12px;
        text-align: center;
    }
    
}

/*Footer tab css */

@media(min-width:767px) and (max-width: 992px){
    
    .footer-botm p.para {
        text-align: center;
    }
    
}

/*Footer end*/
