#part1 {
    background-image: url("img\\home-bg.jpg");
    background-size: cover;
    height: 100vh;
    background-position: center center;
    background-attachment: fixed;
}

a {
    color: black;
    text-decoration: none;
}

header {
    position: relative;
    z-index: 99;
}

textarea {
    resize: none;
}

.w-60 {
    width: 60%;
}

.work{
    font-size: 60px;
    font-weight: 500;
}

.mr-5 {
    margin-right: 5%;
}

#contact input::placeholder,#contact textarea::placeholder {
    color: #2d2d2d;
    transition: all ease-in-out 0.5s;
}

#contact input,#contact textarea {
    border: 2px solid rgb(80, 80, 80);
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: all ease-in-out 0.5s;
    outline: none;
}

#contact input:hover, #contact input:focus,#contact textarea:hover, #contact textarea:focus{
    background-color: #232393;
    color: #FFF;
    border-color: #bbbbbb;
}

#contact input:hover::placeholder, #contact input:focus::placeholder, #contact textarea:hover::placeholder, #contact textarea:focus::placeholder{
    color: #FFF;
}

.largeMsg {
    padding-bottom: 150px;
}

h1 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(91, 91, 91);
}

h2 {
    text-align: center;
}

#resume p {
    border-color: #232393 !important;
}

strong {
    color: #232393;
}

.text-primary {
    color: #232393;
}

.work-card {
    transition: all 0.5s ease-out;
}

.work-card:hover {
    border-color: #232393 !important;
}

h1 + h2 {
    color: #232393;
}

.w-45 {
    width: 45%;
}

#part1 a {
    color: white;
    text-decoration: none;
    background-color: #232393;
    border: 0;
    padding: 10px 40px;
    font-size: 25px;
    border-radius: 3px;
}

.work-card a {
    color: white;
    text-decoration: none;
    background-color: #232393;
    border: 0;
    padding: 5px 15px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 3px;
}

nav a {
    text-decoration: none !important;
    color: black !important;
    font-weight: 600 !important;
}

nav a:hover {
    color: #232393 !important;
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px -5px 15px black;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    transition: all 0.6s ease;
}

.menu-visible {
    transform: translateY(0);
    opacity: 1;
}
  
.menu-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.compShadow {
    box-shadow: 0 0 10px;
}

.compSize {
    width: 300px;
    height: 200px;
}

.w-30 {
    width: 30%;
}

.compFont {
    font-size: 25px;
    font-weight: 600;
}

.bg-gray {
    background-color: #e7e7e7;
}

.bg-dGray {
    background-color: #2d2d2d;
}

.iso-box {
    border-radius: 3px;
    box-shadow: 0 0 15px black;
  width: 350px;
  min-height: 50px;
  float: left;
  overflow: hidden;
  margin-bottom: 20px;
}

.portfolio-thumb {
  overflow: hidden;
  margin: 0;
  position: relative;
}

.portfolio-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #232393;
  color: #ffffff;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;  
  padding: 0 40px;
  text-align: center;
  position: absolute;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.portfolio-thumb:hover .portfolio-overlay {
  opacity: 0.8;  
  -webkit-transform: scale(1.0);
  -ms-transform: scale(1.0);
  transform: scale(1.0);
}
.portfolio-overlay .fa {
  border: 1px solid #666;
  border-radius: 0;
  color: #666;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  margin-right: 6px;
  margin-bottom: 10px;
}

.portfolio-item-title {
  font-weight: bold;
  margin-top: 10px;
  text-transform: uppercase;
}

/* Button */
button {
    font-family: inherit;
    font-size: 20px;
    background: #232393;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
  }
  
  button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
  }
  
  button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
  }
  
  button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
  }
  
  button:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
  }
  
  button:hover span {
    transform: translateX(5em);
  }
  
  button:active {
    transform: scale(0.95);
  }
  
  @keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
  
    to {
      transform: translateY(-0.1em);
    }
  }
/* Button */

@media screen and (min-width: 992px) {
.iso-box {
    width: 450px;
}

.w-md-75 {
    width: 75% !important;
}

.w-md-50 {
    width: 50% !important;
}
}