@import url('https://fonts.googleapis.com/css2?family=Robuttoto:wght@500&display=swap');
html{
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Roboto', sans-serif;
    background-color: #ecd3d3;
}
.container{ 
    padding: 0 15px;
    margin: auto;
}

/* Start Landing */
.landing {
    position: relative;
  }
  .landing::before {
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: 100%;
    background-color: #a0fdff;
    z-index: -1;
    transform: skewY(-6deg);
    transform-origin: top left;
  }
  .landing .container {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding-bottom: 120px;
  }
  .landing .text {
    flex: 1;
  }
  @media (max-width: 991px) {
    .landing .text {
      text-align: center;
    }
  }
  .landing .text h1 {
    font-size: 40px;
    margin: 0;
    letter-spacing: -2px;
  }
  @media (max-width: 767px) {
    .landing .text h1 {
      font-size: 28px;
    }
  }
  .landing .text p {
    font-size: 23px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: 500px;
  }
  @media (max-width: 991px) {
    .landing .text p {
      margin: 10px auto;
    }
  }
  @media (max-width: 767px) {
    .landing .text p {
      font-size: 18px;
    }
  }
  .landing .image img {
    position: relative;
    width: 600px;
    animation: up-and-down 5s linear infinite;
  }
  @media (max-width: 991px) {
    .landing .image {
      display: none;
    }
  }
  .landing .go-down {
    color: var(--main-color);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--main-transition);
  }
  .landing .go-down:hover {
    color: var(--main-color-alt);
  }
  .landing .go-down i {
    animation: bouncing 1.5s infinite;
  }
  @media(max-width:438px){
    .landing .text .btn{
        margin-bottom: 20px;
    }
}
  /* End Landing */

/* splash screen css starts here  */
#loading{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999;
}

      /*Start Testimonials*/
.testimonials{
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    
}
.testimonials::before{
    content: '';
    background-color: #91F7F1;
    position: absolute;
    width: 50%;
    left: 0;
    top: 0;
    height: 100%;
}
.testimonials::after{
    content: '';
    background-color: #acebf5;
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    height: 100%;
}
.testimonials .card{
    position: relative;
    z-index: 2;
    border-radius: 10px;
}
/* Rsposive For Testimonials Section */

@media(max-width:992px){
    .testimonials .card{
        margin-bottom: 20px;
    }
}
@media(max-width:992px){
    .tes-box .person-info p {
        margin-right: 15px;
        font-size: 12px;
        margin-bottom: 12px;
    }
}
.btn-primary {
  color: rgb(0, 0, 0);
  
  border-color: #ff0000;
}
/* ******************************** */
.testimonials .card img{
    width: 100%;
    height: 100%;
    margin-bottom: 18px;
}
.testimonials h2{
    margin-bottom: 60px ;
    font-size: 30px;
    font-weight: bold;
    color: rgb(7, 7, 7);
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.testimonials .card .card-text h4{
    color: var(--main--color);
}
.testimonials .card .card-text p:nth-child(3){
    text-align: right;
}

        /*End Testimonials*/
  /*Start CopyRight*/
  .copyright{
    border-top: 1px solid #3333334f;
    padding-top: 20px;
    color: #7E7777;
}    
/* Responsive For CopyRight Section */
@media(max-width:992px){
    .copyright .text-uppercase{
        margin: -10px;
    }        
}           
@media(max-width:992px){
    .copyright li{
        display: inline-block;
        margin-right: 4px;
        padding: 13px 0;
        margin: -4px;
    }
}
@media(max-width:992px){
    .copyright li a{
        margin: 0 7px;
    }
    .copyright li a:hover {
        color:#7E7777 ; 
    }
}
/* ***************************** */
.copyright li a{
    color: #08526d;
    margin: 0 10px;
}
.copyright li{
    display: inline-block;
    font-size: 20px;
}

                        /*End CopyRight*/
                        /* Start Animation */
@keyframes up-and-down {
    0%,
    100% {
      top: 0;
    }
    50% {
      top: -50px;
    }
  }
  @keyframes bouncing {
    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40%,
    60% {
      transform: translateY(-15px);
    }
  }