:root {
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E
}

section{
    padding: 50px 0px 50px 0px;
    overflow: hidden;
}
.bags-bg{
height: 243px;
}  
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out
}

b{
    color: #5EB34D;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1
}

h1,
h2,
.fw-bold {
    font-weight: 800 !important
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important
}

.btn {
    font-family: nunito, sans-serif;
    font-weight: 600;
    transition: .5s
}

.btn-primary,
.btn-secondary {
    color: #fff;
    box-shadow: inset 0 0 0 50px transparent
}


.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary)
}

.btn-square {
    width: 36px;
    height: 36px
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center
}

.navbar-dark .navbar-nav .nav-link {
    font-family: nunito, sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 22px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: #091e3e;
}


.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #5EB34D !important;
}

.navbar-dark .navbar-brand h1 {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: #34AD54 !important;
    border-color: #34AD54 !important;
}

@media(max-width:991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #ffffff;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: #091e3e;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary)
    }
}



@media(min-width:200px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #ffffff;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary)
    }
}

@media only screen and (max-width: 500px) {
    .carousel-item img{
        height: 50vh;
    }
  }

.carousel-item {
    position: relative;
}

.carousel-caption{
    position: absolute;
    z-index: 1000;
    top: 40%;
}
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: rgba(1,62,117,1);
    border-radius: 2px
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0;
    background: #fff;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0
    }

    50% {
        left: 145px
    }

    100% {
        left: 0
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px
    }

    50% {
        left: 50%;
        margin-left: 45px
    }

    100% {
        left: 50%;
        margin-left: -75px
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0
    }

    50% {
        left: 85px
    }

    100% {
        left: 0
    }
}

.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg)
}

.service-item .service-icon i {
    transform: rotate(45deg)
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #ddd;
    border-radius: 2px;
    transition: .5s
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary)
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #fff !important;
    box-shadow: 0 0 30px #ddd
}

.team-item {
    transition: .5s
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0
}

.team-item:hover {
    box-shadow: 0 0 30px #ddd
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7)
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15)
}

@media(min-width:991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1
    }
}



.visa{
  height: 70px;
  width: 70px;
}

.value-border{
  border: 1px solid rgba(1,62,117,1);
  border-radius: 20px;
  padding: 10PX;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../images/FIBC-JUMBO-BAG.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0px 120px 0px !important;
    overflow: hidden;
}
.about-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../images/global-trade.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 200px 0px 120px 0px !important;
    overflow: hidden;
}


.logo img{
    width: 220px !important;
}




.GLOBAL p{
    float: left;
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: .5;
    color: #333;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    line-height: 25px;
}

.link-animated a {
    transition: .5s
}

.link-animated a:hover {
    padding-left: 10px
}

@media(min-width:767.98px) {
    .footer-about {
        margin-bottom: -75px
    }
    .btn-consultation{
        display: none !important;
      }
      .Copyright{
        margin-bottom: 60px;
      }  
}
.Copyright{
    margin-bottom: 0px;
  }  
.card {
	position: relative;
	height: 210px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	overflow: hidden;
   border: none;
	cursor: pointer;
}

.intro {
	position: absolute;
	height: 50px;
	width: 350px;
	bottom: 0;
	overflow: hidden;


	padding: 10px;
	color: #fff;
	background-color: rgba(27, 27, 27, .5);

	transition: .4s ease-in-out;
}

.card img{
    height: auto;
}
.card:hover .intro {
	height: 90px;
	bottom: 0;
	background-color: #00000065;
}

.card:hover .text-p {
	opacity: 1;
	visibility: visible;
}

.card:hover img {
	transform: scale(1.1) rotate(-3deg);
}


.text-h1 {
	margin: 10px;
	text-transform: uppercase;
	font-size: 28px;
}

.text-p {
	font-size: 16px;
	padding: 10px;
	visibility: hidden;
	opacity: 0;
}

.table{
    border: 1px solid #ddd;
}





  img {
    width: 100%;
    height: auto;
  }


  
  .site-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 90px;
    width: 390px;
    overflow: hidden;
  }
  .site-logo__logomark {
    position: absolute;
    width: 50px;
    top: 10px;
    margin-left: 20px;
  }
  .site-logo__wordmark {
    position: absolute;
    width: 200px;
    top: 10px;
    margin-left: 0;
  }
  
  .site-logo__logomark {
    transform: translateY(0);
    opacity: 1;
    .logo & {
      animation: logoIn .5s;
     transform: translateY(0);
       opacity: 1;
    }
    .word & {
      animation: logoOut .3s;
      transform: translateY(-70px);
      opacity: 1;
    }
  }
  
  @keyframes logoIn {
    0% {
      opacity: 0;
      transform: translateY(-70px);
    }
    50% {
      transform: translateY(5px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes logoOut {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    80% {
      opacity: 0;
    }
    100% {
      transform: translateY(-70px);
    }
  }
  
  .site-logo__wordmark {
    transform: translateY(70px);
    opacity: 0;
    .word & {
      animation: wordIn .3s;
      opacity: 1;
      transform: translateY(0);
    }
    .logo & {
      animation: wordOut .5s;
      opacity: 0;
      transform: translateY(70px);
    }
  }
  
  @keyframes wordIn {
    0% {
      opacity: 0;
      transform: translateY(70px);
    }
    50% {
      transform: translateY(-4px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes wordOut {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    80% {
      opacity: 0;
    }
    100% {
      transform: translateY(70px);
    }
  }
  
  @media only screen and (max-width: 500px) {
    .Copy p{
        text-align: center;
      }
      .Copy a{
        text-align: center;
      }
      .btn-consultation{
        display: none;
      }
      .Copyright{
        margin-bottom: 60px;
      }
 
  }

  .btn-consultation {
    background-color: #34AD54 !important;
    padding: 10px !important;
    color: white !important;
    font-weight: 400 !important;
    display: block !important;
    font-size: 1em;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
}

.banner-submit-enquiry {
    left: 2% !important;
    bottom: 5% !important;
    position: fixed !important;
    width: 14%;
    z-index: 99;
    border-radius: 30px;
    text-align: center;
    font-size: 0.9em !important;
    border: 3px solid #fff;
    background-color: #34AD54 !important;
}



.mobile-device-actions{
    display: none;
  }
  
  .help-line{
    display: block;
  }

  .selected{
    width: 100%;
    padding: 8px 15px 0px 8px;
    height: 48px !important;
    border-radius: 5px;
    color: #48484894;
    border: 1px solid #4848484f ;
  }
  
  @media (max-width: 768px) {
    .btn-consultation {
      display: none !important;
    }
    .mobile-device-actions {
        display: block;
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        background-color: #5EB34D;
        overflow: hidden;
        z-index: 99;
    }
    .navbar-dark .navbar-nav .nav-link{
      margin-left: 4px;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-device-actions li {
        padding: 5px !important;
        flex-grow: 1;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-device-actions ul {
        margin-bottom: 0px;
        width: 100%;
        display: flex
  ;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-device-actions i {
        color: white;
        font-size: 1.5em;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-device-actions li p {
        padding: 2px !important;
        margin: 0px;
        color: white;
    }
    .contact-bg IMG{
      display: none;
    }
  
    .copyright{
      margin-bottom: 30px;
    }
    .back-to-top{
      bottom: 15%;
    }
    .help-line{
      display: none;
    }
    .btn-main{
      display: none !important;
    }
    .from-bg{
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 20px;
    }
  }
  
  @media (max-width: 425px) {
    .mobile-device-actions li p {
        padding: 0px !important;
        margin: 0px;
        font-size: 15px;
        color: white;
    }
    .back-to-top{
      bottom: 10%;
    }
    #taking{
      font-size: 1px;
    }
    .story-text{
      top: 12%;
      left: 7%;
    } 
    .liver-text p {
      font-size: 14px;
    }
    .navbar-dark .navbar-nav .nav-link{
      margin-left: 4px;
    }
    #drop-menu{
      width: 100%;
    }
    #drop-menu a{
      font-size: 10px;
    }
  }