*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

:root{
  color-scheme: light dark;
}

body{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  background-color: black;
  overflow-x: hidden;
  transition-duration: 1s;
}

body.light{
  background-color: white;
} 

/*navBar------------------*/

.navbar{
  padding: 0;
  display: flex;
  align-items: center;
  height: 70px;
  width: 100%;
  font-size: 15px;
  text-align: center;
  justify-content: center;
  position: sticky;
  top: 0;
  background-color: black;
  z-index: 10;
  transition-duration: 1s;
}

.light .navbar{
  background-color: white;
}

.navBar-Logo{
  padding-right: 15px;
}

.navBar-Logo img{
  height: 40px;
  width: 40px;
}

ul {
    overflow: hidden;
    vertical-align: middle;
    list-style-type: none;
}

li{
    display: inline-block;
}

.navcontent a{
  display: block;
  font-weight: lighter;
  text-decoration: none;
  color: #9ccffb60;
  padding: 10px;
  margin: 0px 20px;
  transition: color .5s;
}

.light .navcontent a{
  color: #1E71B8;
}

.navcontent a:hover{
  display: block;
  font-weight: lighter;
  text-decoration: none;
  color: #9ccffb;
  padding: 10px;
  margin: 0px 20px;
  transition-duration: 0.5s;
}

.toggle{
  color: #9ccffb60;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

.light .toggle{
  color: #1E71B8;
}

.toggle:hover{
  color: #9ccffb;
  transition-duration: 0.5s;
  cursor: pointer;
}

.resumeDwn{
  cursor: pointer;
  margin-left: 20px;
}

.resumeDwn img{
  height: 28px;
  width: 28px;
}

/*Side Navbar*/

.side-navbar{
  background-color: black;
  width: 100%;
  position: fixed;
  top: -60%;
  padding: 20px 150px 0px;
  color: #9ccffb60;
  transition: 1.5s;
  z-index: 9;
  display: none;
  animation-name: dropDown;
  animation-duration: 1.5s;
  border-radius: 15px;
}

@keyframes dropDown{
  from {top:-60%}
  to {top: 50px;}
}

.closeBtn{
  padding-right: 20px;
  text-align: right;
  font-size: larger;
  color: #9ccffb;
  cursor: pointer;
}

.closeBtn i{
  margin-bottom: 10px;
}

.light .closeBtn{
  color: #1E71B8;
}

.light .side-navbar{
  background-color: white;
}

.side-navbar-link{
  margin-bottom: 30px;
}

.side-navbar-links a{
  text-decoration: none;
  color: #9ccffb;
  font-size: 20px;
}

.light .side-navbar-links a{
  color: #1E71B8;
}

.navbar-menu-toggle{
  color: #9ccffb;
  cursor: pointer;
}

.light .navbar-menu-toggle{
  color: #1E71B8;
}

@media screen {
  .side-navbar{
    display: none;
  }
  
  .navbar-menu-toggle{
    display: none;
  }
}


/*Banner------------------*/

.banner{
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0px 50px;
}

.banner-content p{
  color: #1E71B8;
  font-weight: lighter;
  font-size: 30px;
  animation-name: bannerHi;
  animation-duration: 3s;
}

.light .banner-content p{
  color: #1E71B870;
}

@keyframes bannerHi {
    from  {opacity: 0;}
    to {opacity: 1;}
}

.banner-content span{
  color: #F8F8FF;
  margin-right: 10px;
}

.light .banner-content span{
  color: #191970;
}

.banner-content h1{
  padding-top: 30px;
  color: #CCC350;
  font-size: 65px;
  font-weight: bolder;
  letter-spacing: 5px;
  animation-name: bannerH1;
  animation-duration: 1s;
}

.light .banner-content h1{
  color: #1E71B8;
}

@keyframes bannerH1 {
    0%  {transform: translateY(-300px); opacity: 0;}
    100% {opacity: 1;}
}

.banner-content h2{
  color: #9ccffb;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 5px;
  animation-name: bannerH2; 
  animation-duration: 1s;
}

.light .banner-content h2{
  color: #CCC350;
}

.banner-content h2:hover{
  color: #F8F8FF;
}

.light .banner-content h2:hover{
  color: #191970;
}

@keyframes bannerH2 {
    0%  {transform: translateX(-600px); opacity: 0;}
    100% {opacity: 1;}
}

.banner-content{
  width: 65%;
}

.banner-img{
  position: relative;
  height: 600px;
  overflow: hidden;
  width: 35%;
  padding: 0px 40px;
  border-bottom:2px solid #CCC350;
}

.light .banner-img{
  border-bottom:2px solid #1E71B8;
}

.banner-img img{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 562px;
  width: 450px;
  animation: bannerImg 2s ease-out forwards;
}

@keyframes bannerImg {
    0%  {bottom: -800px; opacity: 0;}
    50% {opacity: 1;}
    100% {bottom: 0px; opacity: 1;}
}

#loading{
  animation-name: Loading;
  animation-duration: 3s;
  height: 5px; 
  margin-top: 165px;
}

@keyframes Loading {
    0%  {width: 0;}
    100% {width: 100%;}
}

#About{
  height: 5px; 
  padding: 40px; 
  visibility: hidden;
}

.light .line1{
  height: 2px;
  background-color: black;
}


/*About------------------------------*/

.about{
  text-align: justify;
  align-items: center;
  margin: 30px 135px 0px;
  padding: 50px;
  border-radius: 20px;
  transition: 0.6s ease;
}

.light .about{
  background-color: #F8F8FF;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px 0px;
}

.about:hover{
  box-shadow: #1E71B8 0px 5px 15px 0px;
}

.light .about:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px 0px;
}

.about h2{
  color: #CCC350;
  font-size: 20px;
  font-weight: bolder;
  letter-spacing: 10px;
}

.light .about h2{
  color: #1E71B8;
}

.about p{
  margin-top: 30px;
  font-size: 20px;
  font-weight: lighter;
  word-spacing: 15px;
  line-height: 40px;
  text-align: justify;
  color: #F8F8FF;
}

.light .about p{
  color: #191970;
}

.ab-p{
  margin: auto;
  width: 90%;
}

.about h3{
  font-size: 20px;
  font-weight: bolder;  
  margin-top: 50px;
  letter-spacing: 10px;
}

.about a{ 
  color: #CCC350;
  text-decoration: none;
}

.light .about a{ 
  color: #1E71B8;
}

#Skills{
  height: 5px; 
  padding: 20px; 
  visibility: hidden;
}

/*Skills------------------*/

.skills{
    display: grid; 
    padding: 60px 0px 0px 0px;
    grid-template-columns: auto auto auto;
    place-items: center;
    align-items: center;
    opacity: 0;  
    width: 80%;
    transform: translateX(20%);
}

.item:first-child{
    grid-column-start: 1;
    grid-column-end: 4;
}

.skills img{
  height: 150px;
  width: 150px;
}

@keyframes skillsContent {
    to {opacity: 1; transform: translateX(0px); width: 100%;  }
}

.skills.afterAnime
{
  animation: skillsContent 0.5s forwards ease-in;
}

.skills h2{
  color: #9ccffb;
  font-weight: bolder;
  font-size: 20px;
  letter-spacing: 10px;
  margin-bottom: 50px;
}

.light .skills h2{
  color: #1E71B8;
}

.skills div{ 
  padding: 30px;
  border-radius: 10px;
  transition: 0.6s ease;
}

.skills div:hover{
  border-radius: 10px;
  box-shadow: #1E71B8 0px 5px 15px 0px;
}

.light .skills div:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 15px 0px;
}

/*Experience----------------------*/

.experience{
  margin: 0px 135px;
  padding: 50px;
  border-radius: 20px;
  transition: 0.6s ease;
}

.light .experience{
  background-color: #F8F8FF;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px 0px;
}

.experience:hover{
  box-shadow: #1E71B8 0px 5px 15px 0px;
}

.light .experience:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px 0px;
}

.experience h2{
  padding-bottom: 20px;
  color: #9ccffb;
  font-weight: bolder;
  font-size: 20px;
  letter-spacing: 10px;
}

.light .experience h2{
  color: #1E71B8;
}

.exp{
  padding: 10px 60px;
}

.experience h3{
  color: #CCC350;
  font-size: 20px;
  padding-top: 30px;
}

.experience p{
  color: #F8F8FF;
  font-size: 20px;
  font-weight: lighter;
  padding-top: 50px;
  text-align: justify;
  word-spacing: 15px;
  line-height: 40px;
}

.light .experience p{
  color: #191970;
}

/*Education------------------*/

.education{
  margin: 0px 135px 0px 135px;
  padding: 80px;
  border-radius: 20px;
  transition: 0.6s ease;
  /* border: 2px solid #CCC350; */
}

.light .education{
  background-color: #F8F8FF;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px 0px;
}

.education:hover{
  box-shadow: #1E71B8 0px 5px 15px 0px;
}

.light .education:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px 0px;
}

.education h2{
  padding-bottom: 20px;
  color: #9ccffb;
  font-weight: bolder;
  font-size: 20px;
  letter-spacing: 10px;
}

.light .education h2{
  color: #1E71B8;
}

.education h3{
  color: #CCC350;
  font-size: 20px;
  padding-top: 30px;
}

.education p{
  color: #F8F8FF;
  font-size: 20px;
  font-weight: lighter;
  padding-top: 20px;
  text-align: justify;
  word-spacing: 15px;
  line-height: 40px;
}

.light .education p{
  color: #191970;
}

.education span{
  font-weight: bold;
}

/*Projects------------------*/ 

.projects{
  margin: 0px 135px;
  padding: 50px;
}

.projects h2{
  text-align: center;
  font-size: 30px;
  color : #9ccffb;
  letter-spacing: 15px;
  padding: 0px 20px 50px 20px;
}

.light .projects h2{
  color : #1E71B8;
}

.projects h3{
  color: #CCC350;
  font-size: 20px;
}

.head-div{
  display: flex;
  align-items: center;
}

.head-line.afterAnime2{
  animation-name: headLineLoading;
  animation-duration: 2s;
}

@keyframes headLineLoading {
    0%  {width: 0;}
    100% {width: 70%;}
}

.div-1{
  display: flex;
  flex-direction: column;
  padding: 50px 50px 100px;
  align-items: center;
}

.div-1 p{
  color: #F8F8FF;
}

.light .div-1 p{
  color: #191970;
}

.portfolioLink img{
  height: 112.3px;
  width: 112.3px;
}

.sportzLink img{
  height: 112.3px; 
  width: 224.3px;
}

.web-row2 img{
  height: 113px;
  width: 225px;
}

.web-row1{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.web-row1 div{
  flex: 1;
  text-align: center;
  transition: 0.6s ease;
}

.web-row1 p{
  padding: 30px;
}

.web-row2 p{
  padding: 0px 50px;
  margin-top: 30px;
}

.light .portfolioLink{
  border-radius: 0px 0px 15px 15px;
  background-color: #F8F8FF;
  margin-right: 10px;
  padding-top: 10px;
}

.light .sportzLink{
  border-radius: 0px 0px 15px 15px;
  background-color: #F8F8FF;
  margin-left: 10px;
  padding-top: 10px;
}

.web-row1 div:hover, 
.web-row2:hover{
  box-shadow: #1E71B8 0px 20px 25px -10px;
  border-radius: 0px 0px 15px 15px;
}

.light .web-row1 div:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 25px -10px;
}

.light .web-row2:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 25px -10px;
}

.web-row2{
  text-align: center;
  width: 50%;
  padding: 25px;
  transition: 0.6s ease;
  border-radius: 0px 0px 15px 15px;
}

.light .web-row2{
  background-color: #F8F8FF;
}

.light .web-row2 img{
  stroke: black;
}

/* Applications design------------------- */

.div-2{
    text-align: justify;
    align-items: center;
    margin: 50px 0px;
    border-radius: 20px;
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.lightBoxRow{
    text-align: center;
    display: grid;
    grid-template-columns: auto auto auto;
    width: 100%;
    height: auto;
}

.column {
    height: 30vh;
    display: inline-block;
    padding: 20px;
    width: 100%;
}

.column img{
    height: 100%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

.myGroupSlides1{
  text-align: center;
}

.myGroupSlides2{
  text-align: center;
}

.myGroupSlides3{
  text-align: center;
}

.myGroupSlides2{
  height: 70vh;
}
  
.myGroupSlides2 img{
  height: 100%;
  object-fit: contain;
}

.inColumnDiv{
  place-items: center;
  align-items: center;
  display: grid;
  grid-template-columns: auto auto auto;
}

.inColumn{
  height: 100%;
  display: inline-block;
  width: 100%;
  padding: 10px;
  margin: 10px;
}

/* The Close Button */
.close {
  color: #9ccffb;
  position: absolute;
  top: 15%;
  right: 50px;
  font-size: 35px;
  font-weight: bold;
  z-index: 2;
  height: 40px;
  width: 40px;
  justify-content: center;
  text-align: center;
  transition: 0.6s ease;
}

.close:hover,
.close:focus {
  color: #F8F8FF;
  background-color: #9ccffb80;
  text-decoration: none;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  justify-content: center;
  text-align: center;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.groupPrev,
.groupNext {
  cursor: pointer;
  position: absolute;
  top: 25%;
  height: 25px;
  width: 25px;
  color: #9ccffb;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 50%;
  user-select: none;
  text-align: center;
}
.groupPrev{
    position: fixed;
    top: 50%;
    left: 30px;
}
.groupNext{
    position: fixed;
    top: 50%;
    right: 30px!important;
}
/* Position the "next button" to the right */
.groupNext {
  right: 0;
  border-radius: 50%;
}

/* On hover, add a black background color with a little bit see-through */
.groupPrev:hover, .groupNext:hover {
  color: #F8F8FF;
  background-color: #9ccffb80;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #F8F8FF;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  left: -50px;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: transparent;
  padding: 20px;
  color: #9ccffb;
  letter-spacing: 5px;
}

.demo {
  opacity: 0.6;
  height: 220px;
  object-fit: contain;
}

.active_,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.6s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 #1E71B8, 0 6px 20px 0 #1E71B8;
}

.light .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.4);
}


/* logoDesign */ /* Slideshow container--------------------------------------*/

.div-3{
  margin-top: 50px;
  padding: 30px;
  box-shadow: #1E71B8 0px 5px 15px 0px;
}

.logo1{
  height: 300px; 
  width: 537px;
}

.logo2{
  height: 300px;
  width: 300px;
}

.logo3{
  height: 300px;
  width: 300px;
}

.logo4{
  height: 300px; 
  width: 900px;
}

.light .div-3{
  background-color: rgba(0, 0, 0);
  box-shadow: rgba(0, 0, 0, 0.7) 0px 5px 15px 0px;
  border-radius: 5px;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides{
  text-align: center;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  height: 25px;
  width: 25px;
  color: #9ccffb;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 50%;
  user-select: none;
  text-align: center;
}

.next {
  right: 0;
  border-radius: 50%;
}

.prev:hover, .next:hover {
  background-color: #9ccffb;
  color: black;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #9ccffb50;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #9ccffb;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


/*Contact & Footer----------------------------*/

.contactFooter{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 2px #9ccffb80;
  margin: 50px;
  border-radius: 20px;
}

.light .contactFooter{
  border: solid 2px #CCC35060;
}

.contactFooter h2{
  color: #9ccffb;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bolder;
  font-size: 20px;
  letter-spacing: 10px;
}

.light .contactFooter h2{
  color: #1E71B8;
}

.reach-me{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.contact{   
  justify-self: center;
  margin: 30px;
  padding: 30px;
  width: 50%;
  border-radius: 20px;
  background-color: #1E71B810;
  transition: 0.6s ease;
}

.light .contact{   
  background-color: #F8F8FF;
}

.contact h2{
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: 10px;
  font-weight: lighter;
  color: #CCC350;
}

.light .contact h2{
  color: #191970;
}

.contact input{
  background-color: #9ccffb20;
  border: none;
  height: 50px;
  width: 97%;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 30px;
  justify-content: center;
  margin-top: 12px;
  padding: 10px;
}

.light .contact input{
  background-color: #CCC35040;
  color: #191970;
}

.contact textarea{
  background-color: #9ccffb20;
  border: none;
  height: 150px;
  width: 97%;
  text-align: justify;
  align-items: center;
  border-radius: 5px;
  justify-content: center;
  margin-top: 10px;
  padding: 15px 10px;
}

.light .contact textarea{
  background-color: #CCC35040;
  color: #191970;
}

.contact:hover{
  box-shadow: #1E71B8 0px 5px 15px 0px;
}

.light .contact:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 15px 0px;
}

.contact ::placeholder{
  padding: 0px 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  color: #F8F8FF;
}

.light .contact ::placeholder{
  color: #191970;
}

.contact button{
  color: black;
  background-color: #CCC350;
  width: 97%;
  padding: 10px 20px;
  margin-top: 35px;
  font-size: 20px;
  letter-spacing: 2px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.light .contact button{
  color: #F8F8FF;
  background-color: #1E71B8;
}

.error{
  color: rgb(223, 104, 104);
  font-weight: lighter;
}

.popup{
  position: fixed;
  top: 100px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  z-index: 1;
}

.success{
  background-color: #122338;
  padding: 30px 100px;
  border-radius: 15px;
  text-align: center;
}

.success img{
  margin-bottom: 10px;
}

.success h2{
  color: #CCC350;
}

.light .success h2{
  color: #CCC350;
}

.success h3{
  color: #F8F8FF;
  margin-bottom: 10px;
}

.light .success h3{
  color: #191970;
}

.light .success{
  background-color: #F8F8FF;
}

.success button{
  color: black;
  width: 30%;
  background-color: #CCC350;
}

.light .success button{
  color: #F8F8FF;
  background-color: #1E71B8;
}

.failed{
  background-color: #122338;
  padding: 30px 100px;
  border-radius: 15px;
  align-items: center;
  text-align: center;
}

.failed img{
  margin-bottom: 10px;
}

.failed h3{
  color: #F8F8FF;
  margin-bottom: 10px;
}

.light .failed h3{
  color: #191970;
}

.light .failed{
  background-color: #F8F8FF;
}

.failed button{
  color: #F8F8FF;
  width: 30%;
  background-color: black;
}

.light .failed button{
  color: #F8F8FF;
  background-color: black;
}

.footer{
  height: 100%;
  width: 50%;
  margin: 30px;
  padding: 30px;
  color: #CCC350;
  letter-spacing: 2px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1E71B810;
}

.light .footer{
  background-color: #F8F8FF;
}

.footer:hover{
  box-shadow: #1E71B8 0px 5px 15px 0px;
}

.light .footer:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 15px 0px;
}

.social {
  margin-bottom: 30px;
}

.social a{
  margin: 10px;
  font-size: 30px;
  color: #F8F8FF;
}

.light .social a{
  color: #191970;
}

.social a:hover{
  color: #CCC350;
}

.light .social a:hover{
  color: #9ccffb;
}

.weblink{
  text-decoration: none;
  color: #F8F8FF;
}

.weblink:hover{
  color: #CCC350;
}

.weblink p{
  margin-top: 20px;
  font-size: 15px;
}

.light .weblink{
  color: #191970;
}

.light .weblink:hover{
  color: #9ccffb;
}

.table{
  margin: 0px 60px;
}

.table td{
  padding: 20px 20px;
}

.table i{
  font-size: 25px;
}

.table a{
  text-decoration: none;
  color: #9ccffb;
  text-align: justify;
  line-height: 30px;
}

.light .table a{
  color: #1E71B8;
}

.table p{
  font-weight: lighter;
  font-size: 20px;
  color: #9ccffb;
  line-height: 30px;
}

.light .table p{
  color: #1E71B8;
}

.fa-phone{
  color: #F8F8FF;
}

.light .fa-phone{
  color: #191970;
}

.fa-envelope{
  color: #F8F8FF;
}

.light .fa-envelope{
  color: #191970;
}

.fa-location-dot{
  color: #F8F8FF;
}

.light .fa-location-dot{
  color: #191970;
} 

/* Media Query*/
/* Laptops */

@media screen and (max-width: 1440px) {
      
    /*navBar------------------*/

            .navbar{
              height: 60px;
              font-size: 12px;
            }

            .navBar-Logo img{
              height: 35px;
              width: 35px;
            }

            .navcontent a{
              padding: 5px;
              margin: 0px 10px;
            }

            .navcontent a:hover{
              padding: 5px;
              margin: 0px 10px;
            }

            .toggle{
              font-size: 12px;
              padding: 5px;
            }

            .side-navbar{
              display: none;
            }

            .navbar-menu-toggle{
              display: none;
            }

            .resumeDwn{
              margin-left: 15px;
            }

            .resumeDwn img{
              height: 20px;
              width: 20px;
            }

    /*Banner------------------*/

            .banner-content p{
              font-size: 20px;
            }

            .banner-content span{
              margin-right: 8px;
            }

            .banner-content h1{
              padding-top: 20px;
              font-size: 50px;
              letter-spacing: 3px;
            }

            .banner-content h2{
              font-size: 20px;
              letter-spacing: 3px;
            }

            .banner-img{
              height: 470px;
            }

            .banner-img img{
              height: 449px;
              width: 360px;
            }

            #loading{
              margin-top: 120px;
            }

    /* About---------------*/
            
            .about h2{
              font-size: 19px;
              letter-spacing: 8px;
            }

            .about h3{
            font-size: 19px;
            letter-spacing: 8px;
          }
            
            
    /* Applications design------------------- */
            /* The Close Button */
            .close {
              right: 30px;
            }
            
    /*Contact & Footer----------------------------*/
    
            .table i{
              font-size: 20px;
            }

            .table a{
              line-height: 20px;
            }

            .table p{
              font-size: 16px;
              line-height: 20px;
            } 

}

/* Mini laptop */
@media screen and (max-width: 1150px) {

    /*navBar------------------*/

            .navbar{
              height: 60px;
              font-size: 12px;
            }

            .navBar-Logo img{
              height: 35px;
              width: 35px;
            }

            .navcontent a{
              padding: 5px;
              margin: 0px 10px;
            }

            .navcontent a:hover{
              padding: 5px;
              margin: 0px 10px;
            }

            .toggle{
              font-size: 12px;
              padding: 5px;
            }

            .side-navbar{
              display: none;
            }

            .navbar-menu-toggle{
              display: none;
            }

            .resumeDwn{
              margin-left: 15px;
            }

            .resumeDwn img{
              height: 20px;
              width: 20px;
            }

    /*Banner------------------*/

            .banner-content p{
              font-size: 20px;
            }

            .banner-content span{
              margin-right: 8px;
            }

            .banner-content h1{
              padding-top: 20px;
              font-size: 35px;
              letter-spacing: 3px;
            }

            .banner-content h2{
              font-size: 15px;
              letter-spacing: 3px;
            }

            .banner-img{
              height: 330px;
            }

            .banner-img img{
              height: 314px;
              width: 251px;
            }

            #loading{
              margin-top: 80px;
            }
            
            /* About------------------- */
            
            #About{
              height: 5px; 
              padding: 25px; 
              visibility: hidden;
            }

            .about{
              margin: 30px 50px;
              padding: 30px;
              border-radius: 20px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .about h2{
              font-size: 12px;
              letter-spacing: 8px;
            }

            .about p{
              margin-top: 20px;
              font-size: 13px;
              font-weight: lighter;
              word-spacing: 10px;
              line-height: 30px;
            }

            .about h3{
              font-size: 12px; 
              margin-top: 30px;
              letter-spacing: 8px;
              line-height: 30px;
            }

    /*Skills------------------*/

            .skills{
                display: grid;
                padding: 45px 0px 0px 0px;
                grid-template-columns: auto auto;
                place-items: center;
                align-items: center;
                opacity: 0;  
                width: 80%;
                transform: translateX(20%);
            }

            .skills img{
                height: 100px;
                width: 100px;
            }

            .skills h2{
                color: #9ccffb;
                font-weight: bolder;
                font-size: 15px;
                letter-spacing: 8px;
            }

    /*Experience------------------*/       
            
            .experience{
              margin: 30px 50px;
              padding: 30px;
              border-radius: 20px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .experience h2{
              font-size: 16px;
              letter-spacing: 8px;
              padding: 0;
            }

            .experience p{
              margin-top: 10px;
              padding: 0;
              font-size: 13px;
              font-weight: lighter;
              word-spacing: 10px;
              line-height: 30px;
            }

            .experience h3{
              font-size: 15px;
              padding: 0;
              margin-top: 20px;
              letter-spacing: 6px;
              line-height: 30px;
            }

            .exp{
              padding: 0 30px;
            }

    /*Experience------------------*/       
            
            .education{
              margin: 30px 50px;
              padding: 50px;
              border-radius: 20px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .education h2{
              font-size: 16px;
              letter-spacing: 8px;
              padding: 0;
            }

            .education p{
              margin-top: 10px;
              padding: 0;
              font-size: 13px;
              font-weight: lighter;
              word-spacing: 10px;
              line-height: 30px;
            }

            .education h3{
              font-size: 15px;
              padding: 0;
              margin-top: 20px;
              letter-spacing: 6px;
              line-height: 30px;
            }
            
    /*Projects------------------*/ 

            .projects{
              margin: 30px 50px;
              padding: 30px;
            }

            .projects h2{
              font-size: 16px;
              letter-spacing: 8px;
              padding: 0px 20px 50px 20px;
            }

            .projects h3{
              font-size: 15px;
            }

            .div-1{
              padding: 50px 50px 100px;
            }

            .div-1 p{
              font-size: 13px;
            }

            .web-row1 p{
              padding: 20px;
            }

            .web-row2 p{
              padding: 0px 40px;
              margin-top: 15px;
            }

            .light .portfolioLink{
              margin-right: 0px;
              padding-top: 0px;
            }

            .light .sportzLink{
              margin-left: 0px;
              padding-top: 0px;
            }

            .portfolioLink img{
              margin-top: 20px;
              height: 80px;
              width: 80px;
            }

            .sportzLink img{
              margin-top: 20px;
              height: 80px; 
              width: 160px;
            }

            .web-row2 img{
              height: 80px;
              width: 159px;
            }

            .web-row1{
              flex-direction: column;
            }

            .web-row1 div{
              width: 100%;
              padding: 15px;
              text-align: center;
              transition: 0.6s ease;
              box-shadow: #1E71B8 0px 20px 25px -10px;
              border-radius: 0px 0px 15px 15px;
            }

            .light .web-row1 div{
              box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 25px -10px;
            }

            .sportzLink{
              margin-top: 50px;
            }

            .web-row2{
              text-align: center;
              width: 100%;
              margin-top: 25px;
              padding:30px;
              transition: 0.6s ease;
              box-shadow: #1E71B8 0px 20px 25px -10px;
              border-radius: 0px 0px 15px 15px;
            }

            .light .web-row2{
              box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 25px -10px;
            }
            
    /* Applications design------------------- */

            .div-2{
                text-align: justify;
                align-items: center;
                margin: 50px 0px;
                border-radius: 20px;
            }

            .lightBoxRow{
                height: auto;
                grid-template-columns: auto;
            }

            .column img{
                height: 100%;
            }

            /* The Modal (background) */
            .modal {
              display: none;
              position: fixed;
              z-index: 1;
              padding: 100px 50px 0px;
              margin: 0px;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              overflow: auto;
              background-color: black;
            }

            /* Modal Content */
            .modal-content {
              position: relative;
              background-color: rgba(0, 0, 0,);
              margin: auto;
              padding: 0;
              width: 90%;
              max-width: 1200px;
            }

            .myGroupSlides2{
              height: 40vh;
            }
              
            .myGroupSlides2 img{
              height: 100%;
              object-fit: contain;
            }

            .cursor {
              cursor: pointer;
            }

            .caption-container p{
              font-size: 12px;
            }

            .demo {
              height: 100px;
            }
            
    /* logoDesign */ /* Slideshow container--------------------------------------*/

            .div-3{
              margin-top: 25px;
              padding: 20;
            }

            .logo1{
              height: 133px; 
              width: 238px;
            }

            .logo2{
              height: 133px;
              width: 133px;
            }

            .logo3{
              height: 133px;
              width: 133px;
            }

            .logo4{
              height: 133px; 
              width: 400px;
            }

    /*Contact & Footer----------------------------*/

            .contactFooter h2{
              margin-top: 15px;
              margin-bottom: 15px;
              font-size: 16px;
              letter-spacing: 8px;
            }

            .reach-me{
              width: 100%;
              flex-direction: column;
              border-radius: 15px;
            }

            .contact{   
              margin: 0px 0px 30px;
              width: 80%;
              border-radius: 15px;
            }

            .contact h2{
              margin-top: 0px;
              margin-bottom: 20px;
              letter-spacing: 8px;
            }

            .contact input{
              height: 40px;
              margin-bottom: 20px;
            }

            .contact textarea{
              height: 130px;
            }

            .contact button{
              font-size: 16px;
              margin-top: 25px;
            }

            .success{
              padding: 20px 75px;
              border-radius: 10px;
            }

            .failed{
              padding: 20px 75px;
              border-radius: 10px;
            }

            .footer{
              width: 80%;
              margin: 30px 0px;
              border-radius: 15px;
            }

            .social {
              margin-bottom: 20px;
            }

            .social a{
              margin: 10px;
              font-size: 25px;
            }

            .weblink p{
              margin-top: 20px;
              font-size: 12px;
            }

            .table{
              margin: 0px 60px;
            }

            .table td{
              padding: 20px 20px;
            }

            .table i{
              font-size: 20px;
            }

            .table a{
              line-height: 20px;
            }

            .table p{
              font-size: 16px;
              line-height: 20px;
            }       
}


/* Tablets */
@media screen and (max-width: 768px) {
    
    /*navBar------------------*/

            .navbar-links{
              display: none;
            }
            .navbar-links a{
              display: none;
            }

            .navbar{
              padding: 0 30px;
              display: flex;
              align-items: left;
              height: 60px;
              width: 100%;
              font-size: 15px;
              text-align: left;
              justify-content: space-between;
              position: sticky;
              top: 0;
              background-color: black;
              z-index: 10;
              transition-duration: 1s;
            }

            .navBar-Logo{
              padding-right: 15px;
              padding-left: 15px;
            }

            .navBar-Logo img{
              height: 30px;
              width: 30px;
            }

            .navbar-menu-toggle{
              display: inline;
              padding: 10px;
            }

            .toggle{
              color: #9ccffb;
              font-size: 16px;
              padding: 10px;
              cursor: pointer;
            }

            .resumeDwn{
              margin-left: 0px;
            }

            .resumeDwn img{
              height: 24px;
              width: 24px;
            }
            
    /*Banner------------------*/
            .banner{
              flex-direction: column;
            }

            .banner-content p{
              font-size: 20px;
              margin-top: 30px;
            }
            .banner-content span{
              margin-right: 5px;
            }
            .banner-content h1{
              font-size: 35px;
            }
            .banner-content h2{
              font-size: 15.5px;
              margin-top: 10px;
            }

            .banner-content{
              padding: 0px 70px;
              width: 95%;
            }

            .banner-img{
              height: 410px;
              width: 95%;
            }

            #loading{
              margin-top: 40px;
            }
            
            .banner-img img{
              height: 393px;
              width: 315px;
            }

             

    /* About------------------- */
            
            #About{
              height: 5px; 
              padding: 25px; 
              visibility: hidden;
            }

            .about{
              margin: 30px 50px;
              padding: 30px;
              border-radius: 20px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .about h2{
              font-size: 16px;
              letter-spacing: 8px;
            }

            .about p{
              margin-top: 20px;
              font-size: 13px;
              font-weight: lighter;
              word-spacing: 10px;
              line-height: 30px;
            }

            .about h3{
              font-size: 15px; 
              margin-top: 30px;
              letter-spacing: 8px;
              line-height: 30px;
            }

    /*Skills------------------*/

            .skills{
                display: grid;
                padding: 45px 0px 0px 0px;
                grid-template-columns: auto auto;
                place-items: center;
                align-items: center;
                opacity: 0;  
                width: 80%;
                transform: translateX(20%);
            }

            .skills img{
                height: 100px;
                width: 100px;
            }

            .skills h2{
                color: #9ccffb;
                font-weight: bolder;
                font-size: 15px;
                letter-spacing: 8px;
            }

    /*Experience------------------*/       
            
            .experience{
              margin: 30px 50px;
              padding: 30px;
              border-radius: 20px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .experience h2{
              font-size: 16px;
              letter-spacing: 8px;
              padding: 0;
            }

            .experience p{
              margin-top: 10px;
              padding: 0;
              font-size: 13px;
              font-weight: lighter;
              word-spacing: 10px;
              line-height: 30px;
            }

            .experience h3{
              font-size: 15px;
              padding: 0;
              margin-top: 20px;
              letter-spacing: 6px;
              line-height: 30px;
            }

            .exp{
              padding: 0 30px;
            }

    /*Experience------------------*/       
            
            .education{
              margin: 30px 50px;
              padding: 50px;
              border-radius: 20px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .education h2{
              font-size: 16px;
              letter-spacing: 8px;
              padding: 0;
            }

            .education p{
              margin-top: 10px;
              padding: 0;
              font-size: 13px;
              font-weight: lighter;
              word-spacing: 10px;
              line-height: 30px;
            }

            .education h3{
              font-size: 15px;
              padding: 0;
              margin-top: 20px;
              letter-spacing: 6px;
              line-height: 30px;
            }
            
    /*Projects------------------*/ 

            .projects{
              margin: 30px 50px;
              padding: 30px;
            }

            .projects h2{
              font-size: 16px;
              letter-spacing: 8px;
              padding: 0px 20px 50px 20px;
            }

            .projects h3{
              font-size: 15px;
            }

            .div-1{
              padding: 50px 50px 100px;
            }

            .div-1 p{
              font-size: 13px;
            }

            .web-row1 p{
              padding: 20px;
            }

            .web-row2 p{
              padding: 0px 40px;
              margin-top: 15px;
            }

            .light .portfolioLink{
              margin-right: 0px;
              padding-top: 0px;
            }

            .light .sportzLink{
              margin-left: 0px;
              padding-top: 0px;
            }

            .portfolioLink img{
              margin-top: 20px;
              height: 80px;
              width: 80px;
            }

            .sportzLink img{
              margin-top: 20px;
              height: 80px; 
              width: 160px;
            }

            .web-row2 img{
              height: 80px;
              width: 159px;
            }

            .web-row1{
              flex-direction: column;
            }

            .web-row1 div{
              width: 100%;
              padding: 15px;
              text-align: center;
              transition: 0.6s ease;
              box-shadow: #1E71B8 0px 20px 25px -10px;
              border-radius: 0px 0px 15px 15px;
            }

            .light .web-row1 div{
              box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 25px -10px;
            }

            .sportzLink{
              margin-top: 50px;
            }

            .web-row2{
              text-align: center;
              width: 100%;
              margin-top: 25px;
              padding:30px;
              transition: 0.6s ease;
              box-shadow: #1E71B8 0px 20px 25px -10px;
              border-radius: 0px 0px 15px 15px;
            }

            .light .web-row2{
              box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 25px -10px;
            }
            
    /* Applications design------------------- */

            .div-2{
                text-align: justify;
                align-items: center;
                margin: 50px 0px;
                border-radius: 20px;
            }

            .lightBoxRow{
                height: auto;
                grid-template-columns: auto;
            }

            .column img{
                height: 100%;
            }

            /* The Modal (background) */
            .modal {
              display: none;
              position: fixed;
              z-index: 1;
              padding: 100px 50px 0px;
              margin: 0px;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              overflow: auto;
              background-color: black;
            }

            /* Modal Content */
            .modal-content {
              position: relative;
              background-color: rgba(0, 0, 0,);
              margin: auto;
              padding: 0;
              width: 90%;
              max-width: 1200px;
            }

            .myGroupSlides2{
              height: 40vh;
            }
              
            .myGroupSlides2 img{
              height: 100%;
              object-fit: contain;
            }

            .cursor {
              cursor: pointer;
            }

            .caption-container p{
              font-size: 12px;
            }

            .demo {
              height: 100px;
            }
            
    /* logoDesign */ /* Slideshow container--------------------------------------*/

            .div-3{
              margin-top: 25px;
              padding: 20;
            }

            .logo1{
              height: 133px; 
              width: 238px;
            }

            .logo2{
              height: 133px;
              width: 133px;
            }

            .logo3{
              height: 133px;
              width: 133px;
            }

            .logo4{
              width: 100%;
            }

    /*Contact & Footer----------------------------*/

            .contactFooter h2{
              margin-top: 15px;
              margin-bottom: 15px;
              font-size: 16px;
              letter-spacing: 8px;
            }

            .reach-me{
              width: 100%;
              flex-direction: column;
              border-radius: 15px;
            }

            .contact{   
              margin: 0px 0px 30px;
              width: 80%;
              border-radius: 15px;
            }

            .contact h2{
              margin-top: 0px;
              margin-bottom: 20px;
              letter-spacing: 8px;
            }

            .contact input{
              height: 40px;
              margin-bottom: 20px;
            }

            .contact textarea{
              height: 130px;
            }

            .contact button{
              font-size: 16px;
              margin-top: 25px;
            }

            .success{
              padding: 20px 75px;
              border-radius: 10px;
            }

            .failed{
              padding: 20px 75px;
              border-radius: 10px;
            }

            .footer{
              width: 80%;
              margin: 30px 0px;
              border-radius: 15px;
            }

            .social {
              margin-bottom: 20px;
            }

            .social a{
              margin: 10px;
              font-size: 25px;
            }

            .weblink p{
              margin-top: 20px;
              font-size: 12px;
            }

            .table{
              width: 100%;
              margin: 0px 0px;
            }

            .table td{
              padding: 20px 20px;
            }

            .table i{
              font-size: 17px;
            }

            .table a{
              line-height: 15px;
            }

            .table p{
              font-size: 13px;
              line-height: 15px;
            }       
}

/* Mobiles */
@media screen and (max-width: 480px) {
  
    /*navBar------------------*/

            
            .navbar{
              padding: 0 20px;
              display: flex;
              align-items: left;
              height: 60px;
              width: 100%;
              font-size: 15px;
              text-align: left;
              justify-content: space-between;
              position: sticky;
              top: 0;
              background-color: black;
              z-index: 10;
              transition-duration: 1s;
            }

            .navBar-Logo img{
              height: 25px;
              width: 25px;
            }

            .navbar-links{
              display: none;
            }

            .navbar-links a{
              display: none;
            }

            .navbar-menu-toggle{
              display: inline;
              padding: 10px;
            }

            .toggle{
              color: #9ccffb;
              font-size: 15px;
              padding: 10px;
              cursor: pointer;
            }

            .resumeDwn{
              margin-left: 0px;
            }

            .resumeDwn img{
              height: 20px;
              width: 20px;
            }

      /*Side Navbar*/

            .side-navbar{
              background-color: black;
              width: 100%;
              position: fixed;
              top: -60%;
              padding: 20px 100px 0px;
              color: #9ccffb60;
              transition: 1.5s; 
              z-index: 9;
              display: none;
              animation-name: dropDown;
              animation-duration: 1.5s;
              border-radius: 15px;
            }

            @keyframes dropDown{
              from {top:-60%}
              to {top: 50px;}
            }

            .closeBtn{
              padding-right: 15px;
              text-align: right;
              font-size: larger;
              color: #9ccffb;
            }

            .closeBtn i{
              margin-bottom: 10px;
            }

            .light .closeBtn{
              color: #1E71B8;
            }

            .light .side-navbar{
              background-color: white;
            }

            .side-navbar-link{
              margin-bottom: 20px;
            }

            .side-navbar-links a{
              text-decoration: none;
              color: #9ccffb;
              font-size: 15px;
            }

            .light .side-navbar-links a{
              color: #1E71B8;
            }

            .navbar-menu-toggle{
              color: #9ccffb;
            }

            .light .navbar-menu-toggle{
              color: #1E71B8;
            }     

    /*Banner------------------*/
            .banner{
              flex-direction: column;
              margin: 0px 20px;
            }

            .banner-content p{
              font-size: 10px;
              margin-top: 10px;
            }
            .banner-content span{
              margin-right: 5px;
            }
            .banner-content h1{
              font-size: 21.5px;
            }
            .banner-content h2{
              font-size: 8.8px;
              margin-top: 10px;
            }

            .banner-content{
              width: 100%;
              padding: 0 22px;
            }

            .banner-img{
              position: relative;
              overflow: hidden;
              height: 300px;
              width: 100%;
              padding: 0px 62px;
              border-bottom:2px solid #CCC350;
            }

            #loading{
              margin-top: 30px;
              margin-bottom: 10px;
            }
            
            .banner-img img{
              position: absolute;
              justify-content: center;
              height: 275px;
              width: 220px;
              animation: bannerImg 2s ease-out forwards;
            }
          
    /* About------------------- */
            
            #About{
              height: 5px; 
              padding: 30px; 
              visibility: hidden;
            }

            .about{
              margin: 15px 35px;
              padding: 20px;
              border-radius: 10px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .about h2{
              font-size: 11px;
              letter-spacing: 5px;
            }

            .about p{
              margin-top: 20px;
              font-size: 10px;
              font-weight: lighter;
              word-spacing: 8px;
              line-height: 20px;
            }

            .about h3{
              font-size: 11px; 
              margin-top: 30px;
              letter-spacing: 5px;
              line-height: 20px;
            }
  
    /*Skills------------------*/

            .skills{
                display: grid;
                padding: 45px 0px 0px 0px;
                grid-template-columns: auto auto;
                place-items: center;
                align-items: center;
                opacity: 0;  
                width: 80%;
                transform: translateX(20%);
            }

            .item:first-child{
                grid-column-start: 1;
                grid-column-end: 3;
            }

            .skills img{
                height: 80px;
                width: 80px;
            }

            .skills h2{
                color: #9ccffb;
                font-weight: bolder;
                font-size: 12px;
                letter-spacing: 5px;
                margin-bottom: 50px;  
            }

    /*Experience------------------*/         

            .experience{
              margin: 15px 35px;
              padding: 20px;
              border-radius: 10px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .experience h2{
              font-size: 11px;
              letter-spacing: 5px;
              padding: 0;
            }

            .experience p{
              margin-top: 10px;
              padding: 0;
              font-size: 10px;
              font-weight: lighter;
              word-spacing: 8px;
              line-height: 20px;
            }

            .experience h3{
              font-size: 11px;
              padding: 0;
              margin-top: 20px;
              letter-spacing: 5px;
              line-height: 20px;
            }

            .exp{
              padding: 0 10px;
            }

    /*Experience------------------*/         

            .education{
              margin: 15px 35px;
              padding: 30px;
              border-radius: 10px;
              box-shadow: #1E71B8 0px 5px 15px 0px;
            }

            .education h2{
              font-size: 11px;
              letter-spacing: 5px;
              padding: 0;
            }

            .education p{
              margin-top: 10px;
              padding: 0;
              font-size: 10px;
              font-weight: lighter;
              word-spacing: 8px;
              line-height: 20px;
            }

            .education h3{
              font-size: 11px;
              padding: 0;
              margin-top: 20px;
              letter-spacing: 5px;
              line-height: 20px;
            }
    /*Projects------------------*/ 

            .projects{
              margin: 15px 35px;
              padding: 0;
            }

            .projects h2{
              font-size: 11px;
              letter-spacing: 5px;
              padding: 0px 20px 20px 20px;
            }

            .projects h3{
              font-size: 11px;
            }

            .div-1{
              padding: 50px 50px 70px;
            }

            .div-1 p{
              font-size: 11px;
            }

            .web-row1 p{
              padding: 15px;
            }

            .web-row2 p{
              padding: 0px 30px;
              margin-top: 15px;
            }

            .light .portfolioLink{
              margin-right: 0px;
              padding-top: 0px;
            }

            .light .sportzLink{
              margin-left: 0px;
              padding-top: 0px;
            }

            .portfolioLink img{
              margin-top: 20px;
              height: 64px;
              width: 64px;
            }

            .sportzLink img{
              margin-top: 20px;
              height: 64px; 
              width: 127px;
            }

            .web-row2 img{
              height: 64px;
              width: 127px;
            }

            .web-row1{
              flex-direction: column;
            }

            .web-row1 div{
              width: 100%;
              padding: 10px;
              text-align: center;
              transition: 0.6s ease;
              box-shadow: #1E71B8 0px 20px 25px -10px;
              border-radius: 0px 0px 15px 15px;
            }

            .light .web-row1 div{
              box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 25px -10px;
            }

            .sportzLink{
              margin-top: 40px;
            }

            .web-row2{
              text-align: center;
              width: 100%;
              padding: 25px;
              transition: 0.6s ease;
              box-shadow: #1E71B8 0px 20px 25px -10px;
              border-radius: 0px 0px 15px 15px;
            }
            
            .light .web-row2{
              box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 25px -10px;
            }
            
    /* Applications design------------------- */        
            
            .column{
                width: 100%;
                max-width: 100%;
                margin: 0;
                display: block;
            }
            
            .a{
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .a img{
                width: 100%;
                display: block;
                object-fit: contain;
                height: auto;
            }
            
            .div-2{
                text-align: justify;
                align-items: center;
                margin: 20px 0px;
                width: 100%;
                padding: 0 6px;
                border-radius: 10px;
            }

            .lightBoxRow{
                display: flex;
                flex-direction: column;
                width: 100%;
                padding: 0;
                gap: 10px;
                justify-content: center;
                align-items: center;
            }

            /* The Modal (background) */
            .modal {
              display: none;
              position: fixed;
              z-index: 1;
              padding: 80px 50px 0px;
              margin: 0px;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              overflow: auto;
              background-color: black;
            }

            /* Modal Content */
            .modal-content {
              position: relative;
              background-color: rgba(0, 0, 0,);
              margin: auto;
              padding: 0;
              width: 90%;
              max-width: 1200px;
            }

            .myGroupSlides2{
              height: 40vh;
            }
              
            .myGroupSlides2 img{
              height: 100%;
              object-fit: contain;
            }

            .cursor {
              cursor: pointer;
            }

            .caption-container p{
              font-size: 8px;
            }
            
            .inColumnDiv{
              grid-template-columns: auto auto;
            }

    /* logoDesign */ /* Slideshow container--------------------------------------*/

            .div-3{
              margin-top: 20px;
              padding: 15px;
            }

            .logo1{
              height: 80px; 
              width: 143px;
            }

            .logo2{
              height: 80px;
              width: 80px;
            }

            .logo3{
              height: 80px;
              width: 80px;
            }

            .logo4{
              height: 80px; 
              width: 240px;
            }

            .prev, .next {
              height: 15px;
              width: 15px;
              font-size: 11px;
            }

            .dot {
              height: 5px;
              width: 5px;
            } 
            
    /*Contact & Footer----------------------------*/
            
            .contactFooter{
              margin: 35px;
            }
    
            .contactFooter h2{
              margin-top: 12px;
              margin-bottom: 12px;
              font-size: 11px;
              letter-spacing: 5px;
            }

            .reach-me{
              width: 100%;
              flex-direction: column;
              border-radius: 10px;
            }

            .contact{   
              margin: 0px 0px 10px;
              padding: 10px;
              width: 90%;
              border-radius: 10px;
            }

            .contact h2{
              margin-top: 0px;
              margin-bottom: 5px;
              letter-spacing: 5px;
            }

            .contact input{
              height: 30px;
              margin-bottom: 15px;
            }

            .contact textarea{
              height: 110px;
            }

            .contact ::placeholder{
              font-size: 11px;
            }

            .contact button{
              font-size: 11px;
              margin-top: 10px;
            }

            .error{
              font-size: 8px;
            }

            .success{
              padding: 15px 50px;
              border-radius: 10px;
            }

            .success h2{
              font-size: 11px;
            }

            .success h3{
              font-size: 12px;
            }

            .failed{
              padding: 15px 50px;
              border-radius: 10px;
            }

            .failed h3{
              font-size: 12px;
            }

            .footer{
              width: 90%;
              margin: 20px 0px;
              border-radius: 10px;
            }

            .social {
              margin-bottom: 10px;
            }

            .social a{
              margin: 10px;
              font-size: 15px;
            }

            .table{
              
              margin: 0px 0px;
            }

            .table td{
              padding: 5px 5px;
            }

            .table i{
              font-size: 10px;
            }

            .table a{
              line-height: 10px;
            }

            .table p{
              font-size: 8px;
              line-height: 15px;
            }

            .weblink p{
              font-size: 6px;
              margin-top: 10px;
            }
                   
}  

