@import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");

:root {
  --light-color: #adefd1;
  --dark-color: #00203f;
  --shadow: #c8c8c8;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8rem;
  color: var(--light-color);
  font-family: "Abel", sans-serif;
}

header {
  background-color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  height: 10vh;
}

.nav__links {
  list-style: none;
}

.nav__links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav__links li a {
  transition: all 0.4s ease 0s;
  font-weight: 500;
  font-size: 17px;
  color: var(--light-color);
  text-decoration: none;
  opacity: 0.88;
}

.nav__links li a:hover {
  opacity: 1;
  letter-spacing: 0.7px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.img1,
.img2,
.img3 {
  position: relative;
  opacity: 0.7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  background-attachment: fixed;
}

.img1 {
  background-image: url("../images/imgh.jpg");
  min-height: 100%;
  background-position: left top;
}

.img2 {
  background-image: url("../images/img2.jpg");
  min-height: 600px;
}

.img3 {
  background-image: url("../images/img3.jpg");
  min-height: 600px;
  justify-content: center;
  align-items: center;
}

.se {
  text-align: center;
  padding: 70px 80px;
}

.sec_one {
  background-color: var(--dark-color);
}

.sec_two,
.sec_three {
  background-color: var(--light-color);
  color: #00203fff;
}

.ptext {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 27px;
  letter-spacing: 8px;
}

#saleforce__icon {
  font-size: 50px;
  padding: 5px 5px;
  color: #009edb;
  transition: all 0.3s ease 0s;
}

#saleforce__icon:hover {
  font-size: 53px;
}

#copy-text-btn {
  border: none;
  font-size: 40px;
  background-color: var(--light-color);
  transition: all 0.4s ease 0s;
}

#copy-text-btn:hover {
  opacity: 0.7;
  transform: translateY(-5px);
}

#email__iconcopy {
  font-size: 40px;
  color: var(--dark-color);
  padding: 2px;
  cursor: copy;
}

.img1 .ptext {
  font-weight: bold;
}

.img2 .ptext,
.img3 .ptext {
  color: var(--dark-color);
  letter-spacing: 3px;
  padding: 0 10px;
  margin-top: -50px;
  text-shadow: 4px 4px 2px var(--shadow);
}

.ptext .border {
  border: 2px solid var(--dark-color);
  color: var(--dark-color);
  border-radius: 4px;
  padding: 10px;
  text-shadow: 4px 4px 2px var(--shadow);
  box-shadow: inset 3px 3px 2px var(--shadow), 3px 3px 2px var(--shadow);
}

#contact h2 {
  margin-bottom: 20px;
}

#email {
  border-bottom: solid 1px;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.copyright {
  padding: 5px;
  background-color: var(--dark-color);
  font-size: 12px;
}

@media (min-width: 1200px) {
  .ptext .border {
    font-size: 38px;
  }
}

@media (max-width: 568px) {
  .img1,
  .img2,
  .img3,
  .img4 {
    background-attachment: scroll;
  }

  .ptext .border {
    letter-spacing: 3px;
  }
}

@media (max-width: 388px) {
  #email {
    font-size: 13px;
  }

  .nav__links {
    text-align: center;
  }

  .nav__links li {
    padding: 0;
    margin-left: 10px;
  }

  .ptext .border {
    letter-spacing: 1px;
    font-size: 0.9em;
  }
}

@media (max-width: 340px) {
  .ptext .border {
    letter-spacing: -1px;
  }
}
