/* ==============================
    Miscellaneous Styles
============================== */

body {
    color: #777;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

button:focus,
.btn:focus,
input:focus,
.form-control:focus {
    outline: none;
    box-shadow: none
}

a,
button {
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none
}

a {
    color: #121212;
}

a:hover,
a:focus,
a:active {
    color: #0c0c0c;
    text-decoration: none
}

dl,
ol,
ul,
p {
    margin-bottom: 0
}

::-moz-selection {
    color: #fff;
    background: #74ba22;
}

::selection {
    color: #fff;
    background: #74ba22;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.no-gutter {
    margin-left: 0;
    margin-right: 0;
}

.no-gutter>[class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.gutter-14 {
    margin-left: -7px;
    margin-right: -7px;
}

.gutter-14>[class^="col-"] {
    padding-left: 7px;
    padding-right: 7px;
}

.gutter-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.gutter-20>[class^="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.color-primary {
    color: #74ba22 !important;
}

.font24 {
    font-size: 32px !important;
}

.align-x {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.align-y,
.main-carousel-caption,
.journey-item-icon-wrap:after,
.card-header .btn-link:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.align-both,
.sokp-slider.owl-theme .owl-nav [class*=owl-] span,
.abt-org-icon>div .sprt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* ==============================
    Sprite Icons
============================== */

.sprt {
    background-image: url('../img/sprite.png');
    background-repeat: no-repeat;
    display: inline-block;
}

.sprt-chevron-left {
    background-position: -52px -32px;
    height: 20px;
    width: 11px
}

.sprt-chevron-right {
    background-position: -65px -32px;
    height: 20px;
    width: 11px
}

.sprt-investor-result {
    background-position: 0 -157px;
    height: 64px;
    width: 62px
}

.sprt-investor-report {
    background-position: -67px -157px;
    height: 64px;
    width: 64px
}

.sprt-investor-handshake {
    background-position: 0 -224px;
    height: 64px;
    width: 64px
}

.sprt-investor-info {
    background-position: -67px -224px;
    height: 64px;
    width: 64px
}

.sprt-ftr-call {
    background-position: 0 -26px;
    height: 24px;
    width: 24px
}

.sprt-ftr-mail {
    background-position: -26px -26px;
    height: 18px;
    width: 24px
}

.sprt-ftr-fax {
    background-position: -134px -196px;
    height: 24px;
    width: 24px
}

.sprt-ftr-fb {
    background-position: -53px 0;
    height: 14px;
    width: 8px
}

.sprt-ftr-twtr {
    background-position: -63px 0;
    height: 12px;
    width: 15px
}

.sprt-ftr-insta {
    background-position: -80px 0;
    height: 14px;
    width: 14px
}

.sprt-ftr-linkedin {
    background-position: -96px 0;
    height: 14px;
    width: 14px
}

.sprt-cw-call {
    background-position: 0 0;
    height: 24px;
    width: 24px
}

.sprt-cw-wtsapp {
    background-position: -26px 0;
    height: 24px;
    width: 24px
}

.sprt-abt-location {
    background-position: 0 -54px;
    height: 32px;
    width: 32px
}

.sprt-abt-call {
    background-position: -68px -54px;
    height: 32px;
    width: 32px
}

.sprt-abt-fax {
    background-position: 0 -88px;
    height: 32px;
    width: 32px
}

.sprt-abt-email {
    background-position: -68px -88px;
    height: 32px;
    width: 32px
}

.sprt-abt-cable {
    background-position: 0 -122px;
    height: 24px;
    width: 32px
}

.sprt-abt-website {
    background-position: -68px -122px;
    height: 32px;
    width: 32px
}

.sprt-journey-rocket {
    background-position: -136px 0;
    height: 64px;
    width: 64px
}

.sprt-journey-fax {
    background-position: -136px -66px;
    height: 64px;
    width: 64px
}

.sprt-journey-time {
    background-position: -136px -132px;
    height: 64px;
    width: 64px
}

.sprt-icon-pdf {
    background-position: -79px -32px;
    height: 21px;
    width: 19px
}


/* ==============================
    Site Header
============================== */

.btn-visit-store,
.btn-visit-store:hover,
.btn-visit-store:focus {
    background-color: #121212;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    padding: 12px 27px 15px;
    line-height: 20px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: scale(1);
    -webkit-animation: btn-visit-blinker 1s linear infinite;
    animation: btn-visit-blinker 1s linear infinite;
}

@-webkit-keyframes btn-visit-blinker {
    50% {
        opacity: 0.8;
        transform: scale(1.12);
    }
}

@keyframes btn-visit-blinker {
    50% {
        opacity: 0.8;
        transform: scale(1.12);
    }
}

.site-header {
    padding: 0;
}

.navbar,
.navbar-brand {
    padding: 0
}

.navbar-toggler {
    border-color: #ccc;
    padding: 5px 10px;
    border-radius: 4px;
}

.navbar-toggler span {
    padding-top: 1px;
    background-color: #ccc;
    margin: 5px 0;
    display: block;
    width: 20px;
}

.navbar .navbar-nav>.nav-item>.nav-link {
    padding: 25px 10px;
}

.navbar .navbar-nav>.nav-item>.nav-link:hover,
.navbar .navbar-nav>.nav-item>.nav-link:focus {
    background-color: #74ba22;
    color: #fff;
}

.navbar .dropdown-menu {
    border: none;
    border-top: 3px solid #74ba22;
    background-color: #f5f5f5;
    box-shadow: 0 5px 10px rgba(0 0 0 / 20%);
    border-radius: 0;
    min-width: 250px;
    padding-top: 0;
    padding-bottom: 0;
    top: 69px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s linear;
}

.navbar .dropdown-submenu {
    top: 0;
    left: 100%;
    margin: 0;
}

.navbar .dropdown-menu li {
    border-bottom: 1px solid #d5d5d5;
}

.navbar .dropdown-menu li:last-child {
    border-bottom: 0;
}

.navbar .dropdown-menu li a {
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    display: block
}

.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu li a:focus {
    background-color: #74ba22;
    color: #fff;
}

.site-header.fixed {
    position: fixed;
    background: #fff;
    top: 0;
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
    width: 100%;
    z-index: 2;
}


/* ==============================
    Site Main
============================== */

.hero-section {
    position: relative;
    padding: 50px 0;
    background: #f1f1f1;
}

.main-carousel-caption {
    padding-right: 80px;
}

.main-carousel-caption h2 {
    color: #74ba22;
    font-weight: bold;
    font-size: 32px;
}

.main-carousel-caption p {
    font-size: 15px;
    line-height: 24px;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}

.main-carousel-controls {
    position: relative;
    margin-top: 30px;
}

.main-carousel-controls [class^="carousel-control"] {
    width: 11px;
    height: 20px;
}

.main-carousel-controls .carousel-control-next {
    right: auto;
    left: 35px;
}

.main-carousel-controls [class^="carousel-control"] span {
    position: absolute;
}

.main-carousel-controls .carousel-control-prev-icon {
    background: url('../img/chevron-left.html') no-repeat 0 0;
    left: 0;
}

.main-carousel-controls .carousel-control-next-icon {
    background: url('../img/chevron-right.html') no-repeat 0 0;
    right: 0;
}


/* ==============================
    Site Main
============================== */


/* ===== Homepage ===== */


/* explore skp */

.page-section {
    margin-top: 80px
}

.page-section-alt {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.section-title {
    font-size: 30px;
    color: #121212;
    font-weight: 700;
    letter-spacing: -0.6px;
    text-align: center;
    margin-bottom: 60px;
}

.explore-img {
    border-radius: 0 10px;
}

.explore-content {
    padding: 35px 30px;
    margin-left: -50px;
    background: #fff;
    margin-top: 20px;
    line-height: 26px;
    box-shadow: 0 0 50px rgb(0 0 0 / 20%);
    border-radius: 10px 0;
    position: relative;
}

.rm-link {
    font-weight: 600;
}

.btn-fda,
.btn-fda:hover,
.btn-fda:focus {
    background-color: #74ba22;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    padding: 11px 15px 9px 15px;
    font-weight: 500;
}

.btn-fda:hover,
.btn-fda:focus {
    background-color: #6fb121;
}

.explore-content .btn-fda {
    position: absolute;
    right: 55px;
    bottom: 30px;
}


/* some of our key products */

.page-section-sokp {
    padding-bottom: 60px;
}

.page-section-sokp .section-title {
    text-align: left;
    margin: 20px 0 70px;
}

.fixed-height-slider .owl-stage {
    display: flex;
}

.fixed-height-slider .fixed-height-item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

.fixed-height-slider .product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product-card {
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
}

.product-card .card-img-top {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.product-card .card-body {
    padding: 25px 20px;
}

.product-card .card-title {
    font-size: 15px;
    color: #121212;
    font-weight: 600;
    margin-bottom: 0;
}

.sokp-slider.owl-theme .owl-nav {
    margin-top: 0;
}

.sokp-slider.owl-theme .owl-nav [class*=owl-] {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    color: #121212;
    font-size: 30px;
    margin: 0;
    position: absolute;
    left: -20px;
    top: 35%;
}

.sokp-slider.owl-theme .owl-nav .owl-next {
    left: auto;
    right: -20px;
}

.sokp-slider.owl-theme .owl-nav [class*=owl-] span {
    top: 41%;
}


/* invest with skpmil */

.page-section-invest {
    background: url(../img/invest-bg.jpg) no-repeat center top;
    color: #fff;
    margin-top: 0;
}

.page-section-invest .section-title {
    color: #fff;
}

.invest-col,
.invest-col:hover,
.invest-col:focus {
    text-align: center;
    color: #fff;
    display: block;
}

.invest-col:hover {
    color: #74ba22;
}

.invest-col>.sprt {
    margin-bottom: 20px
}

.invest-col p {
    text-transform: uppercase;
    font-size: 15px;
}


/* latest news & events */

.page-section-ltne-home .section-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 22px
}

.ltne-list>li {
    margin-bottom: 20px;
}

.ltne-list>li:last-child {
    margin-bottom: 0;
}

.ltne-list>li img {
    display: inline-block;
    vertical-align: top;
}

.ltne-content {
    margin-top: 5px;
}

.ltne-title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
}

.ltne-desc {
    font-size: 13px;
}

.link-view-ltne {
    float: right;
    font-weight: 600;
    color: #74ba22;
    margin-top: 60px;
}


/* products used in */

.sop-slider .owl-dots .owl-dot span {
    margin: 0 3px;
    background-color: #121212;
    height: 11px;
    width: 11px;
}

.sop-slider .owl-dots .owl-dot.active span,
.sop-slider .owl-dots .owl-dot:hover span {
    background-color: #74ba22;
}


/* our verticals */

.ov-list>li {
    display: inline-block;
}


/* ===== About Us Page ===== */

.inner-page-top {
    background:#edffd8;
}

.ipt-content {
    color: #fff;
    padding: 85px 0;
}

.ipt-title {
    color: #74ba22;
    font-size: 36px;
    font-weight: 600;
}

.ipt-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 15px 0 0;
}

.ipt-breadcrumb a,
.ipt-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #74ba22;
}

.ipt-breadcrumb .breadcrumb-item.active {
    color: #000;
}

.inner-page-content {
    margin-top: 80px
}

.ipc-title {
    font-size: 22px;
    color: #121212;
    font-weight: 600;
    margin-bottom: 20px;
}

.ip-sub-banner {
    margin-bottom: 40px;
}

.ip-sub-content-block {
    background-color: #f3f3f3;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 40px;
}

.ipc-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 40px;
}

.abt-org-col {
    text-align: center;
    margin-bottom: 40px;
}

.abt-org-icon {
    border: 1px dashed #aaa;
    border-radius: 50%;
    width: 67px;
    height: 67px;
    margin: 0 auto 10px;
    background: #eee;
}

.abt-org-icon>div {
    background-color: #fff;
    border-radius: 50%;
    margin: 5px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    position: relative;
}

.abt-org-col-text>p {
    color: #121212;
    font-weight: 600;
}

.abt-org-col-text>a {
    color: #777;
}

.abt-org-col:hover .abt-org-icon .sprt-abt-location {
    background-position: -34px -54px;
}

.abt-org-col:hover .abt-org-icon .sprt-abt-call {
    background-position: -102px -54px;
}

.abt-org-col:hover .abt-org-icon .sprt-abt-fax {
    background-position: -34px -88px;
}

.abt-org-col:hover .abt-org-icon .sprt-abt-email {
    background-position: -102px -88px;
}

.abt-org-col:hover .abt-org-icon .sprt-abt-cable {
    background-position: -34px -122px;
}

.abt-org-col:hover .abt-org-icon .sprt-abt-website {
    background-position: -102px -122px;
}

.abt-org-col:hover .abt-org-col-text a {
    color: #74ba22;
}

.bod-block .abt-org-icon {
    width: 192px;
    height: 192px;
}

.bod-block .abt-org-icon>a {
    width: 180px;
    height: 180px;
    display: block;
    margin: 5px;
}

.bod-block .abt-org-icon>a>img {
    border-radius: 50%;
}

.ipc-para {
    line-height: 22px;
}

.prdctDtlImg {
    float: left;
    margin-right: 20px;
    width:100%;
}

.prdctDtlPara {
    /*max-height: 287px;*/
    /*overflow-y: auto;*/
}

.strong-dark strong {
    color: #555;
}

.bod-block .abt-org-icon {
    width: 192px;
    height: 192px;
}

.bod-block .abt-org-icon>p {
    width: 180px;
    height: 180px;
}

.journey-item-icon-wrap {
    position: relative;
}

.journey-item-icon-wrap:after {
    content: '';
    width: calc(100% - 100px);
    background: #74ba22;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
}

.journey-item .abt-org-icon {
    height: 100px;
    width: 100px;
    margin: 0;
    position: relative;
}

.journey-item .abt-org-icon>div {
    height: 88px;
    width: 88px;
}

.journey-block .row>[class^="col-"]:last-child .journey-item-icon-wrap:after {
    display: none;
}

.journey-text-wrap {
    margin: 30px 30px 0 0;
}

.journey-text-head {
    font-size: 16px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 15px
}

.journey-text-head .step-no {
    width: 28px;
    height: 28px;
    background-color: #74ba22;
    line-height: 28px;
    font-size: 13px;
    color: #fff;
    margin-right: 8px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}

.journey-text-wrap>h4 {
    font-size: 15px;
    color: #121212;
    font-weight: 600;
}

.journey-text-wrap>p {
    font-size: 13px;
}

.vm-list {
    margin-top: 15px;
}

.vm-list>li {
    margin-bottom: 10px;
}

.vm-list>li:last-child {
    margin-bottom: 0;
}

.os-right-nav .nav-link {
    border-radius: 0;
    border-bottom: 1px dashed #ddd;
    color: #121212;
    display: block;
}

.os-right-subnav .nav-link {
    color: #777;
    font-size: 13px;
    padding: 6px 10px 6px 35px;
}

.locations-row-repeat {
    margin-bottom: 50px;
}

.locations-row-repeat iframe {
    border: 0;
    width: 100%;
    height: 350px;
}

.locations-row-repeat .abt-org-col-text {
    margin-top: 20px
}

.locations-row-repeat .abt-org-col-text>p {
    font-size: 18px;
}

.os-right-nav .nav-link.active,
.os-right-nav .show>.nav-link {
    background-color: transparent;
    color: #74ba22;
    position: relative;
}

.os-right-nav .nav-link.active::before,
.os-right-nav .show>.nav-link::before {
    content: '\00BB';
    margin-right: 5px;
}


/* ===== Products Page ===== */

.inner-page-top.product {
    background: url('../img/ipt-banner-product.jpg') no-repeat center top;
}

.prdct-main-carousel {
    margin-bottom: 10px;
}

.prdct-main-carousel img {
    max-width: 825px;
    max-height: 500px;
}

.prdct-main-carousel .owl-nav {
    margin-top: 0;
    top: 45%;
    position: absolute;
    width: 100%;
}

.prdct-main-carousel.owl-carousel .owl-nav [class*=owl-] {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    height: 50px;
    margin: 0;
    width: 50px;
    position: absolute;
}

.prdct-main-carousel .owl-prev {
    left: 30px
}

.prdct-main-carousel .owl-next {
    right: 30px
}

.prdct-main-carousel-thumbs {
    margin-bottom: 20px;
}

.prdct-main-carousel-thumbs li {
    display: inline-block;
    margin-bottom: 3px;
    opacity: 0.8;
    cursor: pointer;
}

.prdct-main-carousel-thumbs img {
    width: 101px;
}

.prdct-tabs-wrap {
    margin-top: 50px;
}

.prdct-tabs .nav-link {
    padding: 15px 20px;
}

.prdct-tabs .nav-item.show .nav-link,
.prdct-tabs .nav-link.active {
    color: #74ba22;
    font-weight: 600;
}

.prdct-tabs-content {
    border: 1px solid #dee2e6;
    border-top: none;
    padding: 25px;
}

.table-ps thead th {
    background-color: #74ba22;
    color: #fff;
}

.end-usage-col>p {
    font-weight: 600;
    color: #121212;
    margin-top: 10px;
}

.prdSpacification table {
    display: block;
    overflow-x: auto;
}

.prdSpacification table td {
    padding: 0 10px !important;
}


/* ===== Investors Page ===== */

.inner-page-top.investor {
    background: url('../img/ipt-banner-investor.jpg') no-repeat center top;
}

.investors-accordion .card {
    margin-bottom: 10px;
}

.investors-accordion .card-header {
    background-color: #eee;
    border-bottom: 0;
    padding: 0;
}

.investors-accordion .card-header .btn-link {
    color: #121212;
    font-weight: 500;
    display: block;
    font-size: 14px;
    width: 100%;
    text-align: left;
    padding: 13px 20px;
    text-decoration: none;
    position: relative;
}

.investors-accordion .card-header .btn-link:before {
    content: "+";
    font-size: 24px;
    right: 20px;
}

.investors-accordion .card-header.active {
    background-color: #74ba22;
}

.investors-accordion .card-header.active .btn-link {
    color: #fff;
}

.investors-accordion .card-header.active .btn-link:before {
    content: "-";
}

.list-investor-reports>li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #333;
}

.list-investor-reports>li:last-child {
    margin-bottom: 0;
}

.list-investor-reports>li div {
    display: inline-block;
    width: 48.7%;
    margin-right: 1%;
}

.list-investor-reports>li div:last-child {
    margin-right: 0;
    margin-left: 1%;
    text-align: right;
}

.list-investor-reports>li a {
    color: #e2574c;
}

.list-investor-reports>li a .sprt,
.list-investor-policies>li .sprt {
    vertical-align: top;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.list-investor-policies>li {
    margin-bottom: 15px;
}

.list-investor-policies>li a {
    color: #6fb121;
    font-weight: 600;
    /*text-decoration: underline*/
}


/* ===== Trade Opportunity Page ===== */

.inner-page-top.trade-opportunity {
    background: url('../img/ipt-banner-trade-opportunity.jpg') no-repeat center top;
}

.skp-form .form-group {
    margin-bottom: 12px;
}

.skp-form .col-form-label {
    color: #333;
}

.skp-form .form-control {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    padding: 7px 15px 8px;
}

.input-captcha {
    margin-top: 23px;
}

.btn-submit-wrap .btn-fda {
    padding: 14px 35px 12px;
    margin-top: 30px;
    float: right;
}


/* ===== Career Page ===== */

.inner-page-top.career {
    background: url('../img/ipt-banner-career.jpg') no-repeat center top;
}

.apply-now-wrap {
    text-align: right;
}

.apply-now-wrap>label {
    color: #74ba22;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.apply-now-wrap>label:hover {
    color: #6fb121;
}

.apply-now-wrap>input[type="checkbox"] {
    display: none
}

.apply-now-collapse {
    background-color: #f1f1f1;
    border-radius: 0 0 5px 5px;
    margin-top: 10px;
    padding: 15px;
    display: none
}

.apply-now-collapse label {
    color: #121212;
}

.apply-now-collapse .btn-fda {
    margin-top: 7px;
}

.an-checkbox:checked+.apply-now-collapse {
    display: block;
}


/* ===== Sample Request Page ===== */

.sp-radiolist {
    margin-top: 5px;
}

.sp-checklist {
    margin-top: 15px;
    margin-bottom: 15px;
}

.sp-checklist .form-check {
    margin-bottom: 15px;
}


/* ===== Contact Us Page ===== */

.inner-page-top.contact {
    background: url('../img/ipt-banner-contact.jpg') no-repeat center top;
}


/* ===== News & Events Page ===== */

.inner-page-top.news-events {
    background: url('../img/ipt-banner-news-events.jpg') no-repeat center top;
}

.ne-page-wrap .ltne-title {
    font-size: 18px;
}

.ne-page-wrap .ltne-desc {
    font-size: 14px;
}


/* ==============================
    Site Footer
============================== */

.site-footer {
    margin-top: 80px;
    color: #999;
}

.site-footer a {
    color: #999;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #fff;
}

.footer-top {
    background-color: #121212;
    padding: 70px 0;
}

.footer-about {
    line-height: 22px;
    margin: 15px 0 20px;
    font-size: 13px
}

.footer-about a {
    color: #74ba22;
}

.footer-address {
    line-height: 22px;
    font-size: 13px;
}

.footer-address>b {
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.footer-widget-title {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.footer-links-list {
    margin-top: 20px
}

.footer-links-list a {
    font-size: 13px;
    padding: 4px 0;
    display: block;
}

.footer-widget-reach .footer-contact-row {
    margin-bottom: 20px
}

.footer-widget-reach .footer-contact-row .sprt {
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
}

.footer-widget-reach .footer-contact-row a {
    display: inline-block;
    width: 82%;
    font-size: 13px;
}

.footer-social-links {
    margin-top: 40px;
}

.footer-social-links-list {
    margin-top: 15px;
}

.footer-social-links-list li {
    display: inline-block;
    margin-right: 8px;
}

.footer-social-links-list li a:hover .sprt-ftr-fb {
    background-position: -53px -16px;
}

.footer-social-links-list li a:hover .sprt-ftr-twtr {
    background-position: -63px -16px;
}

.footer-social-links-list li a:hover .sprt-ftr-insta {
    background-position: -80px -16px;
}

.footer-social-links-list li a:hover .sprt-ftr-linkedin {
    background-position: -96px -16px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 12px;
    background-color: #0c0c0c;
}

.footer-bottom a {
    color: #fff;
}

.cw-block {
    position: fixed;
    right: 0;
    top: 140px;
    z-index: 1;
}

.cw-block>li a {
    background-color: #121212;
    border-radius: 5px 0 0 5px;
    height: 50px;
    width: 190px;
    margin: 6px 0;
    display: block;
    color: #fff;
    font-weight: 600;
    left: 142px;
    position: relative;
    transition: all 0.1s linear;
}

.cw-block>li a:hover {
    left: 0
}

.cw-block>li:last-child a {
    background-color: #74ba22;
}

.cw-block>li .sprt {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 13px 10px 13px 13px;
    vertical-align: middle;
}

.cw-block>li a p {
    display: inline-block;
    width: 70%;
}


/* ==============================
    Responsiveness
============================== */

@media screen and (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu,
    .navbar .dropdown>.dropdown-menu:hover {
        display: block;
    }
    .navbar .dropdown>.dropdown:hover>.dropdown-submenu,
    .navbar .dropdown>.dropdown>.dropdown-submenu:hover {
        display: block;
    }
}

@media screen and (max-width: 1199px) {
    .navbar .navbar-nav>.nav-item>.nav-link {
        padding: 25px 5px;
    }
    .ltne-content {
        margin-top: 15px;
    }
    .prdctDtlImg {
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .site-header {
        padding: 5px 0
    }
    .navbar-brand>img {
        width: 50px;
    }
    .navbar .navbar-nav {
        border-top: 3px solid #74ba22;
        padding: 10px 0;
        margin-top: 15px;
    }
    .navbar .navbar-nav>.nav-item>.nav-link {
        padding: 8px 10px
    }
    .navbar .navbar-nav>.nav-item>.nav-link:hover,
    .navbar .navbar-nav>.nav-item>.nav-link:focus {
        background-color: transparent;
        color: #222;
    }
    .navbar .navbar-nav>.dropdown.show>.nav-link {
        background-color: #74ba22;
        color: #fff;
    }
    .navbar .dropdown-menu {
        visibility: visible;
        opacity: 1;
        border-top: 0;
        padding: 10px 0;
    }
    .explore-img {
        border-radius: 0;
    }
    .explore-content {
        background: transparent;
        box-shadow: none;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    .explore-content .btn-fda {
        right: 10px;
        bottom: 0;
    }
    .link-view-ltne-news {
        margin-top: 20px;
        margin-bottom: 50px;
    }
    .footer-top {
        padding-bottom: 40px
    }
    .footer-top .footer-widget {
        margin-bottom: 30px
    }
    .ipt-content {
        padding: 35px 0;
    }
    .ipt-title {
        font-size: 26px;
    }
}

@media screen and (max-width: 767px) {
    .main-carousel-caption {
        position: static;
        top: 0;
        transform: none;
        padding-right: 40px;
    }
    .main-carousel-caption h2 {
        font-size: 24px
    }
    .main-carousel-caption p {
        font-size: 14px
    }
    .main-carousel-img {
        margin-top: 50px;
    }
    .explore-content {
        margin-top: 20px;
    }
    .page-section-sokp .section-title {
        margin-bottom: 20px;
    }
    .page-section-sokp .btn-fda {
        margin-top: 0;
    }
    .sokp-slider {
        margin-top: 40px;
    }
    .page-section-invest {
        padding-bottom: 40px;
    }
    .invest-col {
        margin-bottom: 40px
    }
    .ltne-list>li {
        margin-bottom: 40px;
    }
    .ov-list>li {
        margin-bottom: 28px
    }
}

@media screen and (max-width: 575px) {}