html, body {
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: Poppins, sans-serif;
  display: grid;
  grid-template-areas: 
    'header header header header header header'
    'main main main main main main' 
    'footer footer footer footer footer footer';
  grid-column-gap: 10px;
  background-color: #ededed;
  line-height: 2;

  /*scrollbar*/
  overflow-y: auto;
  direction: ltr;
  scrollbar-color: #FFF #BAC5ED;
  scrollbar-width: thin;
}


header{
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0px;
  display: inline-grid;
  grid-template-areas: 
    'name name name nav nav nav';
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 1;
  margin: 0;
}

header a{
  text-decoration: none;
  color:  black;
  font-size: x-large;
}

#navbar {
  text-align: center;
  display: grid;
  grid-area: nav;
  align-self: center;
  top: 0px;
  left: 0px;
}

#contactbt{
  padding: 0px 90px 0px 0px;
}

#workbt{
  padding: 0px 90px 0px 0px;
}

#aboutbt{
  padding: 0px;
}

main {
  display: grid;
  grid-area: main;
  margin-top: 186px;
}

/*Footer*/
footer{
  background-color: #00376a;;
  display: grid;
  grid-area: footer;
  grid-template-areas: 
  'message contact'
  'design design';
  width: 100%;

  /*equal columns*/
  grid-auto-columns: 1fr;
   grid-auto-flow: column;
}

footer a {
  color: #fff;
  text-decoration: none;
}

#contact-info p , h4{
  color: #fff;
}

#message-cwa{
  grid-area: message;
  padding-left: 50px;
  padding-right: 50px;
}

form{
  display: grid;
  grid-template-areas:
  'email emailfield emailfield emailfield emailfield'
  'text text text text text'
  'send cancel cancel cancel cancel';
}

label[id=client-email]{
  grid-area: email;
  grid-auto-columns: auto;
}

#client-email{
  grid-area: emailfield;
}

#client-message{
  grid-area: text;
}

input[type=submit]{
  grid-area: send;
}

#contact-info{
  grid-area: contact;
  padding-left: 50px;
}

input[type=text] {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: none;
  border-radius: 0px;
  box-sizing: border-box;
  background-color: #BAC5ED;
}

textarea {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: none;
  border-radius: 0px;
  box-sizing: border-box;
  background-color: #BAC5ED;
  font-size: 16px;
  resize: none;
  height: 200px;
  /*scrollbar*/
  overflow-y: auto;
  direction: ltr;
  scrollbar-color: #FFF #BAC5ED;
  scrollbar-width: thin;
}

input[type=submit] {
  cursor: pointer;
  width: 100%;
  background-color: #5879EF;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-weight: normal;
}

#client-message {
  width: 100%;
}

label[for=client-email]{
  font-weight: bold;
  color: #fff;
  align-self: center
}

#footlinks{
  grid-area: design;
  padding-top: 3.5em;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  align-self: end;
  flex-direction: column;
}

#footlinks a{
  padding: 5px;
}

----------------

/* SLIDER external css: flickity.css */
/*
*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*/
.gallery {
  background: #EEE;
}

.gallery-cell {
  width: 100%;
  height: 500px;
  margin-right: 10px;
  background: #DFDFDF;
  counter-increment: gallery-cell;
}

/*INDEX SLIDER*/
#slide-1{
  background-image: url('../img/skn.png');
  background-position: center;
}

#slide-2{
  background-image: url('../img/beach.png');
  background-position: center;
}

#slide-3{
  background-image: url('../img/dcw1.png');
}

#slider {
  text-align: center;
  font-size: larger;
}

.gallery-cell div{
  background-color: rgba(0, 0, 0, 0.15);
  padding-top: 6px;
  padding-bottom: 6px;
  margin-top: 0px;
}


/* cell number 
.gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}
*/

/*INDEX SLIDER END*/

/*CBI SLIDER*/
.gallery-cell-CBI {
  width: 75%;
  height: 200px;
  margin-right: 10px;
  background: #DFDFDF;
  counter-increment: gallery-cell;
  display: table;
}

.gallery-cell-CBI p{
  display:flex;
  align-items:center;
  height:200px;
  justify-content:center;
  /*margin-left: 40px;
  margin-right: 40px; */
  }



/*CBI SLIDER END*/


#services {
  display: grid;
  grid-template-areas: 
  'title title title'
  'service service service'
  'service service service'
  'banner banner banner';
  grid-row-gap: 25px;
}

#main-services {
  display: grid;
  grid-template-areas: 
  'title title title'
  'about about about'
  'service service service'
  'service service service'
  'banner banner banner';
  grid-row-gap: 25px;
}

#more-services{
  display: grid;
  grid-template-areas: 
  'title title title'
  'about about about'
  'service service service'
  'banner banner banner';
  grid-row-gap: 25px;
}

/*#CBI-services{
  display: grid;
  grid-template-areas:
  'title title title'
  'service service service'
  'service service service';
}

#services-CBI p {
  display: grid;
  grid-area: title;
}

.country-div {
    display: grid;
  grid-area: service;
}*/

section h2{
  grid-area: title;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 50px;
}

#about-main , #about-more , #details div {
  grid-area: about;
  padding-left: 200px;
  padding-right: 200px;
}

.services-div {
  text-align: center;
}

#services a{
  text-decoration: none;
  color: black;
}

#banner-services{
  background-color: grey;
  background-image: url("../img/handshake.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-size: cover;
  grid-area: banner;
  height: 30em;
  width: 100%;
}

.banner-CBI-country{
  background-color: ;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-size: ;
    height: 30em;
  width: 100%;
}

#banner-nevis{
  background-image: url("../img/kn-pass.png");
}

#banner-antigua{
  background-image: url("../img/antigua-pass.png");
}

#banner-dominica{
    background-image: url("../img/dominica-pass.png");
}

#banner-lucia{
    background-image: url("../img/lucia-pass.png");
}

#banner-malta{
    background-image: url("../img/malta-pass.png");
}

#banner-turkey{
    background-image: url("../img/turkey-pass.png");
}

#banner-grenada{
    background-image: url("../img/grenada-pass.png");
}

#banner-vanatu{
    background-image: url("../img/vanatu-pass.png");
}

#about-cwa div{
  font-size: larger;
  padding-bottom: 85px;
  grid-template-columns: auto;
}

#cwa-history, #cwa-focus {
  display: grid;
  grid-template-areas: 
  'photo title title'
  'photo text text'
  'photo text text';
  grid-column-gap: 50px;
}

#cwa-mission{
   display: grid;
  grid-template-areas: 
  'title title photo'
  'text text photo'
  'text text photo';
  grid-column-gap: 50px;
}

#about-cwa img {
  display: grid;
  grid-area: photo;
}

#about-cwa h3 {
  display: grid;
  grid-area: title;
}

#about-cwa p {
  display: grid;
  grid-area: text;
}

.pair-p{
  padding-right: 140px;
}

.none-p{
  padding-left: 140px;
}

#cwa-mission h3 {
  padding-left: 140px;
}

#profile {
  display: grid;
  grid-template-areas:
  'photo text text'
  'photo text text';
}

#diana-cw {
  display: grid;
  grid-area: photo;
      margin-top: 25px;
  margin-bottom: 25px;
}
}

#profile img {
  width: 100%;
  height: auto;
}

#profile p {
  display: grid;
  grid-area: text;
  margin-left: 60px;
  margin-top: 60px;
  margin-right: 60px;
  font-size: larger;
}

#texto-p {
  grid-area: text;
  display:flex;
  align-items:center
}

#more-services{
  padding-bottom: 50px;
}




#advantages, #liltext{
  text-align: center;
}

#liltext{
  margin-top: 50px;
}

#CBI-services, #RBI-services {
  display: grid;
  grid-template-areas:
  'title title title title'
  'c1 c2 c3 c4'
  'c5 c6 c7 c8';
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
}



#skn , #aus {
  grid-area: c1;
}

#ab , #cyp{
  grid-area: c2;
}

#dmc , #fr{
  grid-area: c3;
}

#lu , #pm{
  grid-area: c4;
}

#mt{
  grid-area: c5;
}

#tk, #po{
  grid-area: c6;
}

#vt , #sp{
  grid-area: c7;
}

#gn {
  grid-area: c8;
}

#visa-free{
  columns: 4;
  column-gap: 40px;
  text-align: left;
  padding-left: 200px;
  padding-right: 200px;
}

--------------------
.section {
  width: 100%;
}

.container {
  position: relative;
  width: 1170px;
  margin: 0 auto;
  color: #444;
  font-size: 14px;
  font-weight: 300;
  font-family: Poppins, 'Open Sans', Arial, sans-serif;
  overflow: hidden;
}

.section .container {
  padding: 30px 0 50px 0;
}

/**/

.section .slider,
.section .footer {
  background-image: url("../img/dianab.jpg" );;
}

.slidercontent {
  text-align: center;
}

.hero {
  font-family: 'Roboto Slab', sans-serif;
  color: white;
  font-weight: normal;
  letter-spacing: 1px;
}

h1.hero {
  font-size: 54px;
}

h2.hero {
  font-size: 30px;
  margin-bottom: 60px;
}

h1.hero:after {
  content: "";
  width: 300px;
  position: relative;
  border-bottom: 1px solid #aaa;
  text-align: center;
  margin: auto;
  margin-top: 15px;
}

.call {
  color: white;
  display: block;
  margin-bottom: 20px;
}

.call span {
  display: inline;
  border: 1px solid white;
  padding: 8px 13px;
  font-size: 20px;
  transition: background 0.15s linear;
}

.call span:hover {
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

/*YURi */
@media (max-width: 350px){
 #services{
   display: block;
 }
}
@media (max-width: 732px) {

/* YURI   #slider button */
/*  padding-right: 200px; */
#navbar nav a {
   display:none; 
}
main {
  margin-top: 80px;
}
/* El body&footer y sus grid tienen problemas cuando la pantalla es peque, entonces le pongo block para que se vea mejor pero esa no es la solucion; inspecciona bien el grid o ajustalo cuando esta en estas dimensiones */
body, footer{
  display:block;
}
/* esta imagen la centro pq en modo movil no se ve nada*/
#slide-3{
  background-position: center;
}
/*YURITO FIN*/

header {
  grid-template-areas: 'name nav nav nav nav nav';
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  grid-template-columns: 200px;
}

#header img {
  width: 100%;
  height: auto;
}

header a{
  font-size: large;
}

#contactbt{
  padding: 0px 10px 0px 0px;
}

#workbt{
  padding: 0px 10px 0px 0px;
}

#aboutbt{
  padding: 0px;
}

#about-cwa img {display: none}

#contact-info img {max-width: 150%;
height: auto;
margin-right: 33px;
margin-left: -20px;
}

#about-cwa div {
  font-size: initial;
}

.services-div {
  font-size: initial;
}

}



@media all and (min-width: 576px) {
          .subgrid {
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            margin-bottom: 1rem;
          }
          .subgrid-item {
            padding-bottom: 0.25rem;
          }
        }