
@import url('../css/fonts.css');


html, body {
    font-family: var(--Lexend);
    margin: 0;
    top: 0;
    left: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root{

    /*  Theme colors    */
    --text-gray: #3f4954;
    --text-light: #686666da;
    --bg-color: #0f0f0f;
    --white: #ffffff;
    --midnight: #104f55;

    /*  gradient color    */
    --sky: linear-gradient(120deg, #432E73 0%, #a1c4fd 100%);
    /*--sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);*/


    /* theme font-family */
    --Abel:'Abel',cursive;
    --Anton:'Anton',cursive;
    --Josefin:'Josefin',cursive;
    --Lexend:'Lexend',cursive;
    --Livvic:'Livvic',cursive;
}

/*=========================Global Classes==================*/

a {
    text-decoration: none !important;
    font-weight: 300;
    color: rgba(34, 54, 96, .7);
}

a:hover {
    color: #432E73 !important;
}

ul {
    list-style-type: none;
}

.row {
    height: 100%;
    width: 100%;
}



/*==========X===============Global Classes=========X=========*/



/*================Navbar===============*/

.navbar {
    background: white;
    padding: .6rem .9rem;

}

.navbar .navbar-brand img {
    height: 30px; 
    width: 150px;
}

.navbar-toggler {
    background-color: #432E73;
    border: none;
    padding: 10px 6px;
    outline: none;
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    border: 1px;
    background: #fff;
}

.navbar-toggler span + span {
    margin-top: 4px;
    width: 18px;
    margin-left: 4px;
}

.navbar-toggler span + span + span {
    width: 10px;
    margin-left: 10px;

}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 1.5rem .6rem;
    font-size: 1rem;
    position: relative;
    transition: .5s;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
    background-color: #432E73;
    color: white !important;
}

.navbar-expand-lg .navbar-nav .nav-link .active {
    background-color: #432E73;
    color: white !important;
}

.navbar-nav .btn {
    background-color: white;
    color: black;
    border: 3px solid #432E73;
    border-radius: 6px;
    padding: .5rem 1rem;
    font-size: 1rem;
    margin-top: 1px;
    transition: .5s;
}

.navbar-nav .btn:hover {
    background-color: #432E73;
    color: white;
}

/*Navbar Search Bar*/
.searchbar {
    position: relative;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 45px;
    transition: 0.5s;
    box-shadow: 0 0 0 5px #432E73;
    overflow: hidden;
    margin-top: 24px;
    margin-bottom: 24px;
}

.searchbar .searchbar-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    cursor: pointer;
}

.searchbar .searchbar-icon::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid #432E73;
    border-radius: 50%;
    transform: translate(-3px, -3px);
}

.searchbar .searchbar-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 9px;
    background: #432E73;
    transform: translate(6px, 6px) rotate(315deg);
}

.searchbar.searchbar-active {
    width: 360px;
}

.searchbar .searchbar-input
{
    position: relative;
    width: 300px !important; 
    height: 45px;
    left: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchbar .searchbar-input input {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 10px 0;
}

.searchbar-clear {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    right: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchbar-clear::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background: #999;
    transform: rotate(45deg);
}

.searchbar-clear::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background: #999;
    transform: rotate(315deg);
}


/*=======X=========Navbar========X=======*/




/*===================Main Content===================== */

/*------------------Site Title-----------------*/

.carousel-item {
    height: 100vh;
    min-height: 300px;
    background:  no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.carousel-item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.7;
}

.carousel-caption {
    bottom: 45%;
}

.carousel-caption h3 {
    font-size: 4.5rem;
    font-weight: 500;
}

.carousel-caption p {
    font-size: 18px;
    top: 2rem;
}

.slider-btn {
    margin-top: 30px;
}

.slider-btn .btn {
    background-color: #432E73;
    color: #fff;
    columns: white;
    border-radius: 3px;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    margin-right: 15px;
}



/*--------x----------Site Title---------x--------*/


/*------------------Blog Carousel-----------------*/

main .blog {
    background: url('../assets/water3.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    width: 100%;
    background-size: cover;
}

main .blog .blog-post {
    padding-top: 6rem;
}

main .blog-post .blog-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 80%;
    margin: 3rem 2rem;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
    background-color: white;

}

main .blog-content .blog-title {
    padding: 2rem 0;
}

main .blog-content .blog-title h3{
    font-size: 1.3rem;
}



main .blog-content .btn-blog{
    padding: .7rem 2rem;
    background-color: #432E73;
    color: #fff;
    margin: .5rem;
}

main .blog-content span {
    display: block;
}

section .container-fluid .owl-nav {
    position: absolute;
    top: 0%;
    margin: 0 auto;
    width: 100%;
}

.owl-nav .owl-prev .owl-nav-prev,
.owl-nav .owl-next .owl-nav-next {
    padding-top: 2rem;
    color: black;
    background: transparent;
    font-size: 2rem;
}

.owl-theme .owl-nav [class*='owl-']:hover{
    background: transparent;
    color: var(--text-light);
}

.owl-theme .owl-nav [class*='owl-'] {
    outline: none;
}

/*-------x-----------Blog Carousel--------x---------*/

/* Project Area */ 

main .project-area{
    padding: 6rem 0;
    background-color: #f9f9f9;
}

main .project-area .button-group button{
    background: transparent;
    border: none;
    font: normal 500 16px/130px var(--Abel);
    text-transform: uppercase;
    outline: none;
    cursor: pointer;
}

main .project-area .button-group button + button{
    padding-left: 3rem;
}

main .project-area .grid .our-project > .title h4{
    font: normal 700 25px/12px var(--Abel);
    padding-top: 12px;
}

.test-popup-link {
    display: inline-block;
}


main .project-area .grid .our-project .img a:hover img{
    filter: brightness(1.1) drop-shadow(1px 8px 30px #b1afaf);
    display: inline-block;
}

.activered {
    color: #fd1301;
}

/* End Project Area */ 

/* ================ parallax effect ================== */

main .para-container{
    height: 36vh;
    margin: 0 auto;
    background: #f9f9f9;
    font-size: 30px;
    background: url('../assets/water3.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    justify-content: center;
}


main .para-container h1 {
    padding-top: 9rem;
    color: white;
    text-align: center;
    margin: 0;
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 3px 3px #000;
    
}

main .para-container1{
    min-height: 36vh;
    margin: 0 auto;
    background: #f9f9f9;
    font-size: 25px;
    background: url('../assets/water2.png') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    justify-content: center;
}

main .para-container1 h1 {
    padding-top: 9rem;
    color: white;
    text-align: center;
    margin: 0;
    font-size: 2.4rem;
    
}

/*-----------------------Counter Up-----------------------------*/
main .middle {
    position: absolute;
    width: 100%;
    font-family: var(--Lexend);

}
main .counting-sec {
    padding: 40px 0;
    width: 100%;
    background: none;
}

main .inner-width {
    max-width: 1200px;
    margin: auto;
    display: flex;
}

main .col {
    flex: 1;
    text-align: center;
    padding: 20px;
    color: #fff;
    text-transform: uppercase;
}

main .col i {
    font-size: 60px;
    color: white;

}

main .num {
    font-size: 40px;
    margin: 20px 0;
}

/*---------------------x--------------------Counter Up---------------------------x-------------------*/


/* =======x========= parallax effect ==========x======== */



/* ================ Article Post Blog ================== */

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

.blogs {
    height: auto;
    width: 100%;
    background-color: #f9f9f9;
}

.blogs {
    padding-top: 60px;
    padding-bottom: 50px;

}

.blogs .pb-6{
    font-family: var(--Josefin);
    font-size: 3.9rem;


}

.article-post {
    background-color: #fff;
    margin: 25px 0;
}


.article-img-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;

    overflow: hidden;
}

.article-img-wrapper img {
    transition: 1.5s;

}

.article-img-wrapper:hover img {
    transform: scale(1.3);
}

.likes {
    position: absolute;
    padding-right: 20px;
    padding-bottom: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;

    animation: pulse .5s linear infinite;
    animation-play-state: paused;
}

.likes:hover {
    animation-play-state: running;
}

.content-wrapper {
    padding: 30px;
    position: relative;
}

.content-wrapper:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid #f9f9f9;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.content-wrapper .title {
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content-wrapper p {
    color: #6E797E;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 20px;
}

.comments-readmore {
    display: flex;
    justify-content:  space-between;
    border-top: 1px solid #f5f5f5;

}

.comments {
    padding: 20px 25px;
    border-right: 1px solid #f5f5f5;
    cursor: pointer;

}

.comments i {
    color: #e5e5e5;
    margin-right: 5px;
    font-size: 18px;
    transform: translateY(3px);

    animation: shake 2.5s linear infinite;
    animation-play-state: paused;
}

.comments:hover i {
    animation-play-state: running;
}

.comments .comment-count,
.comments .text {
    font-weight:  600;
    font-size: 12px;
}

.readmore {
    border-left: 1px solid #f5f5f5;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: white;
    cursor: pointer;
}

.readmore .dot {
    height: 4px;
    width: 4px;
    background: #000;
    margin-right: 3px;
    border-radius: 50%;

    animation: bounce 1s linear infinite;
    animation-play-state: paused;
}

.readmore:hover .dot {
    animation-play-state: running;
}

.readmore .dot2 {
    animation-delay: 100ms;
}

.readmore .dot3 {
    animation-delay: 200ms;
}

@keyframes pulse {
    from {

      transform: scale(1);
    }
  
    50% {

      transform: scale(1.2);
    }
  
    to {

      transform: scale3d(1);
    }
  }

  @keyframes bounce {
    from, 20%, 53%, 80%, to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      transform: translate3d(0, 0, 0);
    }
  
    40%, 43% {
      animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      transform: translate3d(0, -8px, 0);
    }
  
    70% {
      animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      transform: translate3d(0, -4px, 0);
    }
  
    90% {
      transform: translate3d(0, -1px, 0);
    }
  }

  @keyframes shake {
    from, to {
      transform: translate3d(0, 0, 0);
    }
  
    10%, 30%, 50%, 70%, 90% {
      transform: translate3d(0, 2px, 0);
    }
  
    20%, 40%, 60%, 80% {
      transform: translate3d(0, -2px, 0);
    }
  }



/* =======x========= Article Post Blog ==========x======== */

/* ================ Contact Us ================== */

  section.contact-us {
    position: relative;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:  #f9f9f9;
  }


  .contact-container {
      position: relative;
      width: 90%;
      height: 550px;
      display: flex;
      z-index: 2;
      margin: auto;
  }

  .contact-container .contactinfo {
      position: absolute;
      top: 15%;
      width: 350px;
      height: calc(100% - 80px);
      background: #432E73;
      z-index: 1;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);

  }

  .contact-container .contactinfo h2 {
      color: #fff;
      font-size: 24px;
      font-weight: 500;

  }

  .contact-container .contactinfo .info {
      position: relative;
      margin: 20px 0;
  }

  .contact-container .contactinfo li {
      position: relative;
      list-style: none;
      display: flex;
      margin: 20px 0;
      cursor: pointer;
      align-items: flex-start;
  }

  .contact-container .contactinfo li span:nth-child(1) {
      width: 30px;
      min-width: 30px;
  }

  .contact-container .contactinfo li span:nth-child(1) i {
      max-width: 100%;
      filter: invert(1);
      opacity: 0.5;
  }

  .contact-container .contactinfo li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
    opacity: 0.5;
  }

  .contact-container .contactinfo li:hover span:nth-child(1) i,
  .contact-container .contactinfo li:hover span:nth-child(2)  {
      opacity: 1;

  }

  .contact-container .contactinfo .sci {
      position: relative;
      display: flex;
  }

  .contact-container .contactinfo .sci li {
      list-style: none;
      margin-right: 15px;
  }

  .contact-container .contactinfo .sci li a {
      text-decoration: none;
  }

  .contact-container .contactinfo .sci li a i {
    font-size: 21px;
    color: black;
    filter: invert(1);
    opacity: 0.5;
  }

  .contact-container .contactinfo .sci li:hover a i
  {
      opacity: 1;
  }

  .contact-container .contactform {
      position: absolute;
      top: 9%;
      padding: 70px 50px;
      background: #fff;
      margin-left: 150px;
      padding-left: 300px;
      width: calc(100% - 150px);
      height: 100%;
      box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);
  }

  .contact-container .contactform h2 {
      color: #0f3959;
      font-size: 24px;
      font-weight: 500;
  }

  .contact-container .contactform .form-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
  }

  .contact-container .contactform .form-box .input-box {
      position: relative;
      margin: 0 0 35px 0;
  }

  .contact-container .contactform .form-box .input-box.w50 {
      width: 47%;

  }

  .contact-container .contactform .form-box .input-box.w100 {
      width: 100%;
  }

  .contact-container .contactform .form-box .input-box input,
  .contact-container .contactform .form-box .input-box textarea {
      width: 100%;
      padding: 5px 0;
      resize: none;
      font-size: 18px;
      font-weight: 300px;
      color: #333;
      border: none;
      border-bottom: 1px solid #777;
      outline: none;
  }

  .contact-container .contactform .form-box .input-box textarea {
      min-height: 120px;

  }

  .contact-container .contactform .form-box .input-box span {
      position: absolute;
      left: 0;
      padding: 5px 0;
      font-size: 18px;
      font-weight: 300px;
      color: #333;
      transition: .5s;
      pointer-events: none;
  }

  .contact-container .contactform .form-box .input-box input:focus ~ span,
  .contact-container .contactform .form-box .input-box textarea:focus ~ span,
  .contact-container .contactform .form-box .input-box input:valid ~ span,
  .contact-container .contactform .form-box .input-box textarea:valid ~ span {
      transform: translateY(-20px);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px;
      color:#432E73;
  } 

  .contact-container .contactform .form-box .input-box input[type="submit"] {
      position: relative;
      cursor: pointer;
      background: #432E73;
      color: #fff;
      border: none;
      max-width: 150px;
  }

  .contact-container .contactform .form-box .input-box input[type="submit"]:hover {
      background: #432E73;
  }


/* ========x======== Contact Us =========x========= */

/* ================ Grid ================== */

.card-body {
    margin: auto;
}

.card-body h4 {
    font-size: 3rem;
    font-weight: 300;
}

.card-body .btn-grid {
    padding: .7rem 2rem;
    background-color: #432E73;
    color: #fff;
    margin-top: 1rem;
}

.card-body .btn-grid:hover {
    color: #fff !important;
}

/* ========x======== Grid =========x========= */


/*==============X===========Main Content=============X============== */

/* ============================== Footer =========================== */

footer.footer {
    height: 100%;
    background: var(--bg-color);
    position: relative;
}

footer.footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

footer.footer .container > div {
    flex-grow: 1;
    flex-basis: 0;
    padding: 2.1rem .6rem;
}

footer.footer h2 {
    color: white;
}

footer.footer p {
    color: #bababa;
    font-family: var(--Livvic);
}

footer.footer .newsletter .form-element{
    background: black;
    display: inline-block;
}

footer.footer .newsletter .form-element input {
    padding: .5rem .7rem;
    border: none;
    background: transparent;
    color: white;
    font-family: var(--Josefin);
    font-size:  1rem;
    width: 74%;
}

footer.footer .newsletter .form-element span {
    background: var(--sky);
    padding: .5rem .7rem;
    cursor: pointer;
}

footer.footer .instagram div > img {
    display: inline-block;
    width: 25%;
    height: 50%;
    margin: .3rem .4rem;

}

footer.footer .follow div i{
    color: white;
    padding: 0 .4rem;
}

footer.footer .rights {
    color: #bababa;
    justify-content: center;
    font-family: var(--Josefin);
}

footer.footer .rights h4 {
    margin-bottom: 0 !important;
}

footer.footer .rights h4 a {
    font-family: var(--Josefin);
    color: white;
}

footer.footer .rights h4 a:hover {
    color: lightgray !important;
}

footer.footer .move-up {
    position: absolute;
    right: 6%;
    top: 50%;
}

footer.footer .move-up span {
    color: var(--midnight);
}

footer.footer .move-up span:hover {
    color: white;
    cursor: pointer;
}

footer.footer .container .visit-counter {
    flex-grow: 1;
    flex-basis: 0;
    padding: 2.1rem .6rem;
}

/* =============x================= Footer ==============x============= */

/*      Viewport less then or equal to 750px        */

@media only screen and (max-width: 750px){
    .nav .nav-menu, .nav .nav-items{
        
      flex-direction: column;
      
    }


    .nav .toggle-collapse{
        display: initial;
    }

    main .para-container h1 {
        padding-top: 4rem;
        color: white;
        text-align: center;
        margin: 0;
        font-size: 2.1rem;
        
    }

    main .para-container1 {
        height: 60rem;
    }

    main .inner-width { 
        margin: auto;
        display: block;

    }

    main .col {
        text-align: center;
        padding: 20px;
        color: #fff;
        text-transform: uppercase;
    }

    footer.footer .container{
        grid-template-columns: repeat(1, 1fr) !important;
    }

}

@media only screen and (max-width: 1130px) {

footer.footer .container{
    grid-template-columns: repeat(2, 1fr) !important;

}

}


@media only screen and (max-width: 520px) {
    footer.footer .container > div {
        padding: 1rem .9rem !important;
    }

    footer.rights{
        
    }
}

.knowledge-img {
    object-fit: contain;
    max-height: 300px;
}

/*      Viewport less then or equal to 750px        */