@media only screen and (max-width:320px) {
    * {
        box-sizing: border-box;
    }
    
    html {
        height: 100%;
    } 
    
    body {
        height: 100%;
        font-family: "Poppins", sans-serif;
        flex-direction: column;  
        width: 100%; 
        margin:0px;
        padding: 0px;
        background: white;
    }    

/* service, articles & contact pages */
    .main-page-container {
        min-height: 100%;
        display: block;
        width: 100%;
        margin:auto;
        overflow: hidden;
    }

.main-page-container .page-heading {
  margin-top: 30px;
  color: #555;
  padding: 0px 20px 0px 20px;
  margin-bottom: -30px;
}       

.main-page-container .page-heading h1 {
  display: block;
  width: 100%;
  margin-top: -40px;
  text-align: center;
}

.main-page-container .page-heading h2 {
    display: block;
    width: 100%;
    text-align: center;
  }

.main-page-container .page-heading .image-articles img {
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 10px;
  }

.main-page-container .page-heading p {
    display: block;
    margin: auto;
    text-align: center;
}

.main-page-container .row {
    display: block;
    width:90%;
}

.main-page-container .row .row-1 {
    display: block;
    width:90%;
    margin-right: 20px;
}

.main-page-container .row-1 .col-services {
    display: block;
    width:100%;
}

.main-page-container .row-1 .col-services p {
    display: block;
    font-size: .8rem;
    width: 100%;
}

/* EACH ARTICLE-POSTING-DATE-AUTHOR */
.main-page-container .page-heading .posting-date-author {
    text-align: center;
  } 

/* ALL-ARTICLES-ONE-PAGE */
.grid-container-articles {
    display: block;
    margin: auto;
    width: 90%;
    height: 100%;
 }

 .grid-container-articles .grid-item-articles {
    width: 100%;
    height: fit-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 10px 0px 20px 0px;
 }

 .grid-container-articles .grid-item-articles h2 {
    text-align: center;
    padding-right: 15px;
 }

 .grid-container-articles .grid-item-articles .image-articles img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
 }

 .grid-container-articles .grid-item-articles .posting-date-author {
    font-size: .8em;
    text-align: center;
    padding-right: 15px;
 }

 .grid-container-articles .grid-item-articles .text-articles {
    padding: 0px 10px 0px 10px;
    margin-top: 10px;
    text-align: center;
 }

 .main-page-container .row .row-1 .col-articles p {
    color: #111;
    text-align: center;
    padding-left: 20px;
    padding-right: 5px;
   }
  
  .main-page-container .row .row-1 .col-articles {
      margin-left: 10px;
      margin-right: 20px;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      justify-content: space-between;
      /* border-bottom: 5px solid transparent; */
      transition: 1s;
   }

.main-page-container .page-button { 
    padding: 8px 30px;
    border-radius: 30px;
    margin: auto;
    margin-top: 20px;
    margin-left: 70px;
}

 /* CONTACT */
.page-container-contact {
    width: 100%;
    display: block;
    padding-bottom: 20px;
    padding-top: 20px;
    margin: auto;
    margin-top: 80px;
}

.page-container-contact .contact-wrapper {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    display: block;
    margin: auto;
}

.page-container-contact .contact-wrapper .contact-logo img {
    margin: auto;
    margin-left: 35px;
}

.page-container-contact .contact-wrapper .contact-phone-number {
    display: flex;
    margin-right: 30px;
 } 

.page-container-contact .contact-wrapper .contact-phone-number i {
    margin-top: 20px;
    margin: auto;
}

.page-container-contact .contact-wrapper .contact-whatsapp-number {
    display: flex;
    margin-right: 30px;
 } 

.page-container-contact .contact-wrapper .contact-whatsapp-number i {
    margin-top: 20px;
    margin: auto;
}

.page-container-contact .contact-wrapper .socials {
    display: flex;
}


.page-container-contact .contact-wrapper .socials a {
    width: 100%;
    padding: 5px;
    text-align: center;
    display: inline-block;
    font-size: 1.2em;
    color: #111;
    border-radius: 5px;
    transition: all .3s;
}

.page-container-contact .contact-wrapper .socials a {
    border: 1px solid transparent;
}

.page-container-contact .contact-wrapper .socials a:hover {
    color: goldenrod;
    transition: all .3s;
}

.page-container-contact .contact-wrapper .contact-email {
    text-decoration: none;
    color: black;
}

.page-container-contact .form {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;
} 

 .form .form-group {
    width: 100%;
    margin-top: 5px;
    padding-top: 5px;
}

.form .form-group input {
    font-size: .9rem;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 2px;
    border:none;
    border-bottom: 3px solid#11122b;
    width: 100%;
    transition: all 0.3s;
}

.form .form-group input:focus {
outline:none;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
border-bottom: solid #cea135;
}

.form .form-group textarea {
    margin-top: 20px;
    width: 100%;
    height: 250px;
    border-radius: 3px;
    border: 3px solid#11122b;
    font-size: .9rem;
    font-family: inherit;
    color: color;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
}

.form .form-group textarea:focus {
    outline:none;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
    border: solid #cea135;
    }

    .form .form-group input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
    color: #11122b;
    }

    .form .form-group input:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
        color: transparent;
        }

.form .form-group label {
    font-size: 1rem;
    font-weight: 700;
    margin-left: 2rem;
    margin-top: .2rem;
    padding-bottom: 15px;
    display: block;
    transition: all 0.3s;
    color: #cea135;
    visibility: hidden;
    opacity: 0;
}

.form .form-group input:focus + label, .form textarea:focus +  label {
opacity: 1;
visibility: visible;
transform: translateY(1rem);
}

.form .center-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
 }

 .form .center-btn-wrapper button {
    color: white;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background: #111;
    font-size: 1.25em;
    padding: 10px 25px;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
    cursor: pointer;
 }
 
 .form .center-btn-wrapper button:hover {
     box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
     background: goldenrod;
     color: #111;
  }

  /* ABOUT-PAGE */
.fb-page {
    display: block;
    width: 100%;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 70px;
}

/* footer */
.footer {
    display: block;
    width: 100%;
    height: 1100px;
    background: #303036;
    color: #686868;
    margin-top: 50px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    margin-bottom: -50px;
}

.footer .footer-content {
    width: 100%;
    height: 100%;
    display: block;
    padding-bottom: 20px;
    text-overflow: ellipsis;
    margin: auto;

}

.footer .footer-content .footer-section {
    width: 100%;
    margin: auto;
    height: 100%;
    margin-right: 20px;
}

.footer .footer-content .about {
    width: 100%;
    height: 350px;
    color: #686868;
    margin: auto;
    text-align: center;
    margin-left: -2px;
}

.footer .footer-content .footer-section img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
    margin-top: -10px;
    margin-left: -60px;
}

.footer .footer-content p {
    color: #686868;
    align-items: center;
    margin-left: -50px;
}

.footer .footer-content .links {
    width: 100%;
    height: 350px;
    color: #686868;
    margin: auto;
    /* margin-left: -2px; */
    margin-top: 30px;
}

.footer .footer-content .links h2 {
    color: #686868;
    font-size: 1.5rem;
    margin-left: 25px;
}


.footer .footer-content .links ul a {
    color: #686868;
    list-style: none;
    font-size: 1rem;
    text-align: center;
    margin-left: -80px;
}

.footer .footer-content .links ul a :hover {
    color: white;
}

.footer .footer-content .contact-details {
    width: 100%;
    height: 350px;
    margin: auto;
    margin-left: -2px;
    margin-top: -20px;
}


.footer .footer-content .contact-details h2 {
    width: 100%;
    color: #686868;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-top: -10px;
}

.footer .footer-content .contact-details .contact {
    width: 100%;
    margin-left: -15px;
    text-align: center;
}

.footer .footer-content .contact-details .contact .socials {
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15%;
    justify-content: space-between;
}

.footer .footer-content .contact-details .contact .socials a {
    width: 45px;
    height: 41px;
    padding-top: 5px;
    margin-right: 5px; 
    text-align: center;
    display: inline-block;
    font-size: 1.3em;
    color: #686868;
    border-radius: 3px;
    transition: all .3s;
}

.footer .footer-content .contact-details .contact .socials a:hover {
    color: white;
}

.footer .footer-content .contact-details .contact span a {
    width: 100%;
    color: #686868;
}

.footer .footer-bottom {
    /* padding-bottom: 50px; */
    background: #343a40;
    color: #686868;
    width: 100%;
    padding: 0 10px 0 10px;
    position: absolute;
    height: 60px;
    font-size: .9rem;
    padding-top: 10px;
    margin-top: 10px;
}
}


@media only screen and (max-width: 480px) and (min-width: 321px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        height: 100%;
        font-family: "Poppins", sans-serif;
        flex-direction: column;  
        width: 100%; 
        margin:0px;
        padding: 0px;
        text-align: center;
    }

/* service, articles & contact pages */
.main-page-container {
  display: block;
  width: 90%;
  min-height: 100%;
  margin:auto;
  /* overflow: hidden; */
}

.main-page-container .page-heading {
  margin-top: 30px;
  color: #555;
  padding: 0px 20px 0px 20px;
  margin-bottom: -25px;
}       

.main-page-container .page-heading h1 {
  display: block;
  width: 100%;
}

.main-page-container .page-heading p {
    display: block;
    text-align: center;
}

.main-page-container .page-heading .image-articles img {
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 10px;
  }

.main-page-container .row {
    display: block;
    width:95%;
    margin-bottom: 20px;
}

.main-page-container .row-1 .col-services {
    display: block;
    width:95%;
    margin-left: 10px;
}

.main-page-container .row-1 .col-services p {
    display: block;
    font-size: .8rem;
    width: 100%;
}

.main-page-container .page-button { 
    padding: 8px 30px;
    border-radius: 30px;
    margin: auto;
}

/* EACH ARTICLE-POSTING-DATE-AUTHOR */
.main-page-container .page-heading .posting-date-author {
    text-align: center;
  } 

/* ALL-ARTICLES-ONE-PAGE */
.grid-container-articles {
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
 }

 .grid-container-articles .grid-item-articles {
    width: 100%;
    height: fit-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-bottom: 2px;
    padding: 10px 0px 20px 0px;
 }

 .grid-container-articles .grid-item-articles h2 {
    text-align: center;
    padding-left: 15px;
 }

 .grid-container-articles .grid-item-articles .image-articles img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
 }

 .grid-container-articles .grid-item-articles .posting-date-author {
    font-size: .8em;
    padding-right: 15px;
    text-align: center;
 }

 .grid-container-articles .grid-item-articles .text-articles {
    padding: 0px 10px 0px 10px;
    margin-top: 10px;
 }

 .main-page-container .row .row-1 .col-articles p {
    color: #111;
    text-align: center;
    padding-left: 20px;
    padding-right: 5px;
   }
  
  .main-page-container .row .row-1 .col-articles {
      margin-left: 10px;
      margin-right: 20px;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      justify-content: space-between;
      transition: 1s;
   }

.main-page-container .page-button { 
    padding: 8px 30px;
    border-radius: 30px;
    margin: auto;
    margin-top: 20px;
}

/* ABOUT-PAGE */
.fb-page {
    display: block;
    width: 100%;
    height: 50%;
    margin: auto;
    /* margin-top: 70px; */
    border: 1px solid red;
    padding-bottom: 50px;
    display: none;
}

 /* CONTACT */
 .main-page-container .page-container-contact {
    width:100%;
    display: block;
    padding: 20px 20px 20px 20px;
    margin: auto;
}

.main-page-container .page-container-contact .contact-wrapper {
    width: 100%;
    font-size: 2rem;
}

.page-container-contact .contact-wrapper .contact-logo img {
    margin: auto;
    margin-left: -30px;
    display: none;
}

.contact-wrapper .contact-phone-number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #111;
    font-size: 1.5rem;
    width: 90%;
    text-align: center;
    margin-left: 20px;
}

.contact-wrapper .contact-phone-number i {
    margin-top: 20px;
    margin: auto;
    margin-right: -40px;
}

.contact-wrapper .contact-phone-number a {
    margin: auto;
}

.contact-wrapper .contact-whatsapp-number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    width: 90%;
    text-align: center;
    margin-left: 20px;
}

.contact-wrapper .contact-whatsapp-number i {
    margin-top: 20px;
    margin: auto;
    margin-right: -40px;
}

.contact-wrapper .contact-whatsapp-number a {
    margin: auto;
}

.page-container-contact .contact-wrapper .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -30px;
}


.contact-wrapper .socials a {
    width: 100%;
    padding: 5px;
    text-align: center;
    display: inline-block;
    font-size: 1.2em;
    color: #111;
    border-radius: 5px;
    transition: all .3s;
}

.contact-wrapper .socials a {
    border: 1px solid transparent;
}

.contact-wrapper .socials a:hover {
    color: goldenrod;
    transition: all .3s;
}

.page-container-contact .contact-wrapper .contact-email {
    text-decoration: none;
    color: black;
}

.page-container-contact .form {
    display: block;
} 

.form .center-btn-wrapper button {
   color: white;
   margin: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 70px;
   background: #111;
   font-size: 1.25em;
   padding: 10px 25px;
   border-radius: 5px;
   outline: none;
   transition: 0.3s;
   cursor: pointer;
}

.form .center-btn-wrapper button:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    background: goldenrod;
    color: #111;
 }

.form input {
    font-size: 1.2em;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 2px;
    border:none;
    border-bottom: 3px solid#11122b;
    width: 100%;
    display: block;
    transition: all 0.3s;
}

.form input:focus {
outline:none;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
border-bottom: solid #cea135;
}

.form textarea {
    margin-top: 20px;
    width: 100%;
    height: 250px;
    border-radius: 3px;
    border: 3px solid#11122b;
    font-size: 1.2em;
    font-family: inherit;
    color: color;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
}

.form textarea:focus {
    outline:none;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
    border: solid #cea135;
    }

    .form input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
    color: #11122b;
    }

    .form input:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
        color: transparent;
        }

.form .form-group label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 2rem;
    margin-top: 0.4rem;
    display: block;
    transition: all 0.3s;
    color: #cea135;
    visibility: hidden;
    opacity: 0;
    
}

.form .form-group input:focus + label, .form textarea:focus +  label {
opacity: 1;
visibility: visible;
transform: translateY(1rem);
}

/* footer */
.footer {
    display: block;
    width: 100%;
    height: 1100px;
    background: #303036;
    color: #686868;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    margin-bottom: -50px;
}

.footer .footer-content {
    width: 100%;
    height: 100%;
    display: block;
    padding-bottom: 20px;
    text-overflow: ellipsis;
    margin: auto;
}

.footer .footer-content .footer-section {
    width: 100%;
    margin: auto;
    height: 100%;
    margin-right: 20px;
}

.footer .footer-content .about {
    width: 100%;
    height: 350px;
    color: #686868;
    margin: auto;
    text-align: center;
    margin-left: -2px;
}

.footer .footer-content .footer-section img {
    width: 216px;
    margin: auto;
    margin-top: -20px;
    margin-left: -60px;
}

.footer .footer-content p {
    color: #686868;
    /* margin-top: -10px; */
    align-items: center;
    margin-left: -50px;
}

.footer .footer-content .links {
    width: 100%;
    height: 350px;
    color: #686868;
    margin: auto;
    margin-left: -2px;
    margin-top: 30px;
}

.footer .footer-content .links h2 {
    color: #686868;
    font-size: 1.5rem;
    margin-left: -30px;
    margin-top: -30px;
}


.footer .footer-content .links ul a {
    color: #686868;
    list-style: none;
    font-size: 1rem;
    text-align: center;
    margin-left: -70px;
}

.footer .footer-content .links ul a :hover {
    color: white;
}

.footer .footer-content .contact-details {
    width: 100%;
    height: 350px;
    margin: auto;
    margin-left: -2px;
    margin-top: -20px;
}


.footer .footer-content .contact-details h2 {
    width: 100%;
    color: #686868;
    margin-bottom: 30px;
    margin-left: -10px;
    margin-top: -10px;
}

.footer .footer-content .contact-details .contact {
    width: 100%;
    margin-left: -15px;
}

.footer .footer-content .contact-details .contact .socials {
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15%;
    margin-left: 76px;
}

.footer .footer-content .contact-details .contact .socials a {
    width: 45px;
    height: 41px;
    padding-top: 5px;
    margin-right: 5px; 
    text-align: center;
    display: inline-block;
    font-size: 1.3em;
    color: #686868;
    border-radius: 3px;
    transition: all .3s;
}

.footer .footer-content .contact-details .contact .socials a:hover {
    color: white;
}

.footer .footer-content .contact-details .contact .socials a:hover {
    color: white;
}

.footer .footer-content .contact-details .contact span a {
    width: 90%;
    color: #686868;

}

.footer .footer-bottom {
    /* padding-bottom: 50px; */
    background: #343a40;
    color: #686868;
    width: 100%;
    padding: 0 10px 0 10px;
    position: absolute;
    height: 60px;
    font-size: .9rem;
    padding-top: 10px;
}

}

@media only screen and (max-width:600px) and (min-width: 481px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        height: 100%;
        font-family: "Poppins", sans-serif;
        flex-direction: column;  
        width: 100%; 
        margin:0px;
        padding: 0px;
        text-align: center;
    }

/* service, articles & contact pages */
.main-page-container {
  display: block;
  width: 90%;
  margin:auto;
  /* overflow: hidden; */
}

.main-page-container .page-heading {
  margin-top: 30px;
  color: #555;
  padding: 0px 20px 0px 20px;
  margin-bottom: -25px;
}       

.main-page-container .page-heading h1 {
  display: block;
  width: 100%;
}

.main-page-container .page-heading .image-articles img {
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 10px;
  }

.main-page-container .page-heading p {
    display: block;
    text-align: center;
}

.main-page-container .row {
    display: block;
    width:100%;
    margin-bottom: 20px;
}

.main-page-container .row-1 .col-services {
    display: block;
    width:95%;
    margin-left: 10px;
}

.main-page-container .row-1 .col-services p {
    display: block;
    font-size: .9rem;
    font-weight: 400;
    margin: auto;
    width: 100%;
}

.main-page-container .page-button { 
    padding: 8px 30px;
    border-radius: 30px;
    margin: auto;
    margin-bottom: 20px;
}


/* EACH ARTICLE-POSTING-DATE-AUTHOR */
.main-page-container .page-heading .posting-date-author {
    text-align: center;
  } 

/* ALL-ARTICLES-ONE-PAGE */
.grid-container-articles {
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
 }

 .grid-container-articles .grid-item-articles {
    width: 100%;
    height: fit-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    padding: 10px 0px 20px 0px;
 }

 .grid-container-articles .grid-item-articles h2 {
    text-align: center;
    padding-left: 15px;
 }

 .grid-container-articles .grid-item-articles .image-articles img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
 }

 .grid-container-articles .grid-item-articles .posting-date-author {
    font-size: .8em;
    padding-right: 15px;
    text-align: center;
 }

 .grid-container-articles .grid-item-articles .text-articles {
    padding: 0px 10px 0px 10px;
    margin-top: 10px;
 }

 .main-page-container .row .row-1 .col-articles p {
    color: #111;
    text-align: center;
    padding-left: 20px;
    padding-right: 5px;
   }
  
  .main-page-container .row .row-1 .col-articles {
      margin-left: 10px;
      margin-right: 20px;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      justify-content: space-between;
      transition: 1s;
   }


 /* CONTACT */
 .main-page-container .page-container-contact {
    width:100%;
    display: block;
    padding: 20px 20px 20px 20px;
    margin: auto;
}

.main-page-container .page-container-contact .contact-wrapper {
    width: 100%;
    font-size: 2rem;
}

.page-container-contact .contact-wrapper .contact-logo img {
    margin: auto;
    margin-left: -30px;
    display: none;
}

.contact-wrapper .contact-phone-number {
    display: grid;
    grid-template-columns: 10% 70%;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #111;
    font-size: 1.5rem;
    width: 80%;
    text-align: center;
    margin-left: 100px;
}

.contact-wrapper .contact-phone-number i {
    margin-top: 20px;
    margin: auto;
    margin-right: -10px;
}

.contact-wrapper .contact-whatsapp-number {
    display: grid;
    grid-template-columns: 10% 70%;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #111;
    font-size: 1.5rem;
    width: 80%;
    text-align: center;
    margin-left: 100px;
}

.contact-wrapper .contact-whatsapp-number i {
    margin-top: 20px;
    margin: auto;
    margin-right: -10px;
}

.page-container-contact .contact-wrapper .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}


.contact-wrapper .socials a {
    width: 100%;
    padding: 5px;
    text-align: center;
    display: inline-block;
    font-size: 1.2em;
    color: #111;
    border-radius: 5px;
    transition: all .3s;
}

.contact-wrapper .socials a {
    border: 1px solid transparent;
}

.contact-wrapper .socials a:hover {
    /* border: 1px solid goldenrod; */
    color: goldenrod;
    transition: all .3s;
}

.page-container-contact .contact-wrapper .contact-email {
    text-decoration: none;
    color: black;
}

.page-container-contact .form {
    display: block;
} 

.form .center-btn-wrapper button {
   color: white;
   margin: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 70px;
   background: #111;
   font-size: 1.25em;
   padding: 10px 25px;
   border-radius: 5px;
   outline: none;
   transition: 0.3s;
   cursor: pointer;
}

.form .center-btn-wrapper button:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    background: goldenrod;
    color: #111;
 }

.form input {
    font-size: 1.2em;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 2px;
    border:none;
    border-bottom: 3px solid#11122b;
    width: 100%;
    display: block;
    transition: all 0.3s;
}

.form input:focus {
outline:none;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
border-bottom: solid #cea135;
}

.form textarea {
    margin-top: 20px;
    width: 100%;
    height: 250px;
    border-radius: 3px;
    border: 3px solid#11122b;
    font-size: 1.2em;
    font-family: inherit;
    color: color;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
}

.form textarea:focus {
    outline:none;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
    border: solid #cea135;
    }

    .form input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
    color: #11122b;
    }

    .form input:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
        color: transparent;
        }

.form .form-group label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 2rem;
    margin-top: 0.4rem;
    display: block;
    transition: all 0.3s;
    color: #cea135;
    visibility: hidden;
    opacity: 0;
    
}

.form .form-group input:focus + label, .form textarea:focus +  label {
opacity: 1;
visibility: visible;
transform: translateY(1rem);
}

/* ABOUT-PAGE */
.fb-page {
    display: block;
    width: 100%;
    height: 50%;
    margin: auto;
    /* margin-top: 70px; */
    border: 1px solid red;
    padding-bottom: 50px;
    display: none;
}

/* footer */
.footer {
    display: block;
    width: 100%;
    height: 1100px;
    background: #303036;
    color: #686868;
    margin-top: 50px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    margin-bottom: -50px;
}

.footer .footer-content {
    width: 100%;
    height: 100%;
    display: block;
    padding-bottom: 20px;
    text-overflow: ellipsis;
    margin: auto;
}

.footer .footer-content .footer-section {
    width: 100%;
    margin: auto;
    height: 100%;
    margin-right: 20px;
}

.footer .footer-content .about {
    width: 100%;
    height: 350px;
    color: #686868;
    margin: auto;
    text-align: center;
    margin-left: -2px;
}

.footer .footer-content .footer-section img {
    width: 216px;
    margin: auto;
    margin-top: -20px;
    margin-left: -60px;
}

.footer .footer-content p {
    color: #686868;
    /* margin-top: -10px; */
    align-items: center;
    margin-left: -50px;
}

.footer .footer-content .links {
    width: 100%;
    height: 350px;
    color: #686868;
    margin: auto;
    margin-left: -2px;
    margin-top: 30px;
}

.footer .footer-content .links h2 {
    color: #686868;
    font-size: 1.5rem;
    margin-left: -30px;
    margin-top: -20px;
}


.footer .footer-content .links ul a {
    color: #686868;
    list-style: none;
    font-size: 1rem;
    text-align: center;
    margin-left: -70px;
}

.footer .footer-content .links ul a :hover {
    color: white;
}

.footer .footer-content .contact-details {
    width: 100%;
    height: 350px;
    margin: auto;
    margin-left: -2px;
    margin-top: -20px;
}


.footer .footer-content .contact-details h2 {
    width: 100%;
    color: #686868;
    margin-bottom: 30px;
    margin-left: -15px;
}

.footer .footer-content .contact-details .contact {
    width: 100%;
    margin-left: -15px;
}

.footer .footer-content .contact-details .contact .socials {
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15%;
    margin-left: 110px;
}

.footer .footer-content .contact-details .contact .socials a {
    width: 45px;
    height: 41px;
    padding-top: 5px;
    margin-right: 5px; 
    text-align: center;
    display: inline-block;
    font-size: 1.3em;
    color: #686868;
    border-radius: 3px;
    transition: all .3s;
}

.footer .footer-content .contact-details .contact .socials a:hover {
    color: white;
}

.footer .footer-content .contact-details .contact span a {
    width: 90%;
    color: #686868;

}

.footer .footer-bottom {
    background: #343a40;
    color: #686868;
    width: 100%;
    padding: 0 10px 0 10px;
    position: absolute;
    height: 50px;
    font-size: .9rem;
    padding-top: 15px;
}

}

@media only screen and (max-width:768px) and (min-width:601px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        height: 100%;
        font-family: "Poppins", sans-serif;
        flex-direction: column;  
        width: 100%; 
        margin:0px;
        padding: 0px;
        text-align: center;
    }

/* service, articles & contact pages */
.main-page-container {
  display: block;
  width: 90%;
  margin:auto;
  min-height: calc(100%-900px);
}

.main-page-container .page-heading {
  margin-top: 30px;
  color: #555;
  padding: 0px 20px 0px 20px;
  margin-bottom: -25px;
}       

.main-page-container .page-heading h1 {
  display: block;
  width: 100%;
}

.main-page-container .page-heading .image-articles img {
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.main-page-container .page-heading p {
    display: block;
    text-align: center;
}

.main-page-container .row {
    display: block;
    width:100%;
    margin-bottom: 20px;
}

.main-page-container .row-1 .col-services {
    display: block;
    width:95%;
    margin-left: 10px;
}

.main-page-container .row-1 .col-services p {
    display: block;
    font-size: .9rem;
    font-weight: 400;
    margin: auto;
    width: 100%;
}

.main-page-container .page-button { 
    padding: 8px 30px;
    border-radius: 30px;
    margin: auto;
    margin-bottom: 20px;
}

/* EACH ARTICLE-POSTING-DATE-AUTHOR */
.main-page-container .page-heading .posting-date-author {
    text-align: center;
  } 

/* ALL-ARTICLES-ONE-PAGE */
.grid-container-articles {
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
 }

 .grid-container-articles .grid-item-articles {
    width: 100%;
    height: fit-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    padding: 10px 0px 20px 0px;
 }

 .grid-container-articles .grid-item-articles h2 {
    text-align: center;
    padding-left: 15px;
 }

 .grid-container-articles .grid-item-articles .image-articles img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
 }

 .grid-container-articles .grid-item-articles .posting-date-author {
    font-size: .8em;
    padding-right: 15px;
    text-align: center;
 }

 .grid-container-articles .grid-item-articles .text-articles {
    padding: 0px 10px 0px 10px;
    margin-top: 10px;text-align: left;

 }

 .main-page-container .row .row-1 .col-articles p {
    color: #111;
    text-align: left;
    padding-left: 20px;
    padding-right: 5px;
   }
  
  .main-page-container .row .row-1 .col-articles {
      margin-left: 10px;
      margin-right: 20px;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      justify-content: space-between;
      transition: 1s;
   }

 /* CONTACT */
 .page-container-contact {
    width: 80%;
    height: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
    margin: auto;
}

.page-container-contact .contact-wrapper {
    width: 100%;
    font-size: 2em;
}

.page-container-contact .contact-wrapper .contact-logo img {
    margin-top: -130px;
    width: 90%;
    margin-right: 30px;
}

.contact-wrapper .contact-phone-number {
    margin-top: -30px;
    margin-bottom: 20px;
    color: #111;
    font-size: 1.3rem;
}

.contact-wrapper .contact-whatsapp-number {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.page-container-contact .contact-wrapper .socials {
    margin: auto;
    padding-right: 5px;
    margin-left: 1px;
}


.page-container-contact .contact-wrapper .socials a {
    width: 35px;
    height: 41px;
    padding: 5px;
    text-align: center;
    display: inline-block;
    font-size: .7em;
    color: #111;
    border-radius: 5px;
    transition: all .3s;
}

.contact-wrapper .socials a {
    border: 1px solid transparent;
}

.contact-wrapper .socials a:hover {
    /* border: 1px solid goldenrod; */
    color: goldenrod;
    transition: all .3s;
}

.page-container-contact .contact-wrapper .contact-email {
    text-decoration: none;
    color: black;
}

.company-metadata-side-wrapper .company-details-wrapper {
font-weight: 900;
font-size: 2em;
display: flex;
align-items: center;
margin-left: 400px;
}

.form {
    margin-top: 20px;
    margin-bottom: 20px;
} 

.form .form-group {
    margin-top: 5px;
    padding-top: 5px;
}

.form .center-btn-wrapper button {
   color: white;
   margin: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 70px;
   background: #111;
   font-size: 1.25em;
   padding: 10px 25px;
   border-radius: 5px;
   outline: none;
   transition: 0.3s;
   cursor: pointer;
}

.form .center-btn-wrapper button:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    background: goldenrod;
    color: #111;
 }

.form .form-group input {
    font-size: 1.2em;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 2px;
    border:none;
    border-bottom: 3px solid#11122b;
    width: 100%;
    display: block;
    transition: all 0.3s;
}

.form .form-group input:focus {
outline:none;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
border-bottom: solid #cea135;
}

.form .form-group textarea {
    margin-top: 20px;
    width: 100%;
    height: 250px;
    border-radius: 3px;
    border: 3px solid#11122b;
    font-size: 1.2em;
    font-family: inherit;
    color: color;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
}

.form .form-group textarea:focus {
    outline:none;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
    border: solid #cea135;
    }

    .form .form-group input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
    color: #11122b;
    }

    .form .form-group input:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
        color: transparent;
        }

.form .form-group label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 2rem;
    margin-top: 0.7rem;
    display: block;
    transition: all 0.3s;
    color: #cea135;
    visibility: hidden;
    opacity: 0;
}

.form .form-group input:focus + label, .form textarea:focus +  label {
opacity: 1;
visibility: visible;
transform: translateY(1rem);
}

/* ABOUT-PAGE */
.fb-page {
    display: block;
    width: 100%;
    height: 50%;
    margin: auto;
    /* margin-top: 70px; */
    /* border: 1px solid red; */
    padding-bottom: 50px;
    display: none;
}

/* footer */
.footer {
    display: block;
    width: 100%;
    height: 1100px;
    background: #303036;
    color: #686868;
    margin-top: 50px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    margin-bottom: -50px;
}

.footer .footer-content {
    width: 100%;
    height: 100%;
    display: block;
    padding-bottom: 20px;
    text-overflow: ellipsis;
    margin: auto;
}

.footer .footer-content .footer-section {
    width: 100%;
    margin: auto;
    height: 100%;
    margin-right: 20px;
}

.footer .footer-content .about {
    width: 100%;
    height: 350px;
    color: #686868;
    margin: auto;
    text-align: center;
    margin-left: -2px;
}

.footer .footer-content .footer-section img {
    width: 216px;
    margin: auto;
    margin-top: -20px;
    margin-left: -60px;
}

.footer .footer-content p {
    color: #686868;
    /* margin-top: -10px; */
    align-items: center;
    margin-left: -50px;
}

.footer .footer-content .links {
    width: 100%;
    height: 350px;
    color: #686868;
    margin: auto;
    margin-left: -2px;
    margin-top: 30px;
}

.footer .footer-content .links h2 {
    color: #686868;
    font-size: 1.5rem;
    margin-left: -30px;
    margin-top: -30px;
}


.footer .footer-content .links ul a {
    color: #686868;
    list-style: none;
    font-size: 1rem;
    text-align: center;
    margin-left: -70px;
}

.footer .footer-content .links ul a :hover {
    color: white;
}

.footer .footer-content .contact-details {
    width: 100%;
    height: 350px;
    margin: auto;
    margin-left: -2px;
    margin-top: -20px;
}


.footer .footer-content .contact-details h2 {
    width: 100%;
    color: #686868;
    margin-bottom: 30px;
    margin-left: -15px;
}

.footer .footer-content .contact-details .contact {
    width: 100%;
    margin-left: -15px;
}

.footer .footer-content .contact-details .contact .socials {
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15%;
    margin-left: 160px;
}

.footer .footer-content .contact-details .contact .socials a {
    width: 45px;
    height: 41px;
    padding-top: 5px;
    margin-right: 5px; 
    text-align: center;
    display: inline-block;
    font-size: 1.3em;
    color: #686868;
    border-radius: 3px;
    transition: all .3s;
}

.footer .footer-content .contact-details .contact .socials a:hover {
    color: white;
}

.footer .footer-content .contact-details .contact span a {
    width: 90%;
    color: #686868;
}

.footer .footer-bottom {
    background: #343a40;
    color: #686868;
    width: 100%;
    padding: 0 10px 0 10px;
    position: absolute;
    height: 50px;
    font-size: 1rem;
    padding-top: 15px;
}

}

@media only screen and (max-width:900px) and (min-width: 769px) { 
    * {
        box-sizing: border-box;
    }
    
    html, body {
        height: 100%;
        font-family: "Poppins", sans-serif;
        flex-direction: column;  
        width: 100%; 
        margin:0px;
        padding: 0px;
        text-align: center;
    }

/* service, articles & contact pages */
.main-page-container {
  display: block;
  width: 90%;
  margin:auto;
  overflow: hidden;
  margin-right: -20px;
}

.main-page-container .page-heading {
  margin: auto;
  margin-top: 20px;
  color: #555;
  padding: 0px 20px 0px 20px;
}       

.main-page-container .page-heading h1 {
  display: block;
  width: 100%;
  float: left;
}

.main-page-container .page-heading .image-articles img {
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.main-page-container .page-heading p {
    display: block;
}

.main-page-container .row {
    display: block;
    width:100%;
    margin-bottom: 20px;
}

.main-page-container .row-1 .col-services {
    display: block;
    width:95%;
    margin-left: 10px;
}

.main-page-container .row-1 .col-services p {
    display: block;
    font-size: .9rem;
    font-weight: 400;
    margin: auto;
    width: 100%;
}

.main-page-container .page-button { 
    padding: 8px 30px;
    border-radius: 30px;
    margin: auto;
    margin-bottom: 70px;
}

/* ARTICLES-PAGES */
.main-page-container .grid-container-articles {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    margin: auto;
    width: 100%;
    margin-bottom: 25px;
    align-items: center;
    justify-content: space-between;
 }

 .main-page-container .grid-container-articles .grid-item-articles {
    width: 100%;
    height:100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 }

 .main-page-container .grid-container-articles .grid-item-articles h2 {
    text-align: center;
    width: 100%;
    margin-left: -7px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .image-articles img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .posting-date-author {
    font-size: .8em;
    padding-right: 20px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .text-articles {
    padding: 0px 10px 0px 10px;
 }

 .main-page-container .row .row-1 .col-articles p {
    color: #111;
    text-align: left;
    padding-left: 20px;
    padding-right: 5px;
   }
  
  .main-page-container .row .row-1 .col-articles {
      margin-left: 10px;
      margin-right: 20px;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      justify-content: space-between;
      transition: 1s;
   }

 /* CONTACT */
 .page-container-contact {
    width: 80%;
    height: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
    margin: auto;
}

.page-container-contact .contact-wrapper {
    width: 100%;
    font-size: 2em;
}

.page-container-contact .contact-wrapper .contact-logo img {
    margin-top: -130px;
    /* margin-right: 50px; */
}

.contact-wrapper .contact-phone-number {
    margin-top: -30px;
    margin-bottom: 20px;
    color: #111;
    font-size: 1.5rem;
}

.contact-wrapper .contact-whatsapp-number {
    margin-bottom: 20px;
    color: #111;
    font-size: 1.5rem;
}

.page-container-contact .contact-wrapper .socials {
    margin: auto;
}


.page-container-contact .contact-wrapper .socials a {
    width: 40px;
    height: 41px;
    padding: 3px;
    text-align: center;
    display: inline-block;
    font-size: .7em;
    color: #111;
    border-radius: 3px;
    transition: all .3s;
}

.page-container-contact .contact-wrapper .socials a {
    border: 1px solid transparent;
}

.contact-wrapper .socials a:hover {
    /* border: 1px solid goldenrod; */
    color: goldenrod;
    transition: all .3s;
}

.company-metadata-side-wrapper .company-details-wrapper {
font-weight: 900;
font-size: 2em;
display: flex;
align-items: center;
margin-left: 400px;
}

.form {
    margin-top: 20px;
    margin-bottom: 20px;
} 

.form .form-group {
    margin-top: 5px;
    padding-top: 5px;
}

.form .center-btn-wrapper button {
   color: white;
   margin: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 70px;
   background: #111;
   font-size: 1.25em;
   padding: 10px 25px;
   border-radius: 5px;
   outline: none;
   transition: 0.3s;
   cursor: pointer;
}

.form .center-btn-wrapper button:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    background: goldenrod;
    color: #111;
 }

.form .form-group input {
    font-size: 1.2em;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 2px;
    border:none;
    border-bottom: 3px solid#11122b;
    width: 100%;
    display: block;
    transition: all 0.3s;
}

.form .form-group input:focus {
outline:none;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
border-bottom: solid #cea135;
}

.form .form-group textarea {
    margin-top: 20px;
    width: 100%;
    height: 250px;
    border-radius: 3px;
    border: 3px solid#11122b;
    font-size: 1.2em;
    font-family: inherit;
    color: color;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
}

.form .form-group textarea:focus {
    outline:none;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
    border: solid #cea135;
    }

    .form .form-group input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
    color: #11122b;
    }

    .form .form-group input:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
        color: transparent;
        }

.form .form-group label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 2rem;
    margin-top: 0.7rem;
    display: block;
    transition: all 0.3s;
    color: #cea135;
    visibility: hidden;
    opacity: 0;
}

.form .form-group input:focus + label, .form textarea:focus +  label {
opacity: 1;
visibility: visible;
transform: translateY(1rem);
}

/* footer */
.footer {
    background:#303036;
    color: #686868;
    height: 400px;
    position: relative;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.footer .footer-content {
    /* to make the footer stick to the bottom go to body above */
    height: 350px;
    display: flex;
    margin: auto;
    width:100%;
}

.footer .footer-content .footer-section {
    /* give columns equal space each */
    flex: 1;
    padding: 25px 0px 25px 40px;
}

.footer .footer-content .footer-section img {
   width: 216px;
}
    

.footer .footer-content h2
.footer .footer-content h2 {
    color: #686868;
    font-size: 1.5rem;
}


.footer .footer-content .footer-section  {
   width: 100%;
}

.footer .footer-content .about p {
    width: 100%;
    margin-top: -10px;
    text-align: left;
 }

.footer .footer-content .contact-details .contact .socials {
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15%;
    width: 100%;
    margin-left: -14px;
}

.footer .footer-content .contact-details .contact .socials a {
    width: 100%;
    height: 41px;
    padding-top: 5px;
    margin-right: 10px; 
    text-align: left;
    font-size: 1.3em;
    color: #686868;
    border-radius: 3px;
    transition: all .3s;
}

.footer .footer-content .contact-details .contact {
    margin-right: -30px;
    width: 100%;
    margin-top: -25px;
} 

.footer .footer-content .contact-details h2 {
    margin-right: -2px;
} 

.footer .footer-content .contact-details .contact span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-align: left;
    margin-right: -20px;
} 

.footer .footer-content .contact-details .contact span i {
    margin-right: -20px;
} 

.footer .footer-content .contact-details .contact span a {
    margin-left: 20px;
} 

.footer .footer-content .contact-details .contact span a:hover {
    color: white;
}

.footer .footer-content .contact-details .socials a:hover {
    border: 1px solid transparent;
}

.footer .footer-content .contact-details .socials a:hover {
    border: 1px solid white;
    color: white;
    transition: all .3s;
}

.footer .footer-content .links {
    display: block;
    width: 100%;
    color: #d3d3d3;
    font-size: 1.2em;
    transition: all .3s;
    margin-left: -10px;
}

.footer .footer-content .links h2 {
   font-size: 1.5rem;
}

.footer .footer-content .links ul a {
    display: block;
    color: #686868;
    font-size: 1rem;
    transition: all .3s;
    text-align: left;
}

.footer .footer-content .links ul a:hover {
    color: white;
    margin-left: 15px;
    transition: all .3s;
}

.footer .footer-bottom {
    color: #686868;
    text-align: center;
    height: 50px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-top: 15px;
}
}

@media only screen and (max-width:1024px) and (min-width: 900px) { 
    * {
        box-sizing: border-box;
    }
    
    html, body {
        height: 100%;
        font-family: "Poppins", sans-serif;
        flex-direction: column;  
        width: 100%; 
        margin:0px;
        padding: 0px;
        text-align: center;
    }

/* service, articles & contact pages */
.main-page-container {
  display: block;
  width: 90%;
  margin:auto;
  /* overflow: hidden; */
}

.main-page-container .page-heading {
  margin-top: 30px;
  color: #555;
  padding: 0px 20px 0px 20px;
}       

.main-page-container .page-heading h1 {
  display: block;
  width: 100%;
  float: left;
}

.main-page-container .page-heading .image-articles img {
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.main-page-container .page-heading p {
    display: block;
    text-align: center;
}

.main-page-container .row {
    display: block;
    width:100%;
    margin-bottom: 20px;
}

.main-page-container .row-1 .col-services {
    display: block;
    width:95%;
    margin-left: 10px;
}

.main-page-container .row-1 .col-services p {
    display: block;
    font-size: .9rem;
    font-weight: 400;
    margin: auto;
    width: 100%;
}

.main-page-container .page-button { 
    padding: 8px 30px;
    border-radius: 30px;
    margin: auto;
    margin-bottom: 20px;
}

/* ARTICLES-PAGES */
.main-page-container .grid-container-articles {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    margin: auto;
    width: 100%;
    margin-bottom: 25px;
    align-items: center;
    justify-content: space-between;
 }

 .main-page-container .grid-container-articles .grid-item-articles {
    width: 100%;
    height:100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 }

 .main-page-container .grid-container-articles .grid-item-articles h2 {
    text-align: center;
    width: 100%;
    margin-left: -7px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .image-articles img {
    width: 100%;
    height: 170px;
    border-radius: 10px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .posting-date-author {
    font-size: .8em;
    padding-right: 20px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .text-articles {
    padding: 0px 10px 0px 10px;
 }

 .main-page-container .row .row-1 .col-articles p {
    color: #111;
    text-align: left;
    padding-left: 20px;
    padding-right: 5px;
   }
  
  .main-page-container .row .row-1 .col-articles {
      margin-left: 10px;
      margin-right: 20px;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      justify-content: space-between;
      transition: 1s;
   }

 /* CONTACT */
 .page-container-contact {
    width: 80%;
    height: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
    margin: auto;
}

.page-container-contact .contact-wrapper {
    width: 100%;
    font-size: 2em;
}

.page-container-contact .contact-wrapper .contact-logo img {
    margin-top: -130px;
}

.contact-wrapper .contact-phone-number {
    margin-top: -30px;
    margin-bottom: 20px;
    color: #111;
    font-size: 1.5rem;
}

.contact-wrapper .contact-whatsapp-number {
    margin-bottom: 20px;
    color: #111;
    font-size: 1.5rem;
}

.contact-wrapper .socials {
    margin: auto;
}


.page-container-contact .contact-wrapper .socials a {
    width: 45px;
    height: 41px;
    padding: 5px;
    text-align: center;
    display: inline-block;
    font-size: 1em;
    color: #111;
    border-radius: 5px;
    transition: all .3s;
}

.contact-wrapper .socials a {
    border: 1px solid transparent;
}

.contact-wrapper .socials a:hover {
    /* border: 1px solid goldenrod; */
    color: goldenrod;
    transition: all .3s;
}

.page-container-contact .contact-wrapper .contact-email {
    text-decoration: none;
    color: black;
}

.company-metadata-side-wrapper .company-details-wrapper {
font-weight: 900;
font-size: 2em;
display: flex;
align-items: center;
margin-left: 400px;
}

.form {
    margin-top: 20px;
    margin-bottom: 20px;
} 

.form .form-group {
    margin-top: 5px;
    padding-top: 5px;
}

.form .center-btn-wrapper button {
   color: white;
   margin: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 70px;
   background: #111;
   font-size: 1.25em;
   padding: 10px 25px;
   border-radius: 5px;
   outline: none;
   transition: 0.3s;
   cursor: pointer;
}

.form .center-btn-wrapper button:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    background: goldenrod;
    color: #111;
 }

.form .form-group input {
    font-size: 1.2em;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 2px;
    border:none;
    border-bottom: 3px solid#11122b;
    width: 100%;
    display: block;
    transition: all 0.3s;
}

.form .form-group input:focus {
outline:none;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
border-bottom: solid #cea135;
}

.form .form-group textarea {
    margin-top: 20px;
    width: 100%;
    height: 250px;
    border-radius: 3px;
    border: 3px solid#11122b;
    font-size: 1.2em;
    font-family: inherit;
    color: color;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
}

.form .form-group textarea:focus {
    outline:none;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
    border: solid #cea135;
    }

    .form .form-group input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
    color: #11122b;
    }

    .form .form-group input:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
        color: transparent;
        }

.form .form-group label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 2rem;
    margin-top: 0.7rem;
    display: block;
    transition: all 0.3s;
    color: #cea135;
    visibility: hidden;
    opacity: 0;
}

.form .form-group input:focus + label, .form textarea:focus +  label {
opacity: 1;
visibility: visible;
transform: translateY(1rem);
}

/* footer */
.footer {
    background:#303036;
    color: #686868;
    height: 400px;
    position: relative;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.footer .footer-content {
    /* to make the footer stick to the bottom go to body above */
    height: 350px;
    display: flex;
    margin: auto;
    width:100%;
}

.footer .footer-content .footer-section {
    /* give columns equal space each */
    flex: 1;
    padding: 25px 0px 25px 40px;
}

.footer .footer-content .footer-section img {
   width: 216px;
}
    

.footer .footer-content h2
.footer .footer-content h2 {
    color: #686868;
    font-size: 1.5rem;
}


.footer .footer-content .about  {
   width: 100%;
   text-align: left;
}

.footer .footer-content .about p {
    width: 100%;
    margin-top: -5px;
 }

.footer .footer-content .contact-details .contact .socials a {
    width: 45px;
    height: 41px;
    padding-top: 5px;
    margin-right: 10px; 
    text-align: center;
    display: inline-block;
    font-size: 1.3em;
    color: #686868;
    border-radius: 5px;
    transition: all .3s;
}

.footer .footer-content .contact-details .contact {
    margin-right: 10px;
    width: 100%;
    margin-top: -25px;
} 

.footer .footer-content .contact-details h2 {
    margin-left: -130px;
} 

.footer .footer-content .contact-details .contact span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-align: left;
} 

.footer .footer-content .contact-details .contact span a:hover {
    color: white;
}

.footer .footer-content .contact-details .socials a:hover {
    border: 1px solid transparent;
}

.footer .footer-content .contact-details .socials a:hover {
    border: 1px solid white;
    color: white;
    transition: all .3s;
}

.footer .footer-content .links {
    display: block;
    color: #686868;
    font-size: 1.2em;
    transition: all .3s;
    text-align: left;
}

.footer .footer-content .links h2 {
   font-size: 1.5rem;
   margin-left: 20px;
}

.footer .footer-content .links ul a {
    display: block;
    color: #686868;
    font-size: 1rem;
    transition: all .3s;
}

.footer .footer-content .links ul a:hover {
    color: white;
    margin-left: 15px;
    transition: all .3s;
}


/* .footer .footer-content .contact-details .contact {
    margin-right: -20px;
} */


.footer .footer-bottom {
    /* background: #343a40; */
    color: #686868;
    text-align: center;
    height: 50px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-top: 15px;
}
}

@media only screen and (max-width:1200px) and (min-width: 1025px) { 
    * {
        box-sizing: border-box;
    }
    
    html, body {
        height: 100%;
        font-family: "Poppins", sans-serif;
        flex-direction: column;  
        width: 100%; 
        margin:0px;
        padding: 0px;
        text-align: center;
    }

/* service, articles & contact pages */
.main-page-container {
  display: block;
  width: 90%;
  margin:auto;
  /* overflow: hidden; */
}

.main-page-container .page-heading {
  margin-top: 30px;
  color: #555;
  padding: 0px 20px 0px 20px;
}       

.main-page-container .page-heading h1 {
  display: block;
  width: 100%;
  float: left;
}

.main-page-container .page-heading .image-articles img {
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.main-page-container .page-heading p {
    display: block;
    text-align: center;
}

.main-page-container .row {
    display: block;
    width:100%;
    margin-bottom: 20px;
}

.main-page-container .row-1 .col-services {
    display: block;
    width:95%;
    margin-left: 10px;
}

.main-page-container .row-1 .col-services p {
    display: block;
    font-size: .9rem;
    font-weight: 400;
    margin: auto;
    width: 100%;
}

/* ARTICLES-PAGES */
.main-page-container .grid-container-articles {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    margin: auto;
    width: 100%;
    margin-bottom: 25px;
    align-items: center;
    justify-content: space-between;
 }

 .main-page-container .grid-container-articles .grid-item-articles {
    width: 100%;
    height:100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 }

 .main-page-container .grid-container-articles .grid-item-articles h2 {
    text-align: center;
    width: 100%;
    margin-left: -7px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .image-articles img {
    width: 100%;
    height: 170px;
    border-radius: 10px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .posting-date-author {
    font-size: .8em;
    padding-right: 20px;
 }

 .main-page-container .grid-container-articles .grid-item-articles .text-articles {
    padding: 0px 10px 0px 10px;
 }

 .main-page-container .row .row-1 .col-articles p {
    color: #111;
    text-align: left;
    padding-left: 20px;
    padding-right: 5px;
   }
  
  .main-page-container .row .row-1 .col-articles {
      margin-left: 10px;
      margin-right: 20px;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      justify-content: space-between;
      transition: 1s;
   }

.main-page-container .page-button { 
    padding: 8px 30px;
    border-radius: 30px;
    margin: auto;
    margin-bottom: 20px;
}

 /* CONTACT */
 .page-container-contact {
    width: 80%;
    height: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
    margin: auto;
}

.page-container-contact .contact-wrapper {
    width: 100%;
    font-size: 2em;
}

.contact-wrapper .contact-email a {
text-decoration: none;
color: black;
}

.page-container-contact .contact-wrapper .contact-logo img {
    margin-top: -130px;
}

.contact-wrapper .contact-phone-number {
    margin-top: -30px;
    margin-bottom: 20px;
    color: #111;
    font-size: 1.5rem;
}

.contact-wrapper .contact-whatsapp-number {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-wrapper .socials {
    margin: auto;
}


.page-container-contact .contact-wrapper .socials a {
    width: 45px;
    height: 41px;
    padding: 5px;
    text-align: center;
    display: inline-block;
    font-size: 1em;
    color: #111;
    border-radius: 5px;
    transition: all .3s;
}

.contact-wrapper .socials a {
    border: 1px solid transparent;
}

.contact-wrapper .socials a:hover {
    /* border: 1px solid goldenrod; */
    color: goldenrod;
    transition: all .3s;
}

.page-container-contact .contact-wrapper .contact-email {
    text-decoration: none;
    color: black;
}

.company-metadata-side-wrapper .company-details-wrapper {
font-weight: 900;
font-size: 2em;
display: flex;
align-items: center;
margin-left: 400px;
}

.form {
    margin-top: 20px;
    margin-bottom: 20px;
} 

.form .form-group {
    margin-top: 5px;
    padding-top: 5px;
}

.form .center-btn-wrapper button {
   color: white;
   margin: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 70px;
   background: #111;
   font-size: 1.25em;
   padding: 10px 25px;
   border-radius: 5px;
   outline: none;
   transition: 0.3s;
   cursor: pointer;
}

.form .center-btn-wrapper button:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    background: goldenrod;
    color: #111;
 }

.form .form-group input {
    font-size: 1.2em;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 2px;
    border:none;
    border-bottom: 3px solid#11122b;
    width: 100%;
    display: block;
    transition: all 0.3s;
}

.form .form-group input:focus {
outline:none;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
border-bottom: solid #cea135;
}

.form .form-group textarea {
    margin-top: 20px;
    width: 100%;
    height: 250px;
    border-radius: 3px;
    border: 3px solid#11122b;
    font-size: 1.2em;
    font-family: inherit;
    color: color;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
}

.form .form-group textarea:focus {
    outline:none;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
    border: solid #cea135;
    }

    .form .form-group input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
    color: #11122b;
    }

    .form .form-group input:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
        color: transparent;
        }

.form .form-group label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 2rem;
    margin-top: 0.7rem;
    display: block;
    transition: all 0.3s;
    color: #cea135;
    visibility: hidden;
    opacity: 0;
}

.form .form-group input:focus + label, .form textarea:focus +  label {
opacity: 1;
visibility: visible;
transform: translateY(1rem);
}

/* ABOUT-PAGE */
.fb-page {
    float: right;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: 130px;
    display: none;
}

/* footer */
.footer {
    background:#303036;
    color: #686868;
    height: 400px;
    position: relative;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.footer .footer-content {
    /* to make the footer stick to the bottom go to body above */
    height: 350px;
    display: flex;
    margin: auto;
    width:100%;
}

.footer .footer-content .footer-section {
    /* give columns equal space each */
    flex: 1;
    padding: 25px 0px 25px 40px;
}

.footer .footer-content .footer-section img {
   width: 216px;
}
    

.footer .footer-content h2
.footer .footer-content h2 {
    color: #686868;
    font-size: 1.5rem;
}

.footer .footer-content .about  {
    width: 100%;
    text-align: left;
 }
 
 .footer .footer-content .about p {
     width: 100%;
     margin-top: -5px;
  }
 
 .footer .footer-content .contact-details .contact .socials a {
     width: 45px;
     height: 41px;
     padding-top: 5px;
     margin-right: 10px; 
     text-align: center;
     display: inline-block;
     font-size: 1.3em;
     color: #686868;
     border-radius: 5px;
     transition: all .3s;
 }
 
 .footer .footer-content .contact-details .contact {
     margin-right: 10px;
     width: 100%;
     margin-top: -25px;
 } 
 
 .footer .footer-content .contact-details h2 {
     margin-left: -170px;
 } 
 
 .footer .footer-content .contact-details .contact span {
     display: block;
     font-size: 1.1rem;
     margin-bottom: 8px;
     text-align: left;
 } 
 

.footer .footer-content .contact-details .contact span a:hover {
    color: white;
}

.footer .footer-content .contact-details .socials a:hover {
    border: 1px solid transparent;
}

.footer .footer-content .contact-details .socials a:hover {
    border: 1px solid white;
    color: white;
    transition: all .3s;
}

.footer .footer-content .links {
    display: block;
    color: #686868;
    font-size: 1.2em;
    transition: all .3s;
    text-align: left;
    margin-left: 20px;
}

.footer .footer-content .links h2 {
   font-size: 1.5rem;
   margin-left: 15px;
}

.footer .footer-content .links ul a {
    display: block;
    color: #686868;
    font-size: 1rem;
    transition: all .3s;
}

.footer .footer-content .links ul a:hover {
    color: white;
    margin-left: 15px;
    transition: all .3s;
}


/* .footer .footer-content .contact-details .contact {
    margin-right: -20px;
} */


.footer .footer-bottom {
    /* background: #343a40; */
    color: #686868;
    text-align: center;
    height: 50px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-top: 15px;
}
}

/* @media screen and (max-width:768px) (min-width:600px){ */
    /* to position the bar to the right, first give the header position relative then go to menu-toggle*/
    .navbar {
        position: relative;
    }
    .navbar ul{
        width: 100%;
        background-color: rgb(148, 146, 146);
        /* add the following to hide the nav so that it only opens when the bar is hovered */
        max-height: 0px;
        overflow: hidden;
    }

    .navbar ul li{
        width: 100%;
    }

    .navbar ul li ul{
        width: 100%;
        position: static;
        display: block;
        cursor: pointer;
    }

    .navbar ul li ul li a{
        background: inherit;
        color: white;
        padding-left: 50px;
    }

    /* make the bar menu display at this breakpoint. Afterwards go to header ul and add max-height and overflow hidden to hide nav*/
    .navbar .menu-toggle{
        display: block;
        /* After adding position relative on the header on top, here add the following */
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 1.9em;
        cursor: pointer;
    }

    /* After the above bring the logo div here */
    .navbar .logo{
        /* reduce margin left */
        margin-left: .5em;
    }

    .navbar ul li ul li a:hover {
        display: block;
    }
    .navbar ul li a:hover ul {
        display:block;
    } 

    /* go to jQuery.com click on the download tab. Scrow to where it says cdn, click on cdnjscdn. */
    /* in cdnjscdn copy the script tag with extension jQuery.min.js*/
    /* paste it just above the </body> */

    /* hover for dropdown menu */
    .navbar ul li ul li a:hover {
        background-color:grey;
        cursor: pointer;
    }
}
