@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
*{
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: left;
    background-color: #fff;
}

header{
    width: 100%;
    background: rgba(3, 91, 192, 0.6);
    padding: 1rem 12%;
    padding-bottom: 0;
}

.site-navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-navbar .site-logo a{
    font-size: 2.7rem;
    color: #fff;
}

.site-navbar .site-logo a .yellow{
    color: yellow;
}

.site-navbar .site-logo a .dot{
    color: red;
}

.site-quickContact{
    display: flex;
}

.address, .call{
    display: flex;
    align-items: center;
    font-size: 14.4px;
    font-weight: 400;
    color: #fff;
}

.address{
    margin-right: 48px;
}

.address span i{
    color: orange;
    margin-right: 5px;
    font-size: 30px;
}

.call span i{
    color: red;
    margin-right: 5px;
    font-size: 30px;
}

@media screen and (max-width: 950px){
    .site-quickContact{
        display: none;
    }
}

/********************************************************
DESIGNING NAVIGATION BAR
*********************************************************/

.topnav {
    margin: 30px 0 10px 0;
    background-color: #fff;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.secondPart{
    float: right;
}

.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    margin: 10px;
    text-decoration: none;
    font-size: 17px;
}

.secondPart a{
    margin: 10px 5px;
}

.secondPart a .bxl-linkedin-square{
    color: orange;
    font-size: 20px;
}

.secondPart a .bxl-facebook-circle{
    color: rgb(88, 192, 233);
    font-size: 20px;
}

.secondPart a .bxl-twitter{
    color: green;
    font-size: 20px;
}

.topnav a:hover {
    color: red;
}

.topnav a.active {
    color: red;
}
  
.topnav .icon {
    display: none;
}

@media screen and (max-width: 1100px) {
    .topnav .onePart a{
        display: none;
    }
    .topnav a.icon {
      float: left;
      display: block;
    }
}
  
@media screen and (max-width: 950px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
.topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
}

/************************************************
    OVERLAY DESIGNING
************************************************/

/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: #fff; /* Black fallback color */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  }
  
  /* Position the content inside the overlay */
  .overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
  }

  .overlay-content .active{
    color: red;
  }
  
  /* The navigation links inside the overlay */
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: black;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
  }
  
  /* When you mouse over the navigation links, change their color */
  .overlay a:hover, .overlay a:focus {
    color: red;
  }
  
  /* Position the close button (top right corner) */
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  
  /* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
}

/*************************************
    ANIMATED TEXT DESIGNING
*************************************/
.lastPart{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8%;
}
.lastPart .text-box h1, .lastPart .autoType h1{
    margin: 0;
}

.lastPart .text-box{
    color: white;
}

.lastPart .autoType{
    color: white;
}

.lastPart .auto-type{
    color: yellow;
}

.lastPart .container-forAnimtext .autoType h1{
  margin-top: 15px;
}

.lastPart .text-box h1{
    font-size: 75px;
    line-height: 75px;
    color: transparent;
    -webkit-text-stroke: 1px white;
    background: url(Images/back.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}

.lastPart .image img{
    width: 400px;
}

@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}

@media screen and (max-width: 1000px){
    .lastPart{
        flex-direction: column;
    }
}

@media(max-width: 900px){
    .lastPart .text-box h1{
        font-size: 70px;
        line-height: 70px;
    }

    .lastPart .autoType h1{
        font-size: 30px;
    }
}

@media(max-width: 700px){
    .lastPart .text-box h1{
        font-size: 60px;
        line-height: 60px;
    }

    .lastPart .autoType h1{
        font-size: 25px;
    }
}

@media(max-width: 600px){
    .lastPart .text-box h1{
        font-size: 44px;
        line-height: 44px;
    }

    .lastPart .autoType h1{
        font-size: 18px;
    }

    .lastPart .image img{
        align-items: center;
        width: 300px;
    }
}

/*************************************************************
    BUTTON DESIGN COPIED FROM UNIVERSE.IO
      ( not to be changed in anyway )
*************************************************************/

/*bg*/
/*txt*/
/*success*/
.lastPart .container-forAnimtext .buttons{
  margin-top: 30px;
  margin-bottom: 10px;
}

.buttons {
    display: flex;
    top: 20px;
    left: 20px;
  }
  
  .buttons button {
    width: 150px;
    height: 50px;
    background-color: white;
    margin-top: 20px;
    color: rgba(3, 91, 192, 0.6);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
  }
  
  .buttons button:before, .buttons button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: rgba(3, 91, 192, 0.6);
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 0;
  }
  
  .buttons button span:before, .buttons button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: rgba(3, 91, 192, 0.6);
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button a {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .buttons button a:before, .buttons button a:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 0;
    left: 0;
  }
  
  .buttons button a:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button a:after {
    content: attr(data-text);
    top: 150%;
    color: rgba(3, 91, 192, 0.6);
  }
  
  .buttons button:hover:before, .buttons button:hover:after {
    width: 100%;
  }
  
  .buttons button:hover span:before, .buttons button:hover span:after {
    height: 100%;
  }
  
  .buttons button:hover a:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button:hover a:after {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button.start {
    background-color: rgba(3, 91, 192, 0.6);
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
  
  .buttons button.start a:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button.start a:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
  }
  
  @keyframes start {
    from {
      top: -50%;
    }
  }
  
  .buttons button.start:hover:before, .buttons button.start:hover:after {
    display: none;
  }
  
  .buttons button.start:hover span {
    display: none;
  }
  
  .buttons button:active {
    outline: none;
    border: none;
  }
  
  .buttons button:focus {
    outline: 0;
  }

  @media screen and (max-width: 800px) {
    .buttons button {
        width: 120px;
        height: 45px;
    }
  }

/*##################################################################
        DONE FOR NOW
##################################################################*/


/******************************************************************
    Achievements short details
******************************************************************/
.achievements{
  margin-top: 5%;
  padding: 0 12%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.achievements .achievementText{
  margin-left: 10px;
}

.achievements .achievementText h2{
  margin-bottom: 0;
  color: #fd4d40;
  font-family: 'Indie Flower', cursive;
  font-weight: 300;
}

.achievements .achievementText h1{
  font-size: 1.75rem;
  font-weight: 400;
  margin-top: 0;
}

.achievements .achievementText p{
  font-size: 16px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 380;
  margin: 5px 0 5px 0;
}

.achievements .successImage img{
  width: 500px;
  height: 400px;
}

@media screen and (max-width: 1250px) {
  .achievements .successImage img{
    width: 450px;
    height: 425px;
  }

  .achievements .achievementText h1{
    font-size: 1.5rem;
    font-weight: 400;
  }
  
}

@media screen and (max-width: 1050px) {
  .achievements .successImage img{
    width: 400px;
    height: 375px;
  }

  .achievements{
    flex-direction: column;
  }

  .achievements .achievementText h1{
    font-size: 1.5rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 600px) {
  .achievements .successImage img{
    width: 350px;
    height: 325px;
  }
}

.achievementsBtn{
  padding: 0 12%;
}

.achievementsBtn button {
  float: right;
  display: inline-block;
  margin: 10px 10px 0 10px;
  padding: 15px 30px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fd4d40;
  background: transparent;
  transition: ease-out 0.5s;
  border: 2px solid #fd4d40;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 #fd4d40;
}

.achievementsBtn button a{
  color:#fd4d40;
  cursor: pointer;
}

.achievementsBtn button:hover, .achievementsBtn button:hover a{
  color: white;
  box-shadow: inset 0 -100px 0 0 #fd4d40;
}

.achievementsBtn button:active {
  transform: scale(0.9);
}

@media screen and (max-width: 1050px){
  .achievementsBtn button {
    font-size: 10px;
    margin: 20px 20px 0 20px;
  }
}

/************************************************************************
        Placement cell
************************************************************************/

.text{
  margin: 8% 0 0 0;
  padding: 0 12% 5% 12%;
  background-color: rgba(0,0,0,0.2);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.text .container h2{
  padding-top: 50px;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}

.text .container .tobeCursive{
  margin: 0 0 10px 0;
  padding-top: 0;
  font-size: 1.25rem;
  color: #fd4d40;
  font-family: 'Indie Flower', cursive;
  font-weight: 300;
}

.text .container .card{
  display: flex;
  justify-content: space-between;
}

.text .container .card .text-card{
  background-color: rgba(38, 150, 233,0.7);
  margin: 0;
  padding: 20px;
  width: 350px;
  height: 600px;
}

.text .container .card .text-card h3{
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: white;
}

.text .container .card .text-card p{
  color: white;
  line-height: 1.5rem;
}

.text .container .card .text-card button{
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 12px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  transition: all ease 0.3s;
}

.text .container .card .text-card button:hover{
  transform: scale(1.1);
}

.text .container .card .card1{
  background-color: rgba(253, 77, 64, 0.9);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}

.text .container .card .card1 img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.text .container .card .card2{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: rgba(255, 165, 0, 0.7);
}

.text .container .card .card2 img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.text .container .card .card3{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: rgba(0, 128, 0, 0.7);
}

.text .container .card .card3 img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

@media screen and (max-width: 1050px){
  .text{
    margin: 12% 0 0 0;
  }

  .text .container h2{
    font-size: 35px;
  }

  .text .container .card{
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 800px){
  .text{
    margin: 20% 0 0 0;
  }
}

.text .reveal{
  transform: translateY(100px);
  position: relative;
  opacity: 0;
  transition: all ease 2s;
}
.container.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}

/**********************************************************************
      LAST PART OF THIS WEBSITE
**********************************************************************/
.last{
  background-color: #343a40;
}

.contactUs{
  padding: 2rem 12%;
  display: flex;
  justify-content: space-between;
  align-items: left;
  color: white;
}

.contactUs h1{
  color: red;
  font-size: 25px;
  font-weight: 380;
}

.contactUs .aboutVITC .addressCall .address{
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.contactUs .aboutVITC .addressCall .address i{
  color: white;
}

.contactUs .aboutVITC .addressCall .call{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contactUs .aboutVITC .addressCall .call i{
  color: white;
}

.contactUs .aboutVITC .links {
  display: flex;
  margin: 20px;
}

.contactUs .aboutVITC .links a{
  color: white;
  margin: 0 20px 0 0;
  transition: all ease 0.3s;
}

.contactUs .aboutVITC .links a:hover{
  transform: scale(1.1);
}

.contactUs .aboutUs p{
  font-size: 15px;
  font-weight: 380;
}

.contactUs .aboutUs .detials{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.contactUs .aboutUs .detials a{
  padding: 5px;
  color: white;
  transition: all ease 0.3s;
}

.contactUs .aboutUs .detials a:hover{
  transform:translateX(10px);
}

.contactUs .navigationLast .lastLinks{
  display: flex;
  flex-direction: column;
}

.contactUs .navigationLast .lastLinks a{
  padding: 5px;
  color: white;
  transition: all ease 0.3s;
}

.contactUs .navigationLast .lastLinks a:hover{
  transform:translateX(10px);
}

@media screen and (max-width: 900px){
  .contactUs{
    flex-direction: column;
  }
}

.last footer{
  margin: 1rem 12% 0;
  padding-bottom: 2%;
  border-top: 1px solid white;
}

.last footer h3{
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  font-weight: 380;
  color: white;
}

.last footer h3 i{
  color: red;
}

/*****************************************************************
    SCROLL BACK TO THE TOP
****************************************************************/
#myBtn {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  border: none;
  outline: none;
  background-color:#807e7e;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 20px;
}

#myBtn i{
  font-size: 2rem;
  font-weight: 400;
}

#myBtn:hover {
  background-color: #999898;
}
