/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
body {
    margin: 0;
    padding:0;
    /* width: 100%;
    height: 100%; */
    color:#111;
    align-items: center;
    box-sizing: border-box;
    font-size: x-large;
    /* font-family: "Quicksand", sans-serif; */
    /* font-family: 'Gilroy'; */
  
   
  }

  .image{
    max-width: 8%;
  }

  a {
    color: #111  ;
  }

  
/* Navbar section */
.nav {
  /* font-family: "Quicksand", sans-serif; */
  width: 100%;
  height: 65px;
  position: fixed;
  line-height: 65px;
  text-align: center;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}

.nav div.logo a {
  text-decoration: none;
  font-size: 2.2rem;
}

.nav div.logo a:hover {
  color: #6495ED;
}

.nav div.main_list {
  height: 40px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0px;
  padding-right: 1rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  line-height: 30px;
  font-size: 1.3rem;
}


.btn-outline-success:hover{
  background-color: #6495ED ;
  border-color: #6495ED !important;
  color: #FFF !important;
}

.btn-outline-success{
   border-color: #6495ED !important;
   color: #111;
}
.btn-outline-success:visited{
  background-color:#6495ED !important;
  border-color: #6495ED !important ;
  box-shadow: none !important;

}

.btn-outline-success:active{
  border-color: #6495ED !important;
  box-shadow: none !important;
  
}

.nav div.main_list ul li a:hover {
  color: #6495ED;
}


.navTrigger {
  display: none;
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}



div.stroke ul li a{
  position: relative;
  padding-bottom: 3px;
}
div.stroke ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background:white;
  height: 2px;
}
div.stroke ul li a:hover:after {
  width: 100%;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}



/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
      margin: 0;
  }
}

@media screen and (max-width:768px) {
  .navTrigger {
      display: block;
  }
  .nav div.logo {
      margin-left: 0px;
  }
  .nav div.main_list {
      width: 100%;
      height: 0;
      overflow: hidden;
  }
  .nav div.show_list {
      height: auto;
      display: none;
  }
  .nav div.main_list ul {
      flex-direction: column;
      width: 100%;
      height: 100vh;
      right: 0;
      left: 0;
      bottom: 0;
      background-color: #111;
      /*same background color of navbar*/
      background-position: center top;
  }
  .nav div.main_list ul li {
      width: 100%;
      text-align: right;
  }
  .nav div.main_list ul li a {
      text-align: center;
      width: 100%;
      font-size: 3rem;
      padding: 20px;
      padding-left: 0%;
  }
  .nav div.media_button {
      display: block;
  }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.navTrigger i {
  background-color: #0000ff;
  border-radius: 2px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  z-index: 1;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

.affix {
  padding: 0;
  background-color:#212329;
  z-index:1; /*Add this*/
}
.affix2 {
  color: #FFF;
}


  .about{
      text-align: center;
      font-family:"Quicksand", sans-serif;
  } 

  #about p{
    font-size: medium;
      font-family: "Gilroy";
  }



  .contact-container{
    width: 85%;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-left: 130px;
  }
  .contact-container .contact-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .contact-container .contact-content .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .contact-content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
  }
  .contact-content .left-side .details{
    margin: 14px;
    text-align: center;
  }
  .contact-content .left-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
  }
  .contact-content .left-side .details .topic{
    font-size: 23px;
    font-weight: 500;
  }
  .contact-content .left-side .details .text-one,
  .contact-content .left-side .details .text-two{
    font-size: 14px;
    color: #afafb6;
  }
  .contact-container .contact-content .right-side{
    width: 75%;
    margin-left: 75px;
  }
  .contact-content .right-side .topic-text{
    font-size: 25px;
    font-weight: 600;
    color: #3e2093;
  }
  .contact-content .right-side p{
    font-size: 15px;
  }

  .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
  }
  .right-side .message-box{
    min-height: 110px;
  }
  .right-side .input-box textarea{
    padding-top: 6px;
  }
  .right-side .button{
    display: inline-block;
    margin-top: 12px;
  }
  .right-side .button input[type="button"]{
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #3e2093;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button input[type="button"]:hover{
    background: #5029bc;
  }
  
  @media (max-width: 950px) {
    .contact-container{
      width: 90%;
      padding: 30px 40px 40px 35px ;
    }
    .contact-container .content .right-side{
     width: 75%;
     margin-left: 55px;
  }
  }
  @media (max-width: 820px) {
    .contact-container{
      margin: 40px 0;
      height: 100%;
    }
    .contact-container .content{
      flex-direction: column-reverse;
    }
   .contact-container .content .left-side{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }
   .contact-container .content .left-side::before{
     display: none;
   }
   .contact-container .content .right-side{
     width: 100%;
     margin-left: 0;
   }
  }
  

.column {
    text-align: center;
    align-items: center;
    justify-items: center;
    gap:4px;
    width: 25.5%;
    padding: 10px;
    height: 300px;
    margin: 20px;
    margin-left: 70px;
  }
  
  .googlemap {
    position: flex;
    padding-bottom: 75%; /* 4:3 ratio*/
    height: 0;
    /* overflow: hidden; */
}

.googlemap iframe {
position: absolute;
display: flex;
top: 0.5;
left: 0;
width: 100% !important;
height: 100% !important;
}


.footer-container{
    background-color:#212329;
    padding:2rem 0 1rem 0;
    font-size: medium;
  }
  .footer{
    width:80%;
    background-color:#212329;
    color:white;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    margin:0 auto;
  }
  .footer-heading{
    display:flex;
    flex-direction: column;
    margin-right: 4rem;
  }
  .footer-heading h2{
    margin-bottom: 2rem;
  }
  .footer-heading a{
    color:white;
    text-decoration: none;
    margin-bottom:0.5rem;
  }
  .footer-heading a:hover{
    color:#6495ED;
    transition: 0.3s ease-out;
  }
  .footer-email-form h2{
    margin-bottom: 2rem;
  }
  #footer-email {
    width:250px;
    height:40px;
    border-radius: 4px;
    outline: none;
    border: none;
    padding-left: 0.5rem;
    font-size: 1rem;
    margin-bottom:1rem;
  }
  #footer-email::placeholder{
    color:#b1b1b1;
  }
  #footer-email-btn{
    width: 100px;
    height: 40px;
    border-radius: 4px;
    background-color:#6495ED;
    outline: none;
    border: none;
    color:#fff;
    font-size: 1rem;
  }
  #footer-email-btn:hover{
    cursor: pointer;
    background-color: #337AF1;
    transition: all 0.4s ease-out;
  }
  @media screen and (max-width:1150px){
    .footer{
        height: 50vh;
     }
     .footer-email-form{
         margin-top:4rem;
     }
  }
  @media screen and (max-width:820px){
    .footer{
        padding-top: 4rem;
    }   
  }
  @media screen and (max-width:720px){
    .footer-3{
        display:none;
     }
     .footer-email-form{
         margin-top:2rem;
     }
  }
  .copyright {
    display: flex;
    justify-content: center;
    margin: 1rem auto 0 auto;
    padding-top: 1rem;
    border-top: grey 1px solid;
    width: 80%;
    color: white;
    font-family: 'lato',sans-serif;
  }
    
  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    /* background-color: blue; */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  #myBtn:hover {
    background-color: #555;
  }
  
 

