body {
	padding: 0;
	margin: 0;
}
.container {
	position: relative;
	margin-top: 100px;
}
nav {
	position: fixed;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	font-family: 'Montserrat', sans-serif;
	padding: 0 2%;
	height: 70px;
	background-color: #1c4739;
}
nav .logo {
	float: left;
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 22px;
	color: #fff;
}
nav .links {
	float: right;
	padding: 0;
	margin: 0;
	width: 40%;
	height: 100%;
	display: flex;
	justify-content: space-around;  
	align-items: center;
}
nav .links li {
	list-style: none;
}
nav .links a {
	display: block;
	padding: 0.3em;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}
#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: #fff;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}
@media screen and (max-width: 768px) {
	nav .logo {
		float: none;
		width: auto;
		justify-content: center;
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 100px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		background-color: rgba(0,0,0,.8);
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
	}
	nav .links a {
		font-size: 20px;
	}
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}
	
}

header {
    position: relative;
    background-color: black;
    height: 75vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
  }
  
  header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  
  header .container {
    position: relative;
    z-index: 2;
  }
  
  header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
  }
  
  @media (pointer: coarse) and (hover: none) {
    header {
      background: url('https://img.freepik.com/free-photo/trade-port-shipping-cargo-harbor-aerial-view-sea-freight_101206-111.jpg?size=626&ext=jpg&uid=R67845320') rgb(142, 203, 211) no-repeat center center scroll;
    }
    header video {
      display: none;
    }
  }
  
  /*========= BANNER =============*/

  .dento-btn{
     position: relative;
      z-index: 1;
      min-width: 170px;
      height: 46px;
      line-height: 42px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      padding: 0 20px;
      text-align: center;
      color: #ffffff;
      border-radius: 2px;
      background-color: var(--primary-color);
      -webkit-transition: all 500ms;
      -o-transition: all 500ms;
      transition: all 500ms;
      border: 2px solid var(--primary-color);
  }
  .dento-btn.active, .dento-btn:focus, .dento-btn:hover {
      box-shadow: none;
      background-color: transparent;
      color: #00aeef;
  }
  
  .counter-count
  {
      font-size: 38px;
      font-weight: 600;
      position: relative;
      color: var(--primary-color);
      text-align: center;
      margin-bottom:0;
      color: #00aeef;
  }
  .count-up .counter-label {
    text-align:center
  }
  h6.counter-label{
    font-size:16px;
  }

  /*-----second-banner------  */

  .glass{
    backdrop-filter: blur(5px);
         border-top: 1px solid rgba(255,255,255,0.5); 
       border-left: 1px solid rgba(255,255,255,0.5);
    box-shadow: 20px 20px 50px rgb(0 0 0 / 50%);
    border-radius: 15px;
  }
  .bg-image {
      position: relative;
      overflow: hidden;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
  }
  .ls-tight {
      letter-spacing: -0.07em !important;
  }
  .mask {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-attachment: fixed;
  }
  /* -----news---- */
  .shadow {
    -webkit-box-shadow: 0 10px 40px 0 rgba(62, 57, 107, 0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.06);
    box-shadow: 0 10px 40px 0 rgba(62, 57, 107, 0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.06);
    }
    
  /*-----home-banner-----*/
  .banner h2 {
    font-weight: 800 !important;
      font-size: 25px !important;
      line-height: 30px !important;
      letter-spacing: normal !important;
      padding-top: 2px !important;
      padding-bottom: 2px !important;
      color: rgb(72, 72, 72) !important;
  }
  
  #sunfish h3 {
    color: rgb(72, 72, 72);
    font-weight: 600 !important;
      word-wrap: break-word !important;
      font-size: 20px !important;
      line-height: 26px !important;
      letter-spacing: normal !important;
  }
  #sunfish .color-text {
    color:rgb(165, 41, 3);
    font-size:12px;
    font-weight:700;
    line-height:16px;
    text-transform:uppercase;
  }
  
  .place-name {
    color: rgb(72, 72, 72);
    font-size:16px;
    line-height:22px;
    font-weight:700;  
  }
  
  
  #sunfish img {
    /* width:113%; */
    border-radius:3px;
  }
  #sunfish figure {
    position:relative;
  }
  #sunfish figure img{
    height: 400px;
    /* width: 209px; */
  }
  
  #sunfish figcaption.top {
    /* color:rgb(27, 26, 26) !important; */
    max-width:400px;
    position:absolute;
    top:90px;
    left:60px;
  }
  
  #sunfish figcaption.button {
    /* max-width:400px; */
    position:absolute;
    top:240px;
    left:60px;
  }
  
  #sunfish .btn-bnb {
    background-color:rgb(175, 161, 161);
    color:rgb(27, 26, 26);
    border-radius: 4px !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: transparent !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 4px 0px !important;
    font-size: 16px !important;
    line-height: 21px !important;
    font-weight: 800 !important;
    padding: 12px 24px;
  }
  
  #sunfish figcaption.sign {
    position:absolute;
    bottom:40px;
    left:40px;
  }
  
  #sunfish figure img {
    width:100%;
    
  }
  @media (max-width:700px) {
    #sunfish figure {
      height:300px;
    }
    #sunfish figure img {
      width: 100%;
      height: 100%;
      position: absolute;
      object-fit: cover;
      object-position: center center;
    }
  }

  /* -----serves card----- */
  
  #dcol.color-text {
    color:rgb(165, 41, 3);
    font-size:12px;
    font-weight:700;
    line-height:16px;
    text-transform:uppercase;
  }
  
  .place-name {
    color: rgb(72, 72, 72);
    font-size:16px;
    line-height:22px;
    font-weight:700;  
  }
  
  .price {
    font-size:14px;
    line-height:18px;
    color: rgb(72, 72, 72) !important;
  }
  
  #dcol img {
  /*   width:100%; */
    border-radius:3px;
  }
  
  #dcol span {
    display:block;
  }
  
  .checked {
    color: rgb(0, 132, 137) !important;
    font-size:9px;
  }
  .text-desc {
    font-size:14px!important;
  }
  
  .text-color {
    color:rgb(255, 180, 0)!important;
    font-size:12px!important;
  }
  
  .rating {
    font-size:12px;
  }
  /* ----contact------ */
.site-footer
{
  /* background-color:#26272b; */
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #1c4739;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f6f7fd;
}


#contact {
  padding: 0 0;
}

#contact .contact-info {
  margin-bottom: 10px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #f82249;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #1c4739;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #1c4739;
}

#contact .contact-info a {
  color: #1c4739;
}

#contact .contact-info a:hover {
  color: #f82249;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #f82249;
  border: 1px solid #f82249;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: #1c4739;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #1c4739;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #1c4739;
}

/* ---why choose us----- */
.containerr {
  margin: 50px auto;
  margin-bottom: 85px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background-image: url("https://img.freepik.com/free-vector/warehouse-interior-logistics-cargo-delivery_107791-1777.jpg?size=626&ext=jpg&uid=R67845320");
  background-size: cover;
  background-position: 30%;
  opacity: .8;
  position: relative;    
}

.center-div {
 position: absolute;
 top: 45%;
 margin-top: -30px;
 width: 80%;
 left: 50%;
 transform: translate(-50%,-50%); 
}

.center-div h2 {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 100px;
}

.center-div p {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #ccc;
  line-height: 1.8;

}

.choices {
  display: flex;
}

.left-top,
.right-top,
.right-bottom,
.left-bottom {
  position: absolute;
  display: flex;
  transition: .6s;
  cursor: pointer;
  width: 100%;
  user-select: none;
}

.left-top:hover,
.right-top:hover,
.right-bottom:hover,
.left-bottom:hover {
  transform: scale(1.1);
}

.left-top {
  left: -70%;
  top:  3%;
}

.right-top {
  left: 70%;
  top: 3%;
}

.right-bottom {
  left: 70%;
  top: 80%;
}

.left-bottom {
  left: -70%;
  top: 80%;
}

.left-top-circle,
.right-top-circle,
.right-bottom-circle,
.left-bottom-circle {
  position: relative;   
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
 
}

.left-top-circle{
  left: 81%;    
}


.left-bottom-circle {
  left: 81%;
}

.left-top-circle img,
.right-top-circle img,
.right-bottom-circle img,
.left-bottom-circle img {
  width: 70%;
  display: block;
  position: absolute;
  top: 15%;
  left: 12%;
}

.left-top-text,
.right-top-text,
.right-bottom-text,
.left-bottom-text {
  position: relative;
  padding: 8px;
  width: 80%;
 
}

.left-top-text {
  left: -27%;
}

.right-top-text {
  left: 7.5%;
}

.right-bottom-text {
  left: 7.5%;
  top: 80%;
}

.left-bottom-text {
  left: -27%;
}

.left-top-text h3,
.right-top-text h3,
.right-bottom-text h3,
.left-bottom-text h3 {
  text-align: right;
  color: #030303;
  opacity: .9;
  font-size: 22px;
}

.right-top-text h3,
.right-bottom-text h3{
  text-align: left;
}

.left-top-text p,
.right-top-text p,
.right-bottom-text p,
.left-bottom-text p {
  margin-top: 30px;
  color: #979dac;
  font-weight: bold;
  line-height: 1.4;
  text-align: justify;
  font-size: 16px;
}
/* ----home news----- */

.posts-listing{
  display: flex;
  flex-wrap: wrap;
  max-width: 1360px;
  margin: 0 auto;
}

.post-item{
  width: calc(33.33% - 40px);
  margin: 20px;
  flex: 0 0 auto;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}

.post-item__inner{
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 4px;
  background-color: #F7F8F8;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: box-shadow .2s;
  color: black;
  text-decoration: none;
}

.post-item__thumbnail-wrapper{
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  flex: 0 0 auto;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  overflow: hidden;
  transition: clip-path .2s;
}

.post-item__thumbnail{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  transition: transform .3s;
}

.post-item__thumbnail-wrapper:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to top, rgba(136,27,132,0.2), rgba(162,77,211,0.03));
}

.post-item__content-wrapper{
  padding: 2rem;
  position: relative;
  height: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.post-item__title{
  color: white;
  line-height: 1.6;
  margin-top: -4rem;
  font-size: 27px;
  margin-bottom: 1rem;
}

.post-item__title span{
  display: inline;
  background-image: linear-gradient(to right, #0f225e, #0f225e);
  padding: .2rem .6rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.post-item__metas{
  margin-bottom: 2rem;
}

.post-item__meta--date{
  color: #6d6d6d;
  letter-spacing: 0.01rem;
  font-size: 1.4rem;
}

.post-item__meta--category{
  display: inline-block;
  background-color: #0f225e;
  color: white;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
  font-weight: 700;
  padding: 2px;
}

.post-item__excerpt{
  margin-bottom: 2rem;
}

.post-item__read-more-wrapper{
  margin-top: auto;
}

.post-item__read-more{
  padding: 3px 0;
  display: inline;
  background-image: linear-gradient(#0f225e, #0f225e);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: left bottom;
  transition: background-size .3s;
}

/* hover state */

.post-item__inner:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.post-item__inner:hover .post-item__thumbnail-wrapper{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.post-item__inner:hover .post-item__thumbnail{
  transform: scale(1.1);
}

.post-item__inner:hover .post-item__read-more{
  background-size: 30% 2px;
}
/* ------client review------ */
.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
  z-index: 999;
}
.white-heading{
  color: #ffffff;
}
.heading:after {
  content: ' ';
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: url(img/heading-line.png);
  background-repeat: no-repeat;
  background-position: center;
}
.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
  background-repeat: no-repeat;
  background-position: center;
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
}
.white-heading span {
  color: #ffffff;
}
/*-----Testimonial-------*/

.testimonial {
  min-height: 575px;
  position: relative;
  background: #C4C7A9;
  padding-top: 50px;
  padding-bottom: 50px;
}

.testimonial_slide{
width: 70%;
margin: auto;
padding: 20px;
position: relative;
text-align: center;
}

.testimonial_slide p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  margin: 40px 0 20px 0;
}

.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px;
}
/* ------testimonial  close-------*/
/* .testimonials
{
  padding: 40px 0;
  background: #f1f1f1;
  color: #434343;
  text-align: center;
}

.testimonial-inner
{
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
} */

#testmo.border
{
  width: 160px;
  height: 5px;
  background: #6ab04c;
  margin: 26px auto;
}

#testmo.row
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#testmo.col
{
  flex: 33.33%;
  max-width: 33.33%;
  box-sizing:  border-box;
  padding: 15px;
}

.testimonial
{
  background: #fff;
  padding: 30px;
}

.testimonial img
{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.name
{
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
}

.stars
{
  color: #f0932b;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px)
{
  .col
  {
    flex: 100%;
    max-width: 80%;
  }
}

/* ------testimonial  close-------*/

/* ----faq----- */

.faq-section {
  background: #fdfdfd;
  min-height: 50vh;
  padding: 0 0 0;
  height: 100%;
  width: 100%;
}
.faq-title h2 {
position: relative;
margin-bottom: 5px;
display: inline-block;
font-weight: 400;
line-height: 1;
}
.faq-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #0f225e;
  bottom: -25px;
  margin-left: -30px;
}
.faq-title p {
padding: 0 190px;
margin-bottom: 10px;
}

.faq {
background: #FFFFFF;
box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
border-radius: 4px;
}

.faq .card {
border: none;
background: none;
border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
padding: 0px;
border: none;
background: none;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
  background: rgba(233, 30, 99, 0.1);
  padding-left: 10px;
}
.faq .card .card-header .faq-title {
width: 100%;
text-align: left;
padding: 0px;
padding-left: 30px;
padding-right: 30px;
font-weight: 400;
font-size: 15px;
letter-spacing: 1px;
color: #3B566E;
text-decoration: none !important;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
cursor: pointer;
padding-top: 20px;
padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
display: inline-block;
width: 20px;
height: 20px;
line-height: 14px;
/* float: left; */
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
text-align: center;
background: #0f225e;
color: #fff;
font-size: 12px;
margin-right: 20px;
}

.faq .card .card-body {
padding: 30px;
padding-left: 35px;
padding-bottom: 16px;
font-weight: 400;
font-size: 16px;
color: #6F8BA4;
line-height: 28px;
letter-spacing: 1px;
border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
margin-bottom: 14px;
}

@media (max-width: 991px) {
.faq {
  margin-bottom: 30px;
}
.faq .card .card-header .faq-title {
  line-height: 26px;
  margin-top: 10px;
}
}

/* ---bank------ */

fieldset {
  min-height: 200px;
}

.standard-label, .standard-input {
    display: block;
}

.standard-label {
  margin-bottom: 20px;
}

.standard-input, .standard-select {
  margin-top: 10px;
  border: 3px lightsteelblue solid;
  border-radius: 5px;
  padding: 2px;
}

.standard-input {
  height: 25px;
  width: 250px;
  font-size: 1em;
}

.standard-select {
  height: 32px;
  width: 150px;
  font-size: 1em;
}

#account-select {
  width: 260px;
}

#bank .container {
  width: 70%;
  max-width: 800px;
  margin: 0 auto;
  border: 1px black solid;
  padding: 10px;
  background-color: rgb(54, 92, 143); 
}

.sub-container {
  padding-left: 10px;
  background-color: white;
  margin: 10px auto;
}

.required {
  font-size: 1.5em;
  color: red;
}

.small-heading {
  font-size: 18px;
}

.radio-label {
  font-size: 20px;
  margin: 0 40px;
}

.radio-input {
  margin-bottom: 25px;
}

#bank button {
  border: 2px black solid;
  background-color: lightsteelblue;
  border-radius: 5px;
  margin: 0 auto;
  height: 35px;
  width: 150px;
  font-size: 20px;
}
#bank input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url() no-repeat;
    width: 20px;
    height: 20px;
    border-width: thin;
}

#show-address {
  display: none;
  float: right;
}

#address-history {
  display: none;
}

#non-uk {
  display: none;
  text-align: center;
  font-size: 25px;
  color: red;
}

#current-address {
  display: none;
}

#previous-address {
  display: none;
}

#get-consent {
  display: none;
  float: right;
}

#your-consent {
  display: none;
}

#info-request {
  display: none;
}

#submit-app {
  display: none;
  border: 2px black solid;
  background-color: lightsteelblue;
  border-radius: 5px;
  margin: 15px auto;
  height: 35px;
  width: 180px;
  font-size: 20px;
  float: right;
}

#bank input[type="checkbox"] {
  height: 50px;
  width: 30px;
  margin-top: 20px;
  margin-left: 45px;
}
/** Media Queries **/

@media screen and (max-width: 1100px) {
  
  #bank h1 {
    font-size: 24px; 
  }
  
  #bank h2 {
    font-size: 24px;
  }
  #bank .container {
    width: 95%;
  }
}

/* -----map----- */

.responsive-map{
  overflow: hidden;
  margin-top:25px; 
  padding-bottom:26.25%;
  position:relative;
  height:0;
  }
  .responsive-map iframe{
  left:0;
  top:0;
  height:90%;
  width:100%;
  position:absolute;
  }

  /* -----gallery----- */

  .gallery-image {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-image img {
    height: 250px;
    width: 350px;
    transform: scale(1.0);
    transition: transform 0.4s ease;
  }
  
  .img-box {
    box-sizing: content-box;
    margin: 10px;
    height: 250px;
    width: 350px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: rgb(255, 255, 255);
  }
  
  .caption {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .transparent-box {
    height: 250px;
    width: 350px;
    background-color:rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
  }
  
  .img-box:hover img { 
    transform: scale(1.1);
  }
  
  .img-box:hover .transparent-box {
    background-color:rgba(0, 0, 0, 0.5);
  }
  
  .img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1.0;
  }
  
  .img-box:hover {
    cursor: pointer;
  }
  
  .caption > p:nth-child(2) {
    font-size: 0.8em;
  }
  
  .opacity-low {
    opacity: 0.5;
  }
  /* --Updates--- */
  
  .full-wrapper {
    width:100%;
    margin-bottom: 45px;
  }
  
  .article-header-h1{
    padding-top:50px;
    margin:0;
    font-size:40px;
    font-weight:bold;
    text-align:center;
    font-family: 'Sunflower', sans-serif;
  }
  
  .article-h1 a {
    color:black;
    text-align:left !important;
  }
  
  .article-h1 a:hover {
    color:black;
  }
  
  .article-h1 a:visited {
    color:black;
  }
  
  .inner-wrapper {
    padding:0px;
    margin-bottom: -60px;
  }
  
  .article-preview{
    background-color:white;
    margin-left:auto;
    margin-right:auto;
    box-shadow: 0.5px 0.10px 10px -1px #ccc;
    border-left:4px solid #0f225e;
    cursor:pointer;
  }
  
  @media (min-width: 1024px){
    .article-preview{
    background-color:white;
    min-width:902px;
    max-width:50%;
    margin-left:auto;
    margin-right:auto;
  }
  }
  
  @media (min-width: 1280px){
    .article-preview{
    background-color:white;
    min-width:902px;
    max-width:50%;
    margin-left:auto;
    margin-right:auto;
    transition:.2s;
  }
    
    .article-preview:hover{
    transform:scale(1.02);
  }
  }
  
  @media (max-width: 768px){
    .article-preview{
    background-color:white;
    width:100%;
    margin-left:auto;
    margin-right:auto;
  }
    .inner-wrapper {
      padding:50px 10px;
      margin-bottom: -60px;
  }
  }
  
  .article-h1,
  .article-p,
  .article-link,
  .article-date{
    text-align: left !important;
    margin-left:30px !important;
    margin-right:30px !important;
    font-family: 'Sunflower', sans-serif;
  }
  
  .full-wrapper a {
    text-decoration: none;
  }
  
  .article-date {
    margin-bottom: -20px;
    padding-top: 25px;
    font-weight:normal;
    color:#767676;
    font-size:15px;
  }
  
  .article-h1{
    font-size:20px !important;
    padding-top:25px;
  }
  
  .article-p {
    color:#767676;
    font-weight:normal;
    max-width:90%;
  }
  
  .article-link a {
    margin-top:10px;
    color:#212529 !important;
    font-weight:bold;
  }
  
  .article-link:hover a {
    color:#212529 ;
  }
  
  .article-breaker{
    border-bottom:1px solid #E8E8E8;
    padding-top:20px;
  }
  
  .article-breaker-last {
    padding-top:20px;
  }

  /* ---footer----- */
  
  ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #1c4739;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #3f1d1d;
}
.single-cta i {
  color: #3f1d1d;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #fff;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
    max-width: 120px;
    border-radius: 50px;
    align-items: center;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #fff;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  margin-left: 55px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.instagram-bg{
  background: #8a0273;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #3f1d1d;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #3f1d1d;
}
.footer-widget ul li a {
  color: #fff;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #3f1d1d;
    padding: 13px 20px;
    border: 1px solid #3f1d1d;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  text-align: center;
  margin: 0;
  font-size: 15px;
  color: #dac4c4;
}
.copyright-text p a{
  color: #f33f3f;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #f33f3f;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

  /* -------accnt-------- */
  #wrapper {
    width: 100%;
    overflow-x: hidden;
  }
  .wrapper {
    padding: 0 20px;
  }
  .wrapper-content {
    padding: 20px 10px 40px;
  }
  #page-wrapper {
    padding: 0 15px;
    min-height: 568px;
    position: relative !important;
  }
  @media (min-width: 768px) {
    #page-wrapper {
      position: inherit;
      margin: 0 0 0 240px;
      min-height: 2002px;
    }
  }
  
  /* Payments */
  .payment-card {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #e7eaec;
  }
  .payment-icon-big {
    font-size: 60px;
    color: #d1dade;
  }
  .payments-method.panel-group .panel + .panel {
    margin-top: -1px;
  }
  .payments-method .panel-heading {
    padding: 15px;
  }
  .payments-method .panel {
    border-radius: 0;
  }
  .payments-method .panel-heading h5 {
    margin-bottom: 5px;
  }
  .payments-method .panel-heading i {
    font-size: 26px;
  }
  
  .payment-icon-big {
      font-size: 60px !important;
      color: #d1dade;
  }
  
  .form-control,
  .single-line {
    background-color: #FFFFFF;
    background-image: none;
    border: 1px solid #e5e6e7;
    border-radius: 1px;
    color: inherit;
    display: block;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
    font-size: 14px;
  }
  .text-navy {
      color: #1ab394;
  }
  .text-success {
      color: #1c84c6;
  }
  .text-warning {
      color: #f8ac59;
  }
  .ibox {
    clear: both;
    margin-bottom: 25px;
    margin-top: 0;
    padding: 0;
  }
  .ibox.collapsed .ibox-content {
    display: none;
  }
  .ibox.collapsed .fa.fa-chevron-up:before {
    content: "\f078";
  }
  .ibox.collapsed .fa.fa-chevron-down:before {
    content: "\f077";
  }
  .ibox:after,
  .ibox:before {
    display: table;
  }
  .ibox-title {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #ffffff;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 3px 0 0;
    color: inherit;
    margin-bottom: 0;
    padding: 14px 15px 7px;
    min-height: 48px;
  }
  .ibox-content {
    background-color: #ffffff;
    color: inherit;
    padding: 15px 20px 20px 20px;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 0;
  }
  .ibox-footer {
    color: inherit;
    border-top: 1px solid #e7eaec;
    font-size: 90%;
    background: #ffffff;
    padding: 10px 15px;
  }
  .text-danger {
      color: #ed5565;
  }


  /* ----gallery---- */

.gal {
  display: flex;
  max-width: 1440px;
  gap: 2em;
  justify-content: space-between;
  margin: 5em 2em;
}

.galtext {
  width: 40%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: sans-serif;
}

.text__short {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #479A7E;
}

.text__title {
  line-height: 1.1;
  margin: 0;
}

.text__description {
  line-height: 145%;
  font-size: 1em;
  font-weight: 300;
  padding-bottom: 1em;
}

.text__button {
  max-width: 120px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: #479A7E;
  padding: 1em 2em;
  border-radius: 0.5em;
}

.grid__container {
  min-width: 60%;
  display: grid;
  grid-gap: .5em;
  grid-template-columns: repeat(8, 1fr);
}

.grid__item {
  background-color: grey;
  border-radius: 0.5em;
}

.one {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background-image: url(//img.freepik.com/free-photo/fishing-boat-sea-thailand_1373-475.jpg?size=626&ext=jpg&uid=R67845320);
  background-position: center;
  background-size: cover;
}

.two { 
  grid-column: 2 / 5;
  grid-row: 1 / 4;
  background-image: url(//img.freepik.com/free-photo/wide-shot-wooden-small-boats-water-with-african-american-person-one-them_181624-1827.jpg?size=626&ext=jpg&uid=R67845320);
  background-position: center;
  background-size: cover;
}

.three {
  grid-column: 5 / 6;
  grid-row: 1 / 2;
  background-image: url(//img.freepik.com/free-photo/vertical-shot-small-wooden-boat-parked-near-seashore_181624-49280.jpg?size=338&ext=jpg&uid=R67845320);
  background-position: center;
  background-size: cover;
}

.four {
  grid-column: 6 / 7;
  grid-row: 1 / 2;
  background-color: #FDF5DD;
  border-radius: 0 0 100px 0;
  -moz-border-radius: 0 0 100px 0;
  -webkit-border-radius: 0 0 100px 0;
}


.five {
  grid-column: 5 / 7;
  grid-row: 2 / 4;
  background-image: url(//img.freepik.com/free-photo/aerial-view-container-cargo-ship-sea_335224-722.jpg?size=626&ext=jpg&uid=R67845320);
  background-position: center;
  background-size: cover;
}

.six {
  grid-column: 7 / 8;
  grid-row: 2 / 3;
  background-color: #D3F0EE;
  border-radius: 0 100px 0 0;
  -moz-border-radius: 0 100px 0 0;
  -webkit-border-radius: 0 100px 0 0;
}

.seven {
  grid-column: 7 / 8;
  grid-row: 3 / 4;
  background-image: url(//img.freepik.com/free-photo/container-cargo-ship-carrying-container-business-freight-import-export_35024-672.jpg?size=626&ext=jpg&uid=R67845320);
  background-position: center;
  background-size: cover;
} 

.eight {
  grid-column: 8 / 9;
  grid-row: 3 / 4;
  border-radius: 50%;
  background-color: #CED7ED;
}

.nine {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  background-color: #FADEE0;
  border-radius: 100px 0 0 0;
  -moz-border-radius: 100px 0 0 0;
  -webkit-border-radius: 100px 0 0 0;
}

.ten {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
  background-image: url(//img.freepik.com/free-photo/industrial-container-cargo-freight-shipping-by-crane-logistic-import-export-shipyard_33835-420.jpg?size=626&ext=jpg&uid=R67845320);
  background-position: center;
  background-size: cover;
}

.eleven {
  grid-column: 3 / 5;
  grid-row: 4 / 6;
  background-image: url(//img.freepik.com/free-photo/dock-submarine-shipbuilding-kobe-bay-july-9-2015-kobe-japan_258052-1633.jpg?size=626&ext=jpg&uid=R67845320);
  background-position: center;
  background-size: cover;
}

.twelve {
  grid-column: 5 / 6;
  grid-row: 4 / 5;
  background-image: url(//img.freepik.com/free-photo/aerial-view-ship_144627-45269.jpg?size=626&ext=jpg&uid=R67845320);
  background-position: center;
  background-size: cover;
}

@media (max-width: 900px) {
  .grid__container {
    min-width: 50%;
    height: 400px;
    margin-top: 50px;
}
  
  @media (max-width: 780px) {
    .gal {
      flex-direction: column-reverse;
      margin: 2em 2em;
    }
    
    .galtext {
      width: 100%;
    }
  }
}

/* ---photos--- */

.gallery {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 18.75vw;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
  float: none;
}

.gallery__item figure {
  width: 100%;
  height: 100%;
}

.gallery__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(.72);
  opacity: .96;
  transition: all 240ms cubic-bezier(0.47, 0, 0.745, 0.715);
}

.gallery__item:hover img {
  opacity: 1;
  filter: contrast(1);
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 64px 16px 16px;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.72));
  color: white;
  opacity: 0;
  transform: translate3d(0,24%,0);
  transition: all 240ms cubic-bezier(0.47, 0, 0.745, 0.715);
}

.gallery__item:hover figcaption {
  opacity: 1;
  transform: translate3d(0,0,0);
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .gallery__item:nth-child(7n+3) {
      grid-column: span 2;
      grid-row: span 2;
      max-height: calc(37.5vw + 2px);
  }
}

@media screen and (max-width: 1024px) and (min-width: 640px) {

  .gallery {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 25vw;
  }
  .gallery__item:nth-child(9n+2) {
      grid-column: span 2;
      grid-row: span 2;
      max-height: calc(50vw + 2px);
  }
}
@media screen and (max-width: 640px) {
  .gallery {
      display: block;
      margin: 16px;
  }
  .gallery__item:not(last-of-type):after {
      content:'';
      display: block;
      width: 100%;
      height: 16px;
  }
}

.lognes{
  color: #fff;
}