@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

.navbar-main {
    transition: 500ms ease;
    background: #228eca;
}

.navbar-main .nav-link {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.navbar-main.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    /* height: 50px; */
}

.navbar-main.scrolled .nav-link {
    color: #228eca;
}

.navbar {
    padding: 5px 16px;
    height: 70px;
}

.navbar-brand {
    width: 180px;
    height: 60px;
    position: relative;
    margin-right: 38px;
    /* transition: 500ms ease; */
}

/* .navbar-main.scrolled .navbar-brand{
      width: 120px;
  } */
.navbar-brand img {
    position: absolute;
    top: 10px;
    transition: all 200ms ease-in-out;
}

.navbar-main.scrolled .navbar-brand img {
    top: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 22px;
    padding-right: 22px;
}

.navbar-main .dropdown-menu {
    top: 50px;
    padding: 0;
    width: auto;
    min-width: 330px;
}

.navbar-main .dropdown-item {
    background-color: #277339;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
}

.navbar-main .dropdown-menu li {
    position: relative;
}

.navbar-main .dropdown-menu li::after {
    content: '';
    background-image: url(../img/dd-divider.png);
    width: 100%;
    height: 1px;
    display: inline-block;
    position: absolute;
    top: 50px;
    background-repeat: no-repeat;
    left: 0;
}

.navbar-main .dropdown-menu li:last-child::after {
    background-image: none;
}

.navbar-main .dropdown-menu li a:hover,
.navbar-main .dropdown-menu li a.active {
    background-color: #89A83E;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>a:after {
    content: "\f0da";
    float: right;
    border: none;
    font-family: 'FontAwesome';
    margin-top: 2px;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0px;
    margin-left: 0px;
}

.nav-item.active a.nav-link {
    background-color: #FFF200;
    color: #1C75BC;
}

/* Hero Area */

.hero-area {
    margin-top: 80px;
    position: relative;
}

.hero-content {
    position: absolute;
    height: 100%;
    width: 100%;
}

.hero-content-in {
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content-sub {
    width: auto;
}

.hero-content-sub h1 {
    font-size: 32px;
    background-color: #1C75BC;
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
    line-height: 35px;
    margin-bottom: 0;
    padding: 20px 25px;
    -moz-transform: skew(-12deg, 0deg);
    -webkit-transform: skew(-12deg, 0deg);
    -o-transform: skew(-12deg, 0deg);
    -ms-transform: skew(-12deg, 0deg);
    transform: skew(-12deg, 0deg);
}

.hero-content-sub h1 span {
    color: #FFF200;
}

.hero-content-sub h1 div {
    -moz-transform: skew(12deg, 0deg);
    -webkit-transform: skew(12deg, 0deg);
    -o-transform: skew(12deg, 0deg);
    -ms-transform: skew(12deg, 0deg);
    transform: skew(12deg, 0deg);
}

.hero-content-sub p {
    font-size: 20px;
    color: #006838;
    font-weight: 600;
    font-style: italic;
    line-height: 24px;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 15px 20px;
    display: inline-block;
    -moz-transform: skew(-12deg, 0deg);
    -webkit-transform: skew(-12deg, 0deg);
    -o-transform: skew(-12deg, 0deg);
    -ms-transform: skew(-12deg, 0deg);
    transform: skew(-12deg, 0deg);
    margin-top: -5px;
}

.hero-content-sub p span {
    -moz-transform: skew(12deg, 0deg);
    -webkit-transform: skew(12deg, 0deg);
    -o-transform: skew(12deg, 0deg);
    -ms-transform: skew(12deg, 0deg);
    transform: skew(12deg, 0deg);
    display: block;
}

.btn-primary {
    background-color: #1C75BC;
    font-weight: 700;
    color: #ffffff;
    font-size: 12px;
    padding: 10px 28px;
}

.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus {
    background-color: #165E8E;
    border-color: transparent;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: #165E8E;
    border-color: transparent;
    box-shadow: none;
}

.carousel-control-prev-icon {
    background-image: url(../img/banner-arrow-left.png);
}

.carousel-control-next-icon {
    background-image: url(../img/banner-arrow-right.png);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 52px;
    height: 52px;
}

.banner-fg {
    position: absolute;
    width: 100%;
    bottom: -1px;
}

/* Who we are */
.who-we-are::before {
    content: '';
    background-color: #228eca;
    height: 100%;
    display: inline-block;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.who-we-are {
background-color: #ffffff;
    background-image: url(../img/who-we-are-bg.png);
    background-repeat: no-repeat;
    min-height: 600px;
    background-position: right bottom;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 0 0 0 255px;
    position: relative;
}

.btn-outline-primary {
    color: #58595B;
    border-color: #1C75BC;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 28px;
    border-width: 2px;
}

.wbv-img {
    width: 22px;
    margin-right: 5px;
}

.wwa-btns {
    margin-top: 25px;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle,
.btn-outline-primary:hover {
    color: #58595B;
    background-color: #ffffff;
    border-color: #1C75BC;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0;
}

.who-we-are h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.who-we-are h5 span {
    background-color: #228eca;
    padding: 6px 16px;
    border-radius: 5px;
    display: inline-block;
}

.who-we-are h2 {
    color: #1C75BC;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
}

.oragne-txt {
    color: #F15A29;
}

.green-txt {
    color: #006838;
}

.wwa-left p {
    font-size: 14px;
    color: #58595B;
}

.new-way {
    background-color: #228eca;
    padding: 25px 0;
}

.new-way h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
}

.new-way-img {
    position: relative;
}

.new-way-img img {
    position: absolute;
    top: -92px;
}

.wwa-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.wwa-right::after {
    content: '';
    position: absolute;
    background-image: url(../img/smallpic.svg);
    background-color: white; 
    height: 56px;
    width: 60px;
    left: calc(50% - 32px);
    top: calc(50% - 31px);
}

.wwa-right-box {
    border: 3px solid #228eca;
    padding: 33px 10px;
    text-align: center;
    flex-basis: 49%;
    background-color: #ffffff;
}

.wwa-right-box-icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.wwa-right-box-icon img {
    height: 45px;
}

.wwa-right-box h4 {
    font-size: 16px;
    font-weight: 900;
    color: #218ECA;
    margin-bottom: 10px;
}

.wwa-right-box p {
    font-size: 12px;
    color: #231F20;
    line-height: 17px;
    margin-bottom: 0;
}

.wwa-right-box.mt-3 {
    margin-top: 12px !important;
}

/* Product Slider */
.our-products {
    padding: 80px 0 40px 0;
}

.our-products h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.our-products h5 span {
    background-color: #228eca;
    padding: 6px 16px;
    border-radius: 5px;
}

.our-products h2 {
    color: #1C75BC;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
}

.our-products p {
    font-size: 12px;
    color: #231F20;
    text-align: center;
    line-height: 17px;
    margin-bottom: 50px;
}

.pro-slider-block {
    background-image: url(../img/slider-bg.png);
    width: 240px;
    height: auto;
    text-align: center;
    position: relative;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    background-size: 207px;
    background-position: 20px 10px;
}

.pro-slider-block a {
    text-decoration: none;
}

.pro-slider-block img {
    position: relative;
    max-width: 240px;
    top: -3px;
    margin-left: auto;
    margin-right: auto;
}

.pro-slider-block h4 {
    font-size: 18px;
    font-weight: 700;
    color: #231F20;
    margin-top: 5px;
    padding: 0 18px;
}

.pro-list .pro-slider-block h4 {
    margin-top: 30px;
}

.na-t {
    background-color: #F1F2F2;
    border-radius: 0 255px 0 0;
    padding: 80px 0;
}

.na-t h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;

}

.na-t h5 span {
    background-color: #228eca;
    padding: 6px 16px;
    border-radius: 5px;
}

.na-t h2 {
    color: #1C75BC;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;

}

.na-t p {
    font-size: 12px;
    color: #231F20;
    line-height: 17px;
    margin-bottom: 20px;
}

.na-area {
    display: flex;
    justify-content: space-between;
}

.filters {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 50px;
}

.na-block {
    display: flex;
    flex-direction: column;
    flex-basis: 48%;

}

.na-img {
    padding: 8px;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.na-img img {
    max-height: 159px;
}

.na-block h6 {
    font-weight: 700;
    color: #231F20;
    font-size: 16px;
    line-height: 19px;
}

a.learn-more {
    font-weight: 700;
    font-style: italic;
    font-size: 14px;
    color: #344B6B;
}

a.learn-more span {
    width: 14px;
    display: inline-block;
    margin-left: 5px;
}

.testi-slider-block {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 0 0;
}

.testi-slider-block p {
    font-size: 12px;
    color: #231F20;
}

.testi-name {
    display: flex;
    align-items: center;
}

.testi-name img {
    width: 50px;
    height: 50px;
    margin-right: 8px;
}

.testi-name span {
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    color: #231F20;
    text-transform: uppercase;
}

/* Footer */

footer {
    background-image: url(../img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 181px;
    margin-bottom: 25px;
}

.footer-company-info p {
    color: #ffffff;
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 15px;
}

.footer-company-info p a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
}

.call-email-img {
    max-width: 22px;
    margin-right: 5px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-link-block {
    flex: 1;
    padding: 0 14px;
}

.footer-link-block h6 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-link-block ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-link-block ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-link-block ul li a {
    color: #ffffff;
    font-size: 13px;
}

ul.social-links {
    display: flex;
    align-items: center;
}

ul.social-links li {
    margin-right: 10px;
    margin-bottom: 0;
}

ul.social-links li a img {
    width: 28px;
}

.sub-footer {
    background-color: #4A494A;
    padding: 10px 0;
    text-align: center;
}

.sub-footer p {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 0;
}

.sub-footer p img {
    max-width: 24px;
    margin-left: 8px;
}

/* About Us */

.about-banner {
    background color: #89CFF0;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
    padding: 25px 0 75px 0;
    position: relative;
}

.about-banner::before {
    content: '';
    position: absolute;
    background: rgb(28, 117, 188);
    background: -moz-linear-gradient(90deg, rgba(28, 117, 188, 1) 45%, rgba(35, 31, 32, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(28, 117, 188, 1) 45%, rgba(35, 31, 32, 0) 100%);
    background: linear-gradient(90deg, rgba(28, 117, 188, 1) 45%, rgba(35, 31, 32, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1c75bc", endColorstr="#231f20", GradientType=1);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.about-banner h1 {
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
}

.about-banner p {
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    font-size: 14px;
    width: 50%;
    margin-bottom: 10px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #ffffff;
    font-size: 14px;
}

.breadcrumb-item img {
    width: 14px;
}

.breadcrumb-item.active {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;

}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "\f105";
    border: none;
    font-family: 'FontAwesome';
    color: #ffffff;
}

.who-we-are.with-about {
    border-radius: 0;
}

.who-we-are.with-about::before {
    display: none;
}

.about-wwa-right {
    text-align: right;
    position: relative;
}

.about-img-right {
    position: relative;
    max-width: 235px;
}

.abt-features {
    position: absolute;
    top: 0;
    right: 250px;
}

.abt-feature-block {
    background-image: url(../img/about-features-logo.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    text-align: center;
    padding: 15px;
}

.feature-highlight {
    color: #BFD85C;
    font-size: 28px;
    font-weight: 900;
}

.abt-feature-block h6 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.pos1 {
    position: relative;
    right: -64px;
    top: 36px;
}

.pos2 {
    position: relative;
    right: -5px;
    top: 20px;
}

.pos3 {
    position: relative;
    right: -22px;
    top: 25px;
}

.pos4 {
    position: relative;
    right: -119px;
    top: -18px;
}

.journey {
    padding: 80px 0;
    background-image: url(../img/journey-banner.jpg);
    position: relative;
    background-position: center bottom;
    background-size: cover;
}

.journey h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.journey h5 span {
    background-color: #228eca;
    padding: 6px 16px;
    border-radius: 5px;
}

.journey h2 {
    color: #1C75BC;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}

.journey p {
    font-size: 12px;
    color: #231F20;
    text-align: center;
    line-height: 17px;
    margin-bottom: 50px;
    width: 48%;
    margin-left: auto;
    margin-right: auto;
}

.journey-timeline {
    position: relative;
    display: flex;
}

.journey-timeline::before {
    content: '';
    width: 76%;
    height: 2px;
    background-color: #89A83E;
    position: absolute;
    top: 0;
    left: 0;
}

.journey-timeline-block {
    padding-top: 35px;
    position: relative;
    flex: 1;
    padding-right: 20px;
}

.journey-timeline-block::before {
    content: '';
    background-image: url(../img/timeline-dot.svg);
    width: 22px;
    height: 43px;
    display: inline-block;
    position: absolute;
    top: -11px;
    left: 0;
}

.journey-timeline-block h4 {
    font-size: 36px;
    font-weight: 900;
    color: #1C75BC;
}

.journey-timeline-block h5 {
    color: #58595B;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 10px;
    text-align: left;
}

.journey-timeline-block p {
    color: #000000;
    font-size: 12px;
    width: auto;
    margin-left: unset;
    margin-right: unset;
    text-align: left;
}

.why-choose-us {
    padding: 80px 0 25px 0;
}

.why-choose-us h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-choose-us h5 span {
    background-color: #228eca;
    padding: 6px 16px;
    border-radius: 5px;
}

.why-choose-us h2 {
    color: #1C75BC;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
}

.why-choose-us p {
    font-size: 14px;
    color: #58595B;
    margin-bottom:20px;
}

.why-choose-us ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.why-choose-us ul li {
    list-style: none;
    position: relative;
    flex-basis: 50%;
    margin-bottom: 15px;
    padding-left: 35px;
    padding-right: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #231F20;
}

.why-choose-us ul li::before {
    content: '';
    position: absolute;
    background-image: url(../img/bullet-point.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
    left: 0;
}

.vision-mission {
    padding: 35px 25px 25px 25px;
    border-radius: 10px;
    position: relative;
}

.our-mission {
    background-color: #228eca;
    margin-bottom: 40px;
}

.vision-mission p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0;
}

.vision-mission .title {
    position: absolute;
    background-color: #89A83E;
    padding: 6px 20px;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    top: -15px;
}

.our-vision {
    background-color: #228eca;
    position: relative;
}

.our-vision::after {
    background-image: url(../img/vision-bg.svg);
    width: 100%;
    content: '';
    position: absolute;
    right: -8px;
    bottom: -5px;
    width: 35px;
    height: 55px;
    background-position-x: right;
    background-position-y: bottom;
    background-repeat: no-repeat;
}

.from-dd {
    background-color: #228eca;
    padding: 140px 0 80px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.from-dd h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

.from-dd h5 span {
    background-color: #228eca;
    padding: 6px 16px;
    border-radius: 5px;
}

.dd-banner-fg {
    position: absolute;
    width: 100%;
    top: 0;
}

.dir-img {
    max-width: 98px;
    position: relative;
    margin-right: 10px;
}

.dir-img::before {
    content: '';
    position: absolute;
    background-image: url(../img/dd-quote.svg);
    width: 28px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    top: -15px;
    left: -12px;
}

.director-block {
    display: flex;
    margin-bottom: 15px;
}

.director-block h4 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 5px;
}

.dd-name {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
}

.dd-designation {
    font-size: 12px;
    color: #ffffff;
    font-weight: 700;
}

.dd-block-bottom p {
    font-size: 14px;
    color: #ffffff;
    line-height: 17px;
    margin-bottom: 40px;
}

.left-wheat {
    position: absolute;
    left: -52px;
    bottom: -192px;
    z-index: -1;
}

.left-wheat img {
    width: 206px;
}

.right-wheat {
    position: absolute;
    right: -154px;
    bottom: -378px;
    z-index: -1;
}

.right-wheat img {
    width: 464px;
}

/* Product Landing */
.pro-list {
    padding: 80px 0;
}

.pro-list .pro-slider-block {
    margin-bottom: 25px;
}

.pro-list-image {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-list .pro-slider-block img {
    max-width: unset;
    height: 260px;
}

.pro-list .pro-slider-block p {
    font-size: 12px;
    color: #231F20;
    text-align: center;
    line-height: 17px;
    margin-bottom: 50px;
}

.pro-slider-block.not-finding {
    background-image: url(../img/about-features-logo.svg);
    width: 224px;
    height: 385px;
    background-size: contain;
    text-align: center;
    position: relative;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

.not-finding .pro-list-image {
    margin-bottom: 60px;
}

.pro-slider-block.not-finding img {
    width: 100px;
    top: 7px;
}


/* Product Details */


.product-banner {
    /* background-image: url(../img/about-banner.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
    margin-bottom: 30px;
    padding: 25px 0 75px 0;
    position: relative;
}

.product-banner::before { 
    content: '';
    position: absolute;
    background: #89A83E;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.product-banner h1 {
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    text-transform: uppercase;
}

.product-banner p {
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    font-size: 14px;
    width: 50%;
    margin-bottom: 10px;
}

.pro-details .pro-slider-block {
    background-image: url(../img/slider-bg.png);
    width: 310px;
    height: 310px;
    text-align: center;
    position: absolute;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: unset;
    top: 0;
    left: calc(100% - 360px);
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}

.pro-details .pro-slider-block img {
    width: auto;
    position: relative;
    top: 0;
    left: 0;
    max-width: unset;
    height: 400px;
}

.pro-details-image {
    display: flex;
}

.bottom-pro-details {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.available-size {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.size {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
}

.size-number {
    background-color: #FFFFFF;
    padding: 5px 10px;
    color: #1C75BC;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
}

.btn-secondary {
    background-color: #FFFFFF;
    font-weight: 700;
    color: #231F20;
    font-size: 12px;
    padding: 10px 28px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-secondary:hover,
.btn-secondary.focus,
.btn-secondary:focus {
    color: #231F20;
    background-color: #eeeeee;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    color: #231F20;
    background-color: #eeeeee;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #231F20;
    background-color: #eeeeee;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pro-composition {
    background-color: #F1F2F2;
    margin-bottom: 40px;
    margin-top: 0;
    padding: 35px 25px 8px 25px;
    border-radius: 10px;
    position: relative;
}

.pro-composition::after {
    content: '';
    background-image: url(../img/comp-pattern.svg);
    background-position: right bottom;
    background-repeat: repeat;
    width: 48px;
    display: block;
    bottom: -5px;
    right: -11px;
    position: absolute;
    height: 65px;
}

.pro-composition .title {
    position: absolute;
    background-color: #89A83E;
    padding: 6px 20px;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    top: -15px;
}

.pro-composition p {
    color: #231F20;
    font-size: 14px;
    margin-bottom: 0;
}

.comp-divider {
    background-color: #d4d6da;
    height: 1px;
    width: 100%;
    margin: 10px 0;
}

.pro-composition ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.pro-composition ul li {
    list-style: none;
    padding: 4px 0;
    min-width: 50%;
    font-size: 14px;
    font-weight: 700;
}

.pro-composition ul li span {
    font-weight: 400;
}

.pro-application {
    background-color: #F1F2F2;
    margin-bottom: 40px;
    margin-top: 0;
    padding: 35px 25px 25px 25px;
    border-radius: 10px;
    position: relative;
}

.pro-application .title {
    position: absolute;
    background-color: #89A83E;
    padding: 6px 20px;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    top: -15px;
}

.pro-application p {
    color: #231F20;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 700;
}

.superscript {
    font-size: 8px;
    position: relative;
    top: -6px;
}

.navbar-main .dropdown-menu.na-menu {
    min-width: 150px;
    left: 20px;
}

.na-area-main {
    padding: 50px 0;
}

.na-area-main .nav {
    justify-content: flex-end;
}

.na-area-main .nav-tabs {
    border-bottom: 1px solid transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #FFFFFF;
    background-color: #218ECA;
    border-color: transparent;
}

.nav-link {
    display: block;
    padding: 6px 20px;
}

.nav-tabs .nav-item {
    min-width: 120px;
    text-align: center;
    margin-right: 5px;
}

.nav-tabs .nav-link {
    border-radius: 50px;
    background-color: #F1F2F2;
    color: #231F20;
    font-size: 14px;
    font-weight: 600;
}

.na-area-main .na-img {
    padding: 0;
}

.na-area-main .na-img img {
    max-height: 165px;
}

.na-area-main .na-block p {
    font-size: 12px;
    color: #231F20;
    margin-bottom: 5px;
}

.na-area-main .tab-content {
    padding: 50px 0 15px 0;
}

.na-area-main .na-block {
    margin-bottom: 45px;
}

.na-area-main .form-group {
    position: absolute;
    z-index: 1;
}

.na-area-main .form-control {
    border-color: #58595B;
    border-radius: 0;
    color: #231F20;
}

.na-area-main .form-control:focus {
    box-shadow: none;
}

.full-12-col .testi-slider-block {
    padding: 0 35px 0 0;
}

.na-area-main .form-group.news-search {
    position: relative;
    margin-bottom: 47px;
    max-width: 229px;
}

.with-fixed-height {
    height: 238px;
}

.na-details {
    padding: 0 0 40px 0;
}
.na-details h4{
    color: #1C75BC;
    font-size: 22px;
    font-weight: 600;
}
.na-details-banner {
    margin-top: -200px;
    height: 300px;
    margin-bottom: 25px;
    display: inline-block;
    overflow: hidden;
    border-radius: 4px;
}

.na-details .breadcrumb .breadcrumb-item a {
    color: #231F20;
}

.na-details .breadcrumb-item+.breadcrumb-item::before {
    color: #231F20;
}

.na-details .breadcrumb .breadcrumb-item.active {
    color: #231F20;
}

.na-date {
    font-weight: 700;
    color: #231F20;
    font-size: 14px;
    text-align: right;
}

.na-details h2 {
    font-weight: 700;
    font-size: 34px;
    color: #231F20;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.na-details p {
font-size: 12px;
    color: #231F20;
    line-height: 20px;
}

.back-btn {
    margin-top: 25px;
}

.back-btn img {
    width: 15px;
    margin-right: 5px;
}

.filter-button {
    background-color: #f1f2f2;
    padding: 10px 20px;
    color: #231f20 !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    width: 130px;
    margin-left: 15px;
}

.filters .filter-button.active {
    background-color: #218eca;
    color: #ffffff !important;
}

.filters .btn.focus,
.filters .btn:focus {
    box-shadow: none;
}

.form-control {
    border: 2px solid #006633;
    border-radius: 0;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #006633;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 255, 55, 0.15);
}

.g-map-area {
    height: 500px;
    display: block;
}

.responsive-map {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 100%;
}

.responsive-map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
.contact-block-area{
    display: flex;    
}
.contact-block {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-right: 30px;
}
.contact-block span {
width: 46px;
    height: 46px;
    border: 2px solid #2a8441;
    display: flex;
    border-radius: 50px;
    margin-right: 10px;
    align-items: center;
    padding: 10px;
}
.contact-block span img{
    max-width: 25px;
}
.contact-block p, .contact-block p a{
    margin-bottom: 0;
    color: #606060;
    font-size: 14px;
    text-decoration: none;
}
.table .thead-light th{
    background-color: #DFEEFB;
    border-color: #BDE1FD;
}
.table-bordered td, .table-bordered th{
    border: 1px solid #BDE1FD;
}

/* Global Reach */
.achi{
    padding: 40px 0;
}
.achi h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}
.achi h5 span {
    background-color: #228eca;
    padding: 6px 16px;
    border-radius: 5px;
    display: inline-block;
}
.achi h2 {
    color: #1C75BC;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}
.achi p {
    font-size: 12px;
    color: #231F20;
    line-height: 17px;
    margin-bottom: 40px;
    text-align: center;
    width: 63%;
    margin-left: auto;
    margin-right: auto;
}
.achi .award-block h5{
    color: #231f20 !important;
    font-weight: 700;
    margin-top: 15px;
    text-transform: capitalize;
}
.award-block{
    margin-bottom: 50px;
}
.award-block-img{
    position: relative;
}
.award-block-img span{
    color: #208dc9;
    font-weight: 500;
    font-size: 46px;
    position: absolute;
    left: 0;
    top: calc(100% - 112px);
    width: 100%;
    text-align: center;
}
p.blue-bar{
    font-size: 12px;
    color: #ffffff;
    background-color: #1b75bb;
    padding: 10px;
    border-radius: 5px;
}
p.blue-bar span{
    font-weight: 700;
}
.achi .nav{
    justify-content: center;
}
.achi .nav-tabs{
    border-bottom: 0;
}
.achi .nav-tabs .nav-item{
    min-width: 190px;
}
.ach-map-area-int{
    max-width: 70%;
    margin: 80px auto 20px auto;
}
.ach-map-area-ind{
    max-width: 40%;
    margin: 80px auto 20px auto;
}