@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Oswald:wght@200;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul li {
    list-style-type: none !important;
}

a {
    text-decoration: none !important;
    text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;

}

input[type="text"],
input[type="password"],
textarea,
select {
    outline: none;
}


/*----- Header -----*/

header {
    position: sticky;
    top: 0;
    background: #ffffff !important;
    z-index: 999;
}

#header {
    background: rgba(0, 0, 0, 0.75);
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}


/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu a {
    display: block;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    padding: 0 4px;
    text-transform: uppercase;
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #074f7c;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #fff;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: -40px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .navbar-nav .drop-down:hover>ul {
    opacity: 1;
    top: 58px;
    visibility: visible;
}

ul.drop-down-submenu {
    display: block;
    position: absolute;
    left: 180px !important;
    top: 0 !important;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    border-top: 0 !important;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.drop-down-menu:hover>.drop-down-submenu {
    opacity: 1;
    top: 0px;
    visibility: visible;
    left: 180px;
    transition: 0.3s;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #2a2a2a;
}

.nav-menu .drop-down ul li:hover {
    background-color: #ececec;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Get Startet Button */

.get-started-btn {
    margin-left: 25px;
    font-family: 'Jost', sans-serif !important;
    color: rgba(7, 79, 124, 255) !important;
    border: 1px solid #f50057;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.5s ease;
}

.get-started-btn:hover {
    background: #f50057;
    color: #ffffff;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
    .mobile-nav {
        padding: 10px 30px !important;
    }
    .saleDiv {
        right: 70px !important;
        display: none;
    }
    .form-input {
        width: 260px !important;
        min-height: 18px !important;
        padding: 7px 19px !important;
        top: -35px !important;
        left: 30px !important;
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 15px;
    z-index: 9998;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    border: 1px solid #ececec;
    padding: .25rem .75rem;
    border-radius: 3px;
}

.mobile-nav-toggle i {
    color: #d3d3d3;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #2a2a2a;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    font-weight: bold;
    text-decoration: none;
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(17, 17, 17, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

.icofont-navigation-menu:before {
    /* content: "\efa2"; */
}

.icofont-close:before {
    content: "\f00d";
}

.saleDiv {
    position: absolute;
    right: 17px;
    top: 10px;
    color: #e32726;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
}

span.strip {
    border-right: 3px solid #074f7c !important;
    margin: 0 4px;
}

.navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: #3b3b3b !important;
    text-transform: uppercase;
    padding: 10px 5px !important;
}

a.nav-link:hover {
    font-weight: bold;
}

a.nav-link:after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: rgba(59, 59, 59, 255);
    display: block;
    margin: auto;
    transition: 0.5s;
}

a.nav-link:hover::after {
    width: 100%;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 35px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0 0;
    background: #fff;
    border-radius: 5px;
    border-top: 3px solid #074f7c;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 0px;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
    border-bottom: 1px solid #ececec;
    padding: 5px 6px;
    border-radius: 5px;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-weight: 500;
    text-transform: none;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: rgba(59, 59, 59, 255) !important;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: rgba(59, 59, 59, 255) !important;
}

.fa.fa-search {
    color: rgba(59, 59, 59, 255) !important;
    margin: 0px 10px;
    cursor: pointer;
}

input:-moz-placeholder {
    color: #999;
}

input::-webkit-input-placeholder {
    color: #999;
}


/* Demo Input */

form#demo-input {
    position: relative;
}

.form-input {
    visibility: hidden;
    width: 370px;
    position: absolute;
    min-height: 48px;
    padding: 11px 19px;
    top: 100%;
    margin-top: 25px;
    right: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #252227;
    background-color: #fff;
    background-image: none;
    border-radius: 6px;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: 1px solid #c5c6cd;
}

form#demo-input:hover .form-input {
    visibility: visible;
}

#demo-input .fa-times {
    display: none;
}

form#demo-2 {
    margin: 0 10px;
}

#demo-input input[type=search]:focus {
    border: 1px solid #e32726;
    outline: none;
}

.btn-outline-success {
    font-family: 'Oswald-Bold', 'AdobeInvisFont', 'MyriadPro-Regular', sans-serif !important;
    color: #074f7c !important;
    border: 1px solid #f50057;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.5s ease;
}

.btn-outline-success:hover {
    background-color: #f50057;
    color: #ffffff !important;
    border: 1px solid #f50057;
}


/*----- Our Division -----*/

section.our-division {
    position: relative;
}

.slider .slick-slide {
    height: 95vh;
}

.banner img {
    opacity: 0.8;
    max-width: 100% !important;
}

.banner-text {
    position: absolute;
    color: #ffffff !important;
    top: 150px;
    margin-left: 15px;
}

.banner-text h2 {
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    font-size: 70px;
    color: rgba(255, 255, 255, 255);
}

.banner-text p {
    width: 460px;
    padding-top: 10px;
    border-top: 1px solid #fff;
    margin-bottom: 0px;
}

.products-cols img {
    width: 244px !important;
    height: 163px;
}

.our-vision {
    width: 200px;
    background: linear-gradient(45deg, #094e78, transparent);
    text-transform: uppercase;
    padding: 6px 10px;
    margin-left: 0px;
    margin-bottom: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 255);
}

.inner-banner {
    padding: 0px .5rem;
    max-width: 1245px;
}

.our-division-banner {
    height: auto;
}

.our-div-col {
    padding: 0px 10px;
    position: absolute;
    /* top: 350px; */
    bottom: 40px;
}

.our-outer-div {
    max-width: 14.28%;
    padding: 0px 5px;
    position: relative;
    cursor: pointer;
}

.our-outer-div:hover {
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}

.our-outer-div h6 {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 255);
    position: absolute;
    top: 90px;
    background: linear-gradient(45deg, black, transparent);
    padding: 5px;
}

img.our-div-colImg {
    width: 100% !important;
    height: 140px;
    border-radius: 5px;
    opacity: 1;
}


/*----- Our Story ------*/

.our-story {
    padding: 100px 20px;
    position: relative;
}

.left-effectImg {
    position: absolute;
    top: -10px;
    left: -10px;
}

.our-story h6 {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    color: rgba(7, 79, 124, 255);
}

.our-story h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}

.our-story p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
}

.read-btn {
    background-color: #074f7c;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 255);
    padding: 5px 12px;
}

.read-btn:hover {
    background-color: #076B7C;
    color: #ffffff;
}

.about-Img {
    position: relative;
}


/* .about-Img .about2-Img {
    width: 219px;
    height: 173px;
    position: absolute;
    top: -70px;
    right: 165px;
    border-radius: 5px;
}

.about-Img .about1-Img {
    width: 371px;
    height: 322px;
    position: absolute;
    z-index: 999;
    border-radius: 5px;
    top: 14px;
    left: 1px;
}

.about-Img .about3-Img {
    width: 313px;
    height: 186px;
    position: absolute;
    right: 10px;
    top: 60px;
} */

.about2-Img {
    width: 170px;
    margin-left: 170px;
}

.about2-Img .img-fluid {
    border-radius: 5px;
}

.about3-Img {
    width: 230px;
    margin-top: -28px;
    margin-left: 260px;
}

.about3-Img .img-fluid {
    border-radius: 5px;
}

.about1-Img {
    margin-top: -175px;
    padding-right: 30px;
    width: 300px;
    z-index: 99999 !important;
}

.about1-Img .img-fluid {
    border-radius: 5px;
}


/*----- Counter Area -----*/

.counter-box {
    padding: 5px 60px;
}

.br-1 {
    border-right: 1px solid #cccccc;
}

.counter-box .fa {
    font-size: 25px;
    color: #074f7c;
}

.counter-box h3,
.counter-p {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(7, 79, 124, 255);
    font-weight: bold;
    margin: 0px;
}

.counter-box .counter-p {
    font-size: 20px;
    font-weight: 600;
}


/*----- Our Milestone Section -----*/









section.our-milestone {
    text-align: center;
    padding: 30px 0px;
    direction: initial;
}

.range-div {
    padding: 0px !important;
    margin-top: 45px !important;
    border-top: 6px solid #074f7c;
    display: flex;
    margin-left: 15px;
    margin-right: 15px;
}

.our-milestone h3 {
   font-family: 'Jost', sans-serif;
    font-size: 42px;
    color: #97792c;
    margin-bottom: 0px;
    margin-top: 50px;
    text-transform: uppercase;
    font-weight: 300;
}

.our-milestone .milestone-range h5 {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    color: rgba(59, 59, 59, 255);
    text-align: left;
}

.our-milestone .year-down {
    margin-top: 80px;
}

.our-milestone .year-up {
    position: absolute;
    top: 0;
    margin: auto;
    width: 90%;
}

.range-div ul.range-100 {
    width: 100%!important;
    display: flex;
    justify-content: space-between;
}

.year-up p {
    color: #074f7c;
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    font-weight: bold;
}

.year-down p {
    color: #074f7c;
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 0px;
    margin-right: 40px;
}

li.range-list {
    position: relative;
    top: -15px;
}

.range-div ul li span.red-dot {
    border: 6px solid red;
    display: inline-block;
    background: red;
    border-radius: 6px;
}

.red-dot-line-up:after {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #074f7c;
    position: absolute;
    top: -25px;
}

.red-dot-line-down:after {
    content: "";
    width: 0.8px;
    height: 40px;
    background-color: #074f7c;
    position: absolute;
    top: 18px;
}


/*----- UTC Section -----*/

section.UTS-section {
    text-align: center;
    padding: 20px 5px;
    background-color: #ececec;
}

.UTS-section h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}

.UTS-section h4 {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    color: rgba(59, 59, 59, 255);
}

.UTS-section .UTS-p {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    padding-left: 10px;
}


/*----- Testimonial Section -----*/

section.testimonial-section {
    text-align: center;
    padding: 30px 0px;
}

.testimonial-section h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}

.testimonial-bg {
    background-color: #074f7c;
    padding: 50px 10px;
}

.testimonial-col {
    background-color: #ffffff;
    text-align: center;
    max-width: 30% !important;
    margin: 0px 10px;
    border-radius: 5px;
    padding: 25px 30px;
}

.testimonial-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    color: rgba(59, 59, 59, 255);
}

.testimonial-p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
}

.testimonial-bottom img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.testimonial-bottom span {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    color: rgba(59, 59, 59, 255);
    padding-top: 3px;
    padding-left: 5px;
}


/*----- Our Brands -----*/

.slide {
    overflow-x: hidden;
}

.brand-img {
    cursor: pointer;
}

.brand-img:hover {
    transform: scale(1.3);
    transition: all 0.4s ease-in-out;
}

section.our-brand {
    text-align: center;
    padding: 20px 0px;
}

.our-brand h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}


/*----- News Section -----*/

.news-section {
    text-align: center;
    padding: 20px 30px;
}

.news-section h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}

.news-imgbg {
    height: 195px !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    position: relative;
}

.news-bgtext {
    position: absolute;
    left: 52%;
    top: 100%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 330px;
    border-radius: 5px;
    text-align: left;
    padding: 5px 10px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}

.news-bgtext p {
    margin-bottom: 3px;
}

.news-img {
    margin-bottom: 10px;
    height: 260px;
    position: relative;
}

.news-img img {
    border-radius: 5px;
}

.news-text-box {
    position: absolute;
    top: 150px;
    background: #ffffffff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    left: 50px;
    border-radius: 5px;
    width: 320px;
    text-align: left;
    padding: 0px 10px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(59, 59, 59, 255);
}

p.news-date {
    margin-bottom: 5px;
    font-size: 14px !important;
    margin-top: 5px;
}

.btn.readNews {
    padding: 2px 0;
    color: #e32726;
    display: none;
}

.news-bgtext:hover .news-date {
    display: none;
}

.news-bgtext:hover .readNews {
    display: block;
}


/*----- About HTML CSS -----*/

.about-bg {
    background-color: #074f7c;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 20px 30px;
}

.about-text {
    background-color: #ffffff;
    padding: 30px 30px;
    border-radius: 5px;
}

.about-text h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}

.about-text p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    margin: 0px !important;
}

button.btn.btn-about {
    background: #e32726;
    margin-top: 20px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 255);
}


/*----- Iconic Brand -----*/

section.iconi-brand {
    text-align: center;
    padding: 30px 20px;
}

.iconi-brand h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}

.iconic-p p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    text-align: left;
}

.iconic-bg {
    max-height: 380px;
    width: 100%;
    opacity: 0.8;
    color: #ffffff;
    text-align: left;
    padding: 120px 20px;
}

.iconic-brand-bg-1 {
    background-image: url(../images/About/vision-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.iconic-brand-bg-2 {
    background-image: url(../images/About/mission-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.iconic-brand-bg-3 {
    background-image: url(../images/About/values-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.iconic-brand-text h4 {
    font-family: 'Jost', sans-serif;
    font-size: 30px;
    width: 100px;
}

.iconic-brand-text p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    padding: 0 25px;
}

.iconic-bg:hover img {
    transform: scale(1.3);
    transition: all 0.4s ease-in-out;
}

.iconic-bg:hover h4 {
    margin-left: 10px;
    transform: scale(1.3);
    transition: all 0.4s ease-in-out;
}


/*----- Our-Partners -----*/

section.our-partners {
    text-align: center;
}

.our-partners h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
    margin-bottom: 20px;
}


/*----- Our Team -----*/

section.our-team {
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
}

.box-our-team {
    margin-right: 2px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px 10px;
    text-align: center;
}

.our-team h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
    margin-bottom: 20px;
}

.box-our-team h6 {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    color: rgba(7, 79, 124, 255);
    margin-top: 10px;
}

.box-our-team p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    margin-bottom: 5px;
}

.box-our-team:hover img {
    transform: scale(1.2);
    transition: all 0.4s ease-in-out;
}


/*----- footer -----*/

footer#footer {
    position: relative;
}

.right-effectImg {
    position: absolute;
    top: -219px;
    right: 0px;
}

.footer-top {
    padding: 30px 20px;
    background-color: #ececec;
}

.footer-links p span {
    color: #074f7c;
}

.footer-links ul {
    list-style-type: none;
}

.footer-links ul li {
    display: inline-block;
}

.footer-links h6 {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 18px;
    color: #074f7c;
    margin: 0px 0 .5rem 0.3rem;
}

/*.footer-links p,
ul li a {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    color: rgba(112, 112, 112, 255);
    margin: 0px 5px;
}
*/
.upper-icon {
    position: absolute;
    right: 50px;
    top: 10px;
    font-size: 20px;
    color: #e32726;
    border: 1px solid #e32726;
    border-radius: 50%;
    padding: 1px 9px;
    cursor: pointer;
}

.footer-bottom {
    padding: 20px 20px;
    background-image: url(../images/Home/footer-bg.png);
    background-position: center;
    background-size: cover;
    line-height: 1.2;
}

.copyright ul {
    list-style-type: none;
    margin-bottom: 0px;
}

.copyright ul li {
    display: inline-block;
}

.copyright ul li a {
    margin: 0px 5px;
}

.copyright ul li a i {
    color: #074f7c;
    background-color: #ececec;
    padding: 7px 8px;
    border-radius: 25px;
    height: 30px;
    width: 30px;
}

.credits {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(59, 59, 59, 255);
    background-color: #ececec;
    border-radius: 5px;
    padding: 5px 8px;
}

input.e-address {
    width: 95%;
    padding: 6px 0px;
    border: 1px solid #d3d3d3;
    text-indent: 15px;
    border-radius: 20px;
    margin-top: 15px;
    line-height: 1px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
}

button.btn.btn-default {
    margin-left: -50px;
    margin-top: -7px;
    border-left: 1px solid #d3d3d3;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    color: rgba(7, 79, 124, 255);
}


/*--- Contact Section ---*/

section.get-touch {
    padding: 50px 0px;
    margin-bottom: 20px;
}

.get-social ul {
    list-style-type: none;
}

.get-social ul li {
    display: inline-block;
}

.get-touch-right {
    padding: 0px 40px;
}

.get-touch-right h6 {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 18px;
    color: rgba(59, 59, 59, 255);
}

.border-bottom-get {
    border-bottom: 1px solid #ececec;
    padding: 20px 0px;
}

.border-bottom-get a {
    margin-left: 10px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
}

.get-touch-left {
    border-right: 1px solid #ececec;
}

.get-touch-left h3 {
    font-family: 'Jost', sans-serif;
    color: rgba(59, 59, 59, 255);
    text-align: center;
    font-size: 38px;
}

.get-touch-left p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    max-width: 600px;
    margin: auto;
}

input.get-touch-input {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    width: 95%;
    background-color: #ececec;
    border: 1px solid #ececec;
    padding: 6px 8px;
    border-radius: 5px;
    text-indent: 5px;
    margin-bottom: 10px;
}

textarea.get-touch-input {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    width: 95%;
    background-color: #ececec;
    border: 1px solid #ececec;
    padding: 6px 8px;
    border-radius: 5px;
    text-indent: 5px;
    height: 100px;
    margin-bottom: 5px;
}

.get-touch-btn {
    background-color: #074f7c !important;
    color: #ffffff !important;
}

.get-touch-btn:hover {
    background-color: #053d61 !important;
}


/*----- Electric-Appliances HTML CSS -----*/

.electric-appliances-bg {
    background-image: url(../images/Electric/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 260px;
    padding-top: 186px;
}

.electric-appliances-bg h3 {
    background: linear-gradient(45deg, #0d507a, transparent);
    width: 270px;
    padding: 5px 5px;
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(255, 255, 255, 255);
}

.appliances-text {
    padding: 30px 0px;
}

.appliances-col {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    padding: 0px 15px;
}

.electric-contact {
    padding: 0px 15px;
}

.electric-contact-bg {
    background-color: #074f7c;
    padding: 40px 0;
}

.Dep-Img {
    background-color: #ffffff !important;
    height: 100%;
    width: 100%;
}

.electric-contact-col {
    text-align: center;
    align-self: center;
    margin-top: .5rem !important;
}

.electric-contact-col h5 {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 255);
}

.electric-contact-col p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 255);
}

.electrical-bran {
    text-align: center;
    padding: 30px 15px;
}

.electrical-bran h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}


/*------ Diversity & Inclusion -----*/

section.diversity-inclusion {
    padding: 30px 15px;
    text-align: center;
    background-color: #ececec;
}

section.diversity-inclusion h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(59, 59, 59, 255);
}

section.diversity-inclusion p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    margin-top: 1.7rem;
}

.showroom {
    text-align: center;
    padding: 90px 0px;
    height: 245px;
}

.showroom-bg {
    background: url(../images/Electric/store-bg.jpg), rgba(0, 0, 0, 0.5);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.showroom .visit-btn {
    font-family: 'Jost', sans-serif;
    font-size: 30px;
    color: rgba(255, 255, 255, 255);
    background: #074f7c;
    border-radius: 3px;
    padding: .675rem 1rem;
}

.showroom .visit-btn span {
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 255);
    margin: 0px 17px;
    padding: 5px 18px;
    border-radius: 5px;
}


/*----- Whistleblower Report Form -----*/

section.whistleblower-form {
    text-align: center;
    padding: 20px 70px;
    margin-bottom: 25px;
}

.whistleblower-form h3 {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    color: rgba(7, 79, 124, 255);
}

.whistleblower-form p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
}

.report-form {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px 25px;
    margin-top: 3.5rem;
    margin-bottom: 85px;
}

.report-section {
    margin-top: 1.5rem;
}

.report-section label {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    color: rgba(112, 112, 112, 255);
    text-align: left;
    width: 100%;
}

.report-section h4 {
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    color: rgba(7, 79, 124, 255);
}

.report-section h4 span {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 20px;
    color: rgba(112, 112, 112, 255);
    margin-left: 10px;
}

.report-section p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 20px;
    color: rgba(112, 112, 112, 255);
}

input.report-text {
    font-family: 'Didact Gothic', sans-serif;
    width: 100%;
    text-indent: 10px;
    padding: 10px 7px;
    border-radius: 3px;
    background: #ececec;
    border: #ececec;
    color: #b9b9b9;
    font-size: 16px !important;
}

input.report-text:focus {
    color: #3b3b3b;
}

::-webkit-file-upload-button {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(112, 112, 112, 255);
    border: #cbcbcb;
    cursor: pointer;
    padding: 5px 25px;
    border-radius: 5px;
}

.file-type {
    font-size: 12px !important;
    color: rgba(227, 39, 38, 255) !important;
    font-weight: bold;
}

.btn-form {
    text-align: center;
    margin: 15px 0px;
}

.btn-form button {
    background: #074f7c;
    padding: 10px 35px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 255);
    border: #074f7c;
    border-radius: 5px;
}


/* -----slick CSS -----*/

.slick-prev:before,
.slick-next:before {
    font-family: 'Didact Gothic';
    font-size: 57px;
    font-weight: bold;
    margin-left: -50px;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-next.slick-arrow::after {
    font-family: fontawesome;
    content: "\f178";
    color: #e32726;
    padding-left: 10px;
    font-size: 20px;
    margin-left: -10px;
}

.slick-prev.slick-arrow::before {
    font-family: fontawesome;
    content: "\f177";
    color: #e32726;
    padding-left: 10px;
    font-size: 20px;
    margin-left: 10px;
}

.slick-prev {
    left: 0px;
}

.slick-next {
    right: 20px;
    top: 43%;
}

.demo .slick-next.slick-arrow::after {
    display: none;
}

.rtl{
  direction: rtl;
}
.rtl-none{
  direction:ltr ;
}