body {
  background-color: white;
  font-family:"Suravaram",serif;
}

p{
  font-size: large;
}


@media only screen and (max-width: 600px) {
  body {
    background-color: white;
  }
}

@media all and (min-width: 480px) {
    .title-wrap {
        margin-top: 20px;
        margin-left:auto;
        margin-right:auto;
      }
  }

  @media all and (max-width: 479px) {
    .title-wrap {
        margin-top: 120px;
        margin-left:auto;
        margin-right:auto;
      }
  }

@media all and (min-width: 480px) {
  .deskContent {display:block;}
  .phoneContent {display:none;}
}

@media all and (max-width: 479px) {
  .deskContent {display:none;}
  .phoneContent {display:block;}
}


*{
  box-sizing: border-box;
}

.btn-outline-primary {
  color: #f8af2b;
  border-color: #f8af2b;
  font-size:16px;
}
.btn-outline-primary:hover {
  color: white;
  border-color: #f8af2b;
  background-color: #f8af2b;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #f8af2b;
  border-color: #f8af2b;
}

a{
  color:#f8af2b;
}


i{
  color:#f8af2b;
  font-size:15px;
}

.card-body {
  padding: 1rem;
}

/* Style the search field */
form.example input[type=text] {
  padding: 10px;
  font-size: 15px;
  border: 1px solid rgb(238, 229, 229);
  float: left;
  width: 80%;
  background: #f1f1f1;

}

form.example input[type=text]:focus{
  outline: 1px solid #f8af2b;     /* oranges! yey */
  border: 1px solid #f8af2b;
}

/* Style the submit button */
form.example button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #f8af2b;
  color: white;
  font-size: 15px;
  border: 1px solid #f8af2b;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}

form.example button:hover {
  background: #f8af2b;
}

/* Clear floats */
form.example::after {
  content: "";
  clear: both;
  display: table;
}


.nav-link:hover {
    color: #a50ed5 !important;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #f8af2b;;
    transition: width .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.head-link:hover{
  box-shadow: 0px 8px 16px 0px rgba(178, 8, 184, 0.507);
}


.dropbtn {
    background-color: transparent;
    color: black;
    padding: 5px;
    font-size: 14px;
    border-top: 2px solid #f8af2b;;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {background-color: #ddd;}

  .dropdown:hover .dropdown-content {display: block;}

  .dropdown:hover .dropbtn {background-color: transparent;}


  .cardsh {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
  }

  /* On mouse-over, add a deeper shadow */
  .cardsh:hover {
    box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2);
  }

  .pp {
    margin-left:150px;
  }

  @media only screen and (max-width: 600px) {
    .pp {
      margin-left:auto;
      margin-right:auto;
    }
  }

  .navtoplink {
    margin-left:20px;
    margin-right:20px;
  }

  @media only screen and (max-width: 600px) {
    .navtoplink {
      margin-left:auto;
      margin-right:auto;
    }
  }


  @media only screen and (max-width: 1600px){
    .fishes
    {
      position: absolute;
      top: 0;
      left: 0;
      display: table;
      width:400px;
      height:auto;

    }
    .fish
    {
      position: absolute;
      top: 190px;
      left: 200px;
      width:300px;
      height:200px;
      display: table;
      z-index:1;
    }
    }

  @media only screen and (max-width: 600px){
.fishes
{
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  width:200px;
  height:auto;
  z-index: -1;

}
.fish
{
  position: absolute;
  top: 90px;
  left: 120px;
  width:150px;
  height:100px;
  display: table;
}
}

.zoom-effect-container {
    float: left;
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto;
}

.image-card {
  position: absolute;
  top: 0;
  left: 0;

}

.image-card img {
  -webkit-transition: 0.3s ease;
  transition: 0.4s ease;
}

.zoom-effect-container:hover .image-card img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.h-subtitle {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1em;
  color: #f8af2b;
}

.btn-primary {
  color: #fff;
  background-color: #f8af2b;
  border-color: #f8af2b;
}

.btn-primary:hover {
  color: #fff;
  background-color: #f8af2b;
  border-color: #f8af2b;
}

.btn {
    border-radius: .1rem;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #f8af2b;
  border-color: #f8af2b;
}

.card{
  border-radius:0.1rem;
}


@media only screen and (max-width: 600px) {
.containerkk {
  position: relative;
  text-align: center;
  color: white;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  top: 160px;
  left: 200px;
  background-color:#f8af2b;
  padding:5px;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.containerkk:hover .image {
  opacity: 0.3;
}

.containerkk:hover .middle {
  opacity: 1;
}

.text {
  background-color: #f8af2b;
  color: white;
  font-size: 15px;
  padding: 8px 30px;
}
}

@media only screen and (max-width: 1600px) {
  .containerkk {
    position: relative;
    text-align: center;
    color: white;
  }

  .bottom-right {
    position: absolute;
    top: 160px;
    left: 180px;
    background-color:#f8af2b;
    padding:5px;
  }

  .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }

  .containerkk:hover .image {
    opacity: 0.3;
  }

  .containerkk:hover .middle {
    opacity: 1;
  }

  .text {
    background-color: #f8af2b;
    color: white;
    font-size: 15px;
    padding: 5px 5px;
  }
  }


    .imgkk {
      position: relative;
      left: 0px;
      top: 0px;
      z-index: -1;
    }


    /* -------------------------play button css---------------- */

    .fade-in {
        animation: fadeIn ease 5s;
        -webkit-animation: fadeIn ease 5s;
        -moz-animation: fadeIn ease 5s;
        -o-animation: fadeIn ease 5s;
        -ms-animation: fadeIn ease 5s;
      }

      @keyframes fadeIn {
        0% {
          opacity:0;
        }
        100% {
          opacity:1;
        }
      }

      @-moz-keyframes fadeIn {
        0% {
          opacity:0;
        }
        100% {
          opacity:1;
        }
      }

      @-webkit-keyframes fadeIn {
        0% {
          opacity:0;
        }
        100% {
          opacity:1;
        }
      }

      @-o-keyframes fadeIn {
        0% {
          opacity:0;
        }
        100% {
          opacity:1;
        }
      }

      @-ms-keyframes fadeIn {
        0% {
          opacity:0;
        }
        100% {
          opacity:1;
      }
    }
