
.sectionClass {
  padding: 50px 0px;
  position: relative;
  display: block;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}


.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}


.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101F2E;
}


.projectFactsWrap{
    display: flex;
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    background: #224a89;
}


#projectFacts .fullWidth{
  padding: 0;
}

.projectFactsWrap .item{
  width: 50%;
  height: 100%;
  padding: 50px 0px;
  text-align: center;
}

.projectFactsWrap .item p.number{
  font-size: 40px;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0;
  padding: 10px;
  font-family: 'Open Sans';
}


.projectFactsWrap .item span{
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}


.projectFactsWrap .item i{
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
  color: white;
}

.projectFactsWrap .item:hover span{
  background: white;
}

@media (max-width: 786px){
  .projectFactsWrap .item {
     flex: 0 0 50%;
  }
}

/* AUTHOR LINK */


footer{
  z-index: 100;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  bottom: 0;
  left: 0;
}

footer p {
color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  opacity: 0;
  font-family: 'Open Sans';
  width: 100%;
    word-wrap: break-word;
  line-height: 25px;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  margin: 0;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}

footer .authorWindow a{
  color: white;
  text-decoration: none;
}

footer p strong {
    color: rgba(255, 255, 255, 0.9);
}

.about-me-img {
  width: 120px;
  height: 120px;
  left: 10px;
  /* bottom: 30px; */
  position: relative;
  border-radius: 100px;
}


.about-me-img img {
}


.authorWindow{
  width: 600px;
  background: #75439a;
  padding: 22px 20px 22px 20px;
  border-radius: 5px;
  overflow: hidden;
}

.authorWindowWrapper{
  display: none;
  left: 110px;
  top: 0;
  padding-left: 25px;
  position: absolute;
}





.trans{
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
    .authorWindow{
         width: 210px;
    }

    .authorWindowWrapper{
             bottom: -170px;
  margin-bottom: 20px;
    }

    footer p{
          font-size: 14px;
    }
}




* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 0% 4%;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: white;
    display: block;
    margin: auto;
    transition: 1s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 40px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 18px;
    color: white;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid white;
    background: #212152;
    transition: 0.5s;
}

nav .fas {
    display: none;
}

@media(max-width: 700px) {
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links ul li::after {
        content: '';
        width: 0%;
        height: 2px;
        background: white;
        display: block;
        margin: auto;
        transition: 1s;
    }

    .nav-links ul li:hover::after {
        width: 0%;
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links {
        position: fixed;
        background: #6767eb;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fas {
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
}

.r-text {
    margin: 8% 5% 2% 2%;
    padding-top: 100px;
    width: 80%;
    text-align: justify;
    display: flex;
    padding: 1rem;
}

.r-text img {
    height: 26rem;
    width: 30rem;
}

/* k-feature */
.k-feature {
    margin: 0% 5%;
    padding-top: 100px;
    width: 90%;
    text-align: center;
}

h1 {
    font-size: 36px;
    font-weight: 800;
    padding-top: 10px;
}

p {
    color: #36454F;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    padding: 5px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.k-feature-col {
    flex-basis: 31%;
    background: #cadcf7;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 10px;
    box-sizing: border-box;
    transition: 0.5s;
    cursor: pointer;
    margin: 0.5rem;
    width: 20rem;
}

h3 {
    font-weight: 600;
    margin: 5px 0;

}

.k-feature-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
    .r-text {
        margin: 8% 2%;
        padding-top: 50px;
        width: 90%;
        text-align: center;
        display: block;
    }

    .r-text img {
        height: auto;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }

}

@media (max-width: 700px) {
    .k-feature {
        margin: 0% 2%;
        padding-top: 50px;
        width: 90%;
        text-align: center;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
    }

    .k-feature-col {
        margin-bottom: 20px;
        width: 100%;
        flex: 0 0 100%;
    }
}


/* choose */
.choose {
    width: 80%;
    margin: auto;
    text-align: left;
    padding-top: 50px;
}

.cta {
    margin: 100px auto;
    width: 80%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 40px;
}

.cta h1 {
    color: white;
    margin-bottom: 40px;
    padding: 0;
    font-size: 30px;
}

@media (max-width:700px) {
    .cta h1 {
        font-size: 24px;
    }
    .footer {
        width: 0%;
        text-align: center;
        padding: 30px 0;
    }
}

.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin: 0 1rem;
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-family: 600;
}

.icons .fab {
    color: blue;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart {
    color: #f44336;
}

/*----------about us page ------------*/
.sub-header {
    height: 50vh;
    width: 100%;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(background.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.sub-header h1 {
    margin-top: 20px;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col {
    flex-basis: 48%;
    padding: 30px 2px;
    display: inline;
}

.about-img {
    text-align: center;
}
.about-img-right img {
    width: 100%;
    max-width: 400px;
    height: 17rem;
    cursor: pointer;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.about-img img {
    width: 100%;
    max-width: 400px;
    height: 17rem;
    cursor: pointer;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.about-col h1 {
    padding-top: 0;
}
@media (max-width:700px) {
    .about-img-right img {
        display: none;
    }
    .about-col {
        padding: 5px 2px;
    }
}

h4 {
    padding: 1rem;
}

h3 {
    padding: 1rem;
}

.about-col p {
    padding: 15px 0 25px;
}

@media (max-width: 768px) {
    .about-col {
        flex-basis: 100%;
        text-align: center;
    }
}

.red-btn {
    border: 1px solid;
    background: transparent;
    color: blue;
    margin-top: 4rem;
}

.red-btn:hover {
    color: white;
}

.team {
    margin: 1rem 0;
}

.blog-content {
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.blog-left {
    flex-basis: 65%;
}

.blog-left img {
    width: 100%;
}

.blog-left h2 {
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}

.blog-left p {
    color: #999;
    padding: 0;
}

.blog-right {
    flex-basis: 32%;
}

.blog-right h3 {
    background: #f44336;
    color: white;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.commnet-box {
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.commnet-box h3 {
    text-align: left;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}

.comment-form button {
    margin: 10px 0;
}

.sub-blog {
    height: 50vh;
    width: 100%;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(background.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.sub-blog h1 {
    margin-top: 20px;
}

@media (max-width:700px) {
    .sub-blog h1 {
        font-size: 24px;
    }
}

.location {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe {
    width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fas {
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p {
    padding: 0;
}

.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input,
.contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#more-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 1s, max-height 1s;
    padding: 0.5rem;
}

#more-content.content-visible {
    opacity: 1;
    max-height: none;
}
ul {
    list-style: disc; /* or other list-style types like square, circle, etc. */
  }
.concept {
    margin: 1rem;
}
.team-mates{
    display: flex;
    margin: 1rem;
    text-align: center;
}
.teamate {
    display: block;
    margin: 0 2rem;
    flex-wrap: wrap;
}
.teamate img{
    width: 15rem;
    height: 15rem;
    border: 2px solid blue;
    cursor: pointer;
}
h2 {
    padding: 1rem;
}
@media (max-width:700px) {
    .team-mates{
        display: block;
        margin: 1rem;
        text-align: center;
    }
    .teamate {
        display: block;
        margin: 0 3rem;
        flex-wrap: wrap;
    }
}