body{
    scroll-behavior: smooth;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
:root {
    --Bgcolor: #00469a;
    --Textcolor: #555553;
    --bgColor: #f7f7f7;
}
body a {
    text-decoration: none;
}
/* scroll bar */
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #182d59 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--Bgcolor);
    border-radius: 10px;
    border: 3px solid #ffffff;
  }
/* header {
    position: sticky;
    z-index: 1;
    top: -10px;
    background-color: white;
} */

header {

z-index: 1000;
box-shadow: 
        inset 0px 11px 8px -10px #CCC,
        inset 0px -11px 8px -10px #CCC;
}
.header2{
  box-shadow: 
        inset 0px 11px 8px -10px #CCC,
        inset 0px -11px 8px -10px #CCC;
}
/* utility */
.fa-chevron-right{
  color: var(--Bgcolor);
}
.scrollTop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: all 0.5s ease 0s;
    color: var(--Bgcolor);
    cursor: pointer;
    border-radius: 100px;
    z-index: 100000;
  }
  .up-down{
    animation: up-down linear 4s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: up-down linear 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: up-down linear 4s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: up-down linear 4s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: up-down linear 4s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
  }
  
  @keyframes up-down{
    0% {
      transform:  translate(1px,20px)  ;
    }
    24% {
      transform:  translate(1px,30px)  ;
    }
    50% {
      transform:  translate(1px,12px)  ;
    }
    74% {
      transform:  translate(1px,22px)  ;
    }
    100% {
      transform:  translate(1px,22px)  ;
    }
  }
  
  @-moz-keyframes up-down{
    0% {
      -moz-transform:  translate(1px,20px)  ;
    }
    24% {
      -moz-transform:  translate(1px,30px)  ;
    }
    50% {
      -moz-transform:  translate(1px,12px)  ;
    }
    74% {
      -moz-transform:  translate(1px,22px)  ;
    }
    100% {
      -moz-transform:  translate(1px,22px)  ;
    }
  }
  
  @-webkit-keyframes up-down {
    0% {
      -webkit-transform:  translate(1px,20px)  ;
    }
    24% {
      -webkit-transform:  translate(1px,30px)  ;
    }
    50% {
      -webkit-transform:  translate(1px,12px)  ;
    }
    74% {
      -webkit-transform:  translate(1px,22px)  ;
    }
    100% {
      -webkit-transform:  translate(1px,22px)  ;
    }
  }
  
  @-o-keyframes up-down {
    0% {
      -o-transform:  translate(1px,20px)  ;
    }
    24% {
      -o-transform:  translate(1px,30px)  ;
    }
    50% {
      -o-transform:  translate(1px,12px)  ;
    }
    74% {
      -o-transform:  translate(1px,22px)  ;
    }
    100% {
      -o-transform:  translate(1px,22px)  ;
    }
  }
  
  @-ms-keyframes up-down {
    0% {
      -ms-transform:  translate(1px,20px)  ;
    }
    24% {
      -ms-transform:  translate(1px,30px)  ;
    }
    50% {
      -ms-transform:  translate(1px,12px)  ;
    }
    74% {
      -ms-transform:  translate(1px,22px)  ;
    }
    100% {
      -ms-transform:  translate(1px,22px)  ;
    }
  }

  .scrollTop:hover i {
    /* scale: 1.1; */
    transform: translateY(-3px);
  }
  
.heading {
    color: var(--Bgcolor);
    font-weight: bold;
    font-size: 27px;
}
.para {
    color: var(--Textcolor);
    font-size: 19px;
    text-align: justify;
}
.para2 {
  color: var(--Textcolor);
  font-size: 19px;
  text-align: start;
}

.rightborder {
  /* border: 1px solid var(--Bgcolor); */
  cursor: pointer;
  transition: 0.3 ease-in;
}
.rightborder:hover h5 {
 color: var(--Bgcolor);
 font-weight: bold;
}


@media only screen and (max-width:768px){
  .rightborder {
    border-right: 0px solid var(--Bgcolor);
  }
}

/* navbar */
.logo {
    width: 175px;
}
.enq-btn {
    background-color: var(--Bgcolor);
    transition: 0.3s;
    font-size: 20px;
}

.enq-btn:hover {
    background-color: var(--Bgcolor);
    scale: 1.1;
}
.nav-link{
    font-weight: bold;
    font-size: 20px;
    color: var(--Textcolor);
    
}
.hover-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--Bgcolor);
    transition: width .3s;
}
.hover-link:hover::after {
  width: 100%;
  transition: width .3s;
}
.active2 {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--Bgcolor);
    transition: width .3s;
}
/* .navbar-toggler {
    border: none;
    outline: none;
    color: var(--BGColor);
    transition: 1s ease-in-out;
  } */
.navbar-toggler:focus {
    box-shadow: none;
    border: none;
    outline: none;
  }
  hr {
    border: 1px solid var(--Bgcolor);
    
  }
/* call now */

.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
    top: 15px;
    right: 20px;
	background: var(--Bgcolor);
	width: 3.5rem;
	height: 3.5rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }

	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 1.5rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }


  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(50, 157, 233, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(21, 6, 237, 0.2), 0 0 0 0 rgba(21, 6, 237, 0.2), rgba(21, 6, 237, 0.2), rgba(21, 6, 237, 0.2) }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(42, 182, 233, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(0, 157, 236, 0.2),s, rgba(21, 6, 237, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(3, 71, 198, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }

	span.num{
		position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
	}

/* hero section */
.content h3 {
    text-align: center;
    font-weight: bold;
    color: white;
}

.coursebtn a{
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    background-color: var(--Bgcolor);
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
}
.coursebtn a:hover{
    background-color: var(--Textcolor);
    color: white;
    transform: translateY(16px)
}
.coursebtn {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 768px) {
    .content h1{
        font-size: 40px;
    }
    .coursebtn {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .btn1 {
        width: 90%;
    }
}
.car1 {
    background: linear-gradient(#0006, #0006), url(./images/car4.png);
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  @media only screen and (max-width: 992px) {

   
    .car1 {
      height: 75vh;
    } }

  /* .main {
    position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
  } */
  
  .main-heading {
    color: #777;
    text-transform: uppercase;
  }
  
  .main-heading-primary {
    display: block;
    font-size: 3.0rem;
    font-weight: bold;
    letter-spacing: 15px;
    animation: moveInLeft 1s ease-out;
  }
  
  .main-heading-secondary {
    font-family: sans-serif;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 10px;
    /* background-color: var(--Bgcolor); */
    color: white;
    animation: moveInRight 1s ease-out;
  }
  
  @keyframes moveInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    
    80% {
      transform: translateX(10px);
    }
    
    100% {
      opacity: 1;
      transform: translate(0);
    }
  }
  
  @keyframes moveInRight {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }
    
    80% {
      transform: translateX(-10px);
    }
    
    100% {
      opacity: 1;
      transform: translate(0);
    }
  }
@media only screen and (max-width:768px) {
    .main-heading-primary {
        display: block;
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 10px;
        animation: moveInLeft 1s ease-out;
      }
      
      .main-heading-secondary {
        font-family: sans-serif;
        display: block;
        font-size: 1.rem;
        font-weight: bold;
        text-align: center;
        letter-spacing: 5px;
        color: rgb(255, 252, 254);
        animation: moveInRight 1s ease-out;
      }
}
/* hr tag */

#thread1{
	top: 0.8em;
	-webkit-animation: thread2 10s infinite;
  	-moz-animation:    thread2 10s infinite;
  	-o-animation:      thread2 10s infinite;
  	animation:         thread2 10s infinite;	
}
.btn11 {
  background-color: var(--Bgcolor);
}
.form-btn {
  background-color: var(--Bgcolor);
  color: white;
  border-radius: 20px;
  transition: all 0.3s;

}
.form-btn:hover {
  background-color:var(--Textcolor);
}































  
/* about us section */
.about_us ul li {
    font-size: 20px;
}
/* why us  */

/* card */
.cards {
    display: flex;
    gap: 25px;

}
.cards .card img {
    width: 125px;
    height: 125px;
    transition: 0.3s;
}

.card {
    width: 25%;
    cursor: pointer;
    overflow: hidden;
    border: 3px solid var(--Bgcolor);
    border-radius: 15px;
    
}
.card:hover.card img {
    scale: 1.1;
}
.card:hover.card h4 {
    color: var(--Bgcolor);
    font-weight: bold;
}
@media only screen and (max-width:768px) {
    .cards {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .card {
        width: 100%;
        cursor: pointer;
        overflow: hidden;
        /* text-align: center; */
    }
}



/* footer */
footer {
  background:  url(./images/footer.jpg);
  background-position: center;
  background-size: cover;
  /* border-top: 3px solid var(); */
}
.coursebg {
  background: linear-gradient(#0006, #0006), url(./images/carbg5.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* social icon */


.svg-inline--fa {
  vertical-align: -0.200em;
}

.rounded-social-buttons {
  text-align: center;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border: 0.125rem solid transparent;
  padding: 0;
  text-decoration: none;
  color: #fefefe;
  /* font-size: 1.5625rem; */
  font-weight: normal;
  line-height: 2em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  /* margin-right: 0.25rem; */
  /* margin-bottom: 0.25rem; */
}

.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram {
  font-size: 20px;
}

.rounded-social-buttons .social-button.facebook {
  background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
  background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
  color: #55acee;
  background: #fefefe;
  border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
  background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
  color: #007bb5;
  background: #fefefe;
  border-color: #007bb5;
}

.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
  color: #bb0000;
  background: #fefefe;
  border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
  background: #125688;
}

.rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
  color: #125688;
  background: #fefefe;
  border-color: #125688;
}
.iconlist {
    list-style: none;
}
.icon-bg {
    color: var(--Bgcolor);
}
.map {
    width: 100%;
    height: 400px;
}
/* form */
/* form input {
    display: block;
} */
.container form{
    padding: 30px 0 0 0;
  }
  .container form .form-row{
    /* display: flex; */
    margin: 32px 0;
  }
  form .form-row .input-data{
    width: 100%;
    height: 40px;
    margin: 0 20px;
    position: relative;
  }
  form .form-row .textarea{
    height: 50px;
  }
  .input-data input,
  .textarea textarea{
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid rgba(0,0,0, 0.12);
  }
  .input-data input:focus ~ label, .textarea textarea:focus ~ label,
  .input-data input:valid ~ label, .textarea textarea:valid ~ label{
    transform: translateY(-20px);
    font-size: 14px;
    color: #3498db;
  }
  .textarea textarea{
    resize: none;
    padding-top: 10px;
  }
  .input-data label{
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  .textarea label{
    width: 100%;
    bottom: 40px;
    background: #fff;
  }
  .input-data .underline{
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
  }
  .input-data .underline:before{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: #3498db;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .input-data input, select :focus ~ .underline:before,
  .input-data input, select :valid ~ .underline:before,
  .textarea textarea:focus ~ .underline:before,
  .textarea textarea:valid ~ .underline:before{
    transform: scale(1);
  }
  .submit-btn .input-data{
    overflow: hidden;
    height: 45px!important;
    width: 25%!important;
  }
  .submit-btn .input-data .inner{
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    background-color: var(--Bgcolor);
    transition: all 0.4s;
  }
  .submit-btn .input-data:hover .inner{
    left: 0;
  }
  .submit-btn .input-data input{
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 700px) {
    .container .text{
      font-size: 30px;
    }
    .container form{
      padding: 10px 0 0 0;
    }
    .container form .form-row{
      display: block;
    }
    form .form-row .input-data{
      margin: 35px 0!important;
    }
    .submit-btn .input-data{
      width: 40%!important;
    }
  }
 *{
    outline: none;
 }
 .last {
    background-color: var(--Textcolor);
 }
 .course div {
    border-radius: 20px;
    border: 3px solid var(--Textcolor);
    padding: 10px;
 }
 .course i {
    font-size: 75px;
    padding: 10px;
    color: var(--Bgcolor);
 }
.course a:hover .course div {
    background-color: var(--Textcolor);
}
/* course page */
.nav-tabs .active {
    background-color: var(--Bgcolor);
}
/* cards courses */
.courseanchor {
  background-color: var(--Textcolor) ;
}

.hover-link:hover.course i {
  background-color: black;
}

/* card */
.cards2 {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;

}
.card img {
  width: 100%;
  height: 150px;
  transition: 0.3s;
}

.card {
  width: 24%;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid var(--Textcolor);
  border-radius: 15px;
  
}
.card:hover.card img {
  scale: 1.1;
}
.card:hover.card h4 {
  color: var(--Textcolor);
}
.card:hover.card h4 {
  color: var(--Bgcolor);
  font-weight: bold;
  /* font-size: 20px; */
}
@media only screen and (max-width:768px) {
  .cards2 {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
  }
  .card {
      width: 85%;
      cursor: pointer;
      overflow: hidden;
      /* text-align: center; */
  }
  .cards2 p {
    text-align: center;
  }
}
select {
  border: none;
  border-bottom: 2px solid rgb(219, 214, 214);
}


.citem div img {
  width: 100%;
  height: 200px;
}
.citem h4 {
  color: var(--Bgcolor);
  font-weight: bold;
}
/* .citem p {
  margin-top: 25px;
} */
/* new form */
.form-group {
  margin-bottom: 20px;
}
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #0069d9!important;
  border-color: #0062cc!important;
}

.form-control{
  box-sizing: border-box;
  border-radius: 0px;


}
input:focus{
  outline:0px !important; 
  box-shadow: none !important;
}
textarea:focus {
  outline:0px !important; 
  box-shadow: none !important;
}
.selecttag{
 border: 1px solid grey;
}
.btn2 {
  background-color: var(--Bgcolor);
  width: 100%;
  transition: 0.3s;
  color: white;
  font-size: 20px;
  background-color: var(--Bgcolor);
  transition: 0.3s;
}
.btn2:hover {
  background-color: var(--Textcolor);
  color: white;
}
.sepaduicon{
  text-align: left;
}
.coruseborder{
  border: 2px solid var(--Bgcolor);
  border-radius: 10px;
}

/* course card bg */
.coursepara {
  font-size: 19px;
  color: white;
  text-align: justify;
  
}
.jobp{
  /* background-color: white; */
  color: var(--Bgcolor);
  display: inline-block;
}
.enq-btn2 {
  border: 2px solid white;
  transition: 0.3s;
  font-size: 19px;
  border-radius: 100px;
}
.enq-btn2:hover {
 background-color: var(--Bgcolor);
}
.enq-btn2 a {
  color: white;
}
.blink {
  animation: blink 2s linear infinite;
}
@keyframes blink{
  0%{opacity: 0;}
  50%{opacity: .5;}
  100%{opacity: 1;}
  }
@media only screen and (max-width:768px) {
  .coursepara {
    font-size: 18px;
    color: white;
    text-align: center;
    
  }
  .cardbg-1 h4 {
    text-decoration: underline;
    color: white;
    text-align: center;
  }
}
/* .accordion-item{
  border-bottom: 2px solid var(--Textcolor);

} */
.cardbg-1 h4 {
  text-decoration: underline;
  color: white;
}
.cardbg-1,.cardbg-2,.cardbg-3,.cardbg-4,.cardbg-5,.cardbg-6 {
  background-size: cover;
  height: 65vh;
 
}
.offcanvas {
  height: 100vh;
  width: 100vw;
}
.cardbg-1 {
  background: linear-gradient(rgba(7, 1, 90, 0.4), rgba(20, 5, 5, 50) ), url(./images/cardbg-1.jpg);
  background-position: center;
  background-size: cover;
}
.cardbg-2 {
  background: linear-gradient(rgba(7, 1, 90, 0.4), rgba(20, 5, 5, 50) ), url(./images/cardbg-2.jpg);
  background-position: center;
  background-size: cover;
}
.cardbg-3 {
  background: linear-gradient(rgba(7, 1, 90, 0.4), rgba(20, 5, 5, 50) ), url(./images/cardbg-3.jpg);
  background-position: center;
  background-size: cover;
}
.cardbg-4 {
  background: linear-gradient(rgba(7, 1, 90, 0.4), rgba(20, 5, 5, 50) ), url(./images/cardbg-4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cardbg-5 {
  background: linear-gradient(rgba(7, 1, 90, 0.4), rgba(20, 5, 5, 50) ), url(./images/cardbg-5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cardbg-6 {
  background: linear-gradient(rgba(7, 1, 90, 0.4), rgba(20, 5, 5, 50) ), url(./images/cardbg-6.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* gallary */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
.gallery a {
  height: 200px;
  width: 250px;
  margin: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 5px #000;
}
.gallery a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.gallery a img:hover {
  transform:scale(1.4);
}




