* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-size: 18px;
  font-family: "Poppins";
  color: #4f93ad;
  background: white;
}

nav {
  background: /*linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%),*/
  url('/img/background.jpg');
  background-position: center;
  background-size: auto;
  height: 500px;
  width: 100%;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
  color: white;
}

nav ul li a {
  font-size: 20px;
  font-family: " CaviarDreams";
  color: white;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 3px;
}

nav ul li a:link {
  color: white;
}

nav ul li a:hover {
  color: white;
  letter-spacing: 2px;
  transition: .5s;
}

nav ul li a.active {
  color: white;
  border-bottom: 2px solid;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: .5s;
}

a:link {
  color: #215e75;
  margin: 1%;
}

a:hover {
  color: #4f93ad;
  transition: .5s;
  max-height: 40px;
}

p {
  margin: 1%;
}

h1 {
  font-size: 35px;
  font-family: " CaviarDreams";
  color: #215e75;
  text-transform: uppercase;
  margin: 1%;
}

h2 {
  font-size: 28px;
  font-family: " CaviarDreams";
  color: #215e75;
  text-transform: uppercase;
  margin: 1%;
}

div {
  width: 50%;
  margin: 0 auto;
  margin-top: 2%;
}

section {
  background: no-repeat;
  background-size: cover;
  height: calc(100vh - 80px);
}

iframe {
  margin: 0 auto;
  display: block;
  border: 0;
  width: 100%;
  height: 300px;
}

blockquote {
  font-size: 18px;
  color: #215e75;
  border-left: 10px solid #215e75;
  margin: 24px 10px;
  padding: 8px 10px;
  quotes: "\201C""\201D""\2018""\2019";
}

blockquote:before {
  font-size: 64px;
  font-family: 'Times New Roman', Times, serif;
  color: #215e75;
  content: open-quote;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -6px;
}

blockquote p {
  display: inline;
}

.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

.img-span {
  font-size: 14px;
}

/*index images*/

.img-container {
  width: 50%;
  box-sizing: border-box;
  height: 35vh;
  display: flex;
}

.box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  box-shadow: 0 7px 6px rgba(0, 0, 0, .2);
  line-height: 0;
}

.box>img {
  width: 200%;
  height: calc(100% - 3vh);
  margin: 2%;
  object-fit: cover;
  transition: .5s;
  filter: sepia(100%) brightness(55%) hue-rotate(151deg) saturate(177%) contrast(130%) invert(13%);
}

.box>span {
  height: auto;
  display: block;
  text-align: center;
  line-height: 2;
}

.box:hover {
  flex: 1 1 100%;
}

.box:hover>img {
  width: 100%;
  height: 100%;
  transition: .5s;
  filter: none;
  margin: 0;
}

/*index images*/

/*contact*/

.contact-in {
  width: 40%;
  height: auto;
  margin: auto;
  margin-top: 2%;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap-reverse;
}

.contact-map {
  width: 100%;
  height: auto;
  margin-top: 0;
  flex: 60%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-form {
  width: 100%;
  height: auto;
  margin-top: 0;
  flex: 40%;
  text-align: center;
}

.contact-form-txt {
  font-family: "Poppins";
  color: #215e75;
  text-align: center;
  width: 100%;
  border: none;
  outline: none;
  margin-bottom: 20px;
}

/*contact*/

#check {
  display: none;
}

@media (min-width: 1618px) and (max-width: 1800px) {
  .contact-in {
    width: 50% !important;
  }
}

@media (min-width: 1226px) and (max-width: 1618px) {
  .contact-in {
    width: 60% !important;
  }
}

@media (min-width: 858px) and (max-width: 1226px) {
  .contact-in {
    width: 70% !important;
  }
}

@media (max-width: 952px) {
  nav ul li a {
    font-size: 16px;
  }
  nav ul li a:hover {
    color: white;
    letter-spacing: .5px;
    transition: .85s;
  }
  /*containers*/
  .contact-in {
    width: 100% !important;
  }
  .container {
    width: 100% !important;
  }
  .img-container {
    width: 100% !important;
  }
  /*containers*/
}

@media (max-width: 858px) {
  nav {
    height: 80px;
  }
  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: white;
    top: 80px;
    left: 100%;
    text-align: center;
    transition: all .5s;
    z-index: 1;
  }
  nav ul li {
    margin: 50px 0;
    display: block;
    line-height: 30px;
    color: #215e75;
  }
  nav ul li a {
    font-size: 20px;
    color: #215e75;
  }
  nav ul li a:link {
    color: #215e75;
  }
  nav ul li a.active, nav ul li a:hover {
    color: #215e75;
  }
  .checkbtn {
    display: block;
  }
  .img-span {
    font-size: 12px;
  }
  /*containers*/
  .contact-in {
    width: 100% !important;
  }
  .container {
    width: 100% !important;
  }
  .img-container {
    width: 100% !important;
    height: auto;
  }
  /*containers*/
  .box>img{
    height: auto;
  }
  .box:hover {
    flex: 1 1 30%;
  }
  .box:hover>img {
    margin: 1%;
  }
  #check:checked~ul {
    left: 0;
  }
}

@media (min-width: 746px) and (max-width: 858px) {
  .contact-in {
    max-width: 70% !important;
  }
}

@media (min-width: 666px) and (max-width: 746px) {
  .contact-in {
    max-width: 80% !important;
  }
}

@media (min-width: 540px) and (max-width: 660px) {
  .contact-in {
    max-width: 90% !important;
  }
}

@font-face {
  font-family: "Poppins";
  src: url('/font/poppins.ttf') format('truetype'), url('/font/poppins.woff') format('woff'), url('/font/poppins.woff2') format('woff2');
}

@font-face {
  font-family: " CaviarDreams";
  src: url('/font/caviardreams.ttf') format('truetype'), url('/font/caviardreams.woff') format('woff'), url('/font/caviardreams.woff2') format('woff2');
}

/*scrollbar*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: #4f93ad;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #215e75;
}

/*scrollbar*/

/*about animation*/

.text-focus-in {
  -webkit-animation: text-focus-in 2s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: text-focus-in 2s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  width: 70%;
  margin-left: 2%;
  float: right;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

/*about animation*/

/*services animation*/

.slide-in-left {
  -webkit-animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-in-left2 {
  -webkit-animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
  animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
}

.slide-in-right {
  -webkit-animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-in-right2 {
  -webkit-animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
  animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1500px);
    transform: translateY(1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1500px);
    transform: translateY(1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/*services animation*/