* {
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
       
}

#section01 {
    position: relative;
    height: 400px;
    background-image: url(img/pic01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    box-shadow:5px 5px 9px white, 5px -5px 9px white ;
}

#section02 {
    background-color: #133143;
    border-bottom: solid 1px white; 

}
#section03 {
    /*background-color: #2a668a;*/
    background: linear-gradient(-45deg, #e98db2, #5099d4, #1cac8a);
	background-size: 200% 200%;
	animation: gradient 15s ease infinite;
    border-bottom: solid 1px white; 
}

#section04 {
    background-color: #133143; 
     
}

.nav-item a{
    text-decoration: none;
}

.navcolor {
    background-color: #133143;  
}

.nav-brand {
    background-color: #bd915b;
}

  
/* Flip Cards CSS */

.card-container {
    display: grid;
    perspective: 700px;
}
  
.card-flip {
    display: grid;
    grid-template: 1fr / 1fr;
    grid-template-areas: "frontAndBack";
    transform-style: preserve-3d;
    transition: all 0.7s ease;
}
  
.card-flip div {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}


.front {
    grid-area: frontAndBack;
    background-color: gray;
}
  
.back {
    background-color: gray;
    grid-area: frontAndBack;
    transform: rotateY(-180deg);
}
  

.card-container:hover .card-flip {
    transform: rotateY(180deg);
}
  

.card {
    box-shadow:5px 10px 18px black;

}

.cardbutton {
    text-align: center;
    background-color: #696666;
}

.card:hover{
    -webkit-box-shadow: -1px 9px 40px -12px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 9px 40px -12px rgba(0,0,0,0.75);
    box-shadow: -1px 9px 40px -12px rgba(0,0,0,0.75);
}

.infocard {
    background-color: white;
    
}

.bc {
    background-color: #96387b;
    color: white;

}
.bc:hover {
    background-color: #96387b;
    color: white;
}

.details-card .details-card-icon,.details-card-heading{
    display: flex;
    justify-content: center;
}

/*Profile Card 3*/
.profile-card-3 {
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    float: center;
    overflow: hidden;
    width: 100%;
    text-align: center;
    height:368px;
    border:none;
}
.profile-card-3 .background-block {
      float: center;
      width: 100%;
      height: 200px;
      overflow: hidden;
}
.profile-card-3 .background-block .background {
    width:100%;
    vertical-align: top;
    opacity: 0.9;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
     -webkit-transform: scale(1.8);
    transform: scale(2.5);
}
.profile-card-3 .card-content {
    width: 100%;
    padding: 15px 25px;
    color:#232323;
    float:center;
    background:#efefef;
    height:50%;
    border-radius:0 0 5px 5px;
    position: relative;
    z-index: 9999;
}
.profile-card-3 .card-content::before {
      content: '';
      background: #efefef;
      width: 120%;
      height: 100%;
      left: 8px;
      bottom: 60px;
      position: absolute;
      z-index: -1;
      transform: rotate(-13deg);
}
.profile-card-3 .profile {
    border-radius: 50%;
    position: absolute;
    bottom: 50%;
    left: 50%;
    max-width: 100px;
    opacity: 1;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 1);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index:99999;
}
.profile-card-3 h2 {
    margin: 0 0 5px;
    font-weight: 600;
    font-size:25px;
}
.profile-card-3 h2 small {
    display: block;
    font-size: 15px;
    margin-top:10px;
}
.profile-card-3 i {
    display: inline-block;
      font-size: 16px;
      color: #232323;
      text-align: center;
      border: 1px solid #232323;
      width: 30px;
      height: 30px;
      line-height: 30px;
      border-radius: 50%;
      margin:0 5px;
}
.profile-card-3 .icon-block{
      float:left;
      width:100%;
      margin-top:15px;
}
.profile-card-3 .icon-block a{
      text-decoration:none;
}
.profile-card-3 i:hover {
    background-color:#232323;
    color:#fff;
    text-decoration:none;
}



#info {
    background-color: #133143;
    border-bottom: 1px white solid;
    min-height: 60vh;
   
}


#main-footer {
    background-color: #696666;
}

.maps {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; 
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#section05 {
    position: relative;
    height: 250px;
    background-image: url(img/pic01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    background-attachment: fixed;
    box-shadow:5px 5px 9px white, 5px -5px 9px white;
    
}

.move1 {
    animation: moveInRight 3s ease-out;
   
}

.move2 {
    animation: moveInBottom 3s ease-out .75s;
    animation-fill-mode: backwards;   
}


.move3 {
    animation: moveUpDown 2s ease-out .75s;
    animation-fill-mode: backwards;   
}


@media only screen {
    .card-container {
        padding: 10px;
        
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) { 
    .card-container {
        width: 30rem;
    
    }
 }

@media (max-width:766px) {
    #section03 {
        background: #2a668a;
    }

    .profile-card-3 .card-content::before {
        content: '';
        background: #efefef;
        width: 120%;
        height: 100%;
        left: 8px;
        bottom: 80px;
        position: absolute;
        z-index: -1;
        transform: rotate(-13deg);
  }

}



@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveInleft {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}


@keyframes moveUpDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}


@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}




