:root {
  /* Paletton color palette  */
  --themec: #ff3803;
  --boldc: #8e1e00;
  --mediumc: #c22800;
  --lightc: #ff7450;
  --shallowc: #ffb5a1;
  --thco: #ff380390;
  --title: #1f2021;
  --margbot: 100px;
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 20px;
}
::-webkit-scrollbar-track {
  background-color: var(--themec);
}
::-webkit-scrollbar-thumb {
  background-color: var(--boldc);
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: #202124;
  color: white;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
ul {
  list-style: none;
  right: 0;
}
a[href] {
  text-decoration: none;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* // Small devices (landscape phones, up to 576px) */
@media (max-width: 575px) {
  .container {
    width: 98%;
  }
}
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    width: 98%;
  }
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    width: 94%;
  }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    width: 90%;
  }
}
/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    width: 90%;
  }
}
/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    width: 90%;
  }
}
/* Start Header */
header {
  height: 100vh;
  background-image: url(../img/bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
header img {
  filter: invert(1);
  -webkit-filter: invert(1);
  width: 200px;
}
header i {
  font-size: 30px;
  opacity: 0;
  z-index: 2;
  color: #ecece9;
}
.container nav {
  /* position: fixed; */
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
  margin-left: -20px;
  margin-right: auto;
  z-index: 200;
}
header ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -ms-transition: 300ms;
  -o-transition: 300ms;
}
header a {
  color: white;
}
header li {
  position: relative;
  padding: 30px 0px 30px 0;
  cursor: pointer;
}
header li::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
}
header li:hover:after {
  background-color: var(--themec);
}
header li:hover a {
  color: var(--themec);
}
header input {
  background: transparent;
  color: var(--mediumc);
}
header nav:hover ul {
  display: flex;
}
header nav:hover i {
  color: var(--themec);
}
header .overlay {
  position: absolute;
  width: 50%;
  height: fit-content;
  background-color: var(--thco);
  left: 0;
  top: 50%;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  -o-transform: translateY(-60%);
}
header .overlay h1 {
  color: white;
}
header .overlay p {
  color: white;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .container nav {
    position: fixed;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
    background-color: #1f202160;
    transition: 300ms;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -o-transition: 300ms;
  }
  .container nav:hover {
    background-color: #1f2021ff;
    box-shadow: 2px 2px 10px 0px white;
  }
  header .container i {
    opacity: 1;
  }
  header .container ul {
    display: none;
  }
  header .overlay h1 {
    font-size: 20px;
  }
  header .overlay {
    width: 100%;
  }
}
@media (max-width: 992px) {
  header li {
    padding: 0px 0px -1px 0px;
  }
  header ul {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  header li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header li:after {
    display: none;
  }
}
/* end header */
/* Start section */
section {
  margin-top: 50px;
  margin-bottom: 50px;
}
section .container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 200px;
}
section h2 {
  position: relative;
  text-transform: uppercase;
}
section hr {
  background-color: var(--title);
}
section h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  bottom: -35px;
}
section h2::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: white;
  border: 2px solid var(--title);
  bottom: -41px;
  left: calc(50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
@media (max-width: 767px) {
  section p {
    text-align: center;
  }
}
/* end section */
/* start services */
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  gap: 30px;
}
.services .case {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 10px;
  cursor: pointer;
  transition: 100ms;
  -webkit-transition: 100ms;
  -moz-transition: 100ms;
  -ms-transition: 100ms;
  -o-transition: 100ms;
}
.services .case:hover {
  /* box-shadow: 0px 0px 2px 2px white; */
  animation-name: canim;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes canim {
  50% {
    box-shadow: 0px 0px 2px 0px var(--themec);
  }
  100% {
    box-shadow: 0px 0px 2px 0px white;
  }
}
.services .case:hover i {
  animation-name: ianim;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes ianim {
  50% {
    color: var(--themec);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  100% {
    color: white;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
.services i {
  font-size: 30px;
  color: white;
  padding-top: 15px;
}
.services h3 {
  line-height: 2.2;
  color: var(--themec);
}
.services p {
  line-height: 1.7;
}
.services {
  margin-bottom: var(--margbot);
}
@media (max-width: 767px) {
  .services .container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  .services .case {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* end services */
/* start imgsection1 */
.imgsection1 {
  width: 100%;
  height: 60vh;
  background-image: url(../img/bg2.jpg);
  background-size: cover;
  background-position-x: center;
  background-position-y: top;
  position: relative;
  overflow: hidden;
}
.imgsection1 div:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
  width: 10%;
  height: 50%;
  right: 0px;
  background-color: var(--thco);
  color: white;
  top: calc(50% - 25%);
  padding: 30px 50px;
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -ms-transition: 300ms;
  -o-transition: 300ms;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.imgsection1:hover div:first-of-type {
  width: 50%;
}
.imgsection1 ul {
  line-height: 30px;
}
.imgsection1 i {
  padding-right: 30px;
}
@media (max-width: 576px) {
  .imgsection1 div:first-of-type {
    padding: 10px;
    /* white-space: pre-wrap; */
  }
  .imgsection1:hover div:first-of-type {
    width: 100%;
  }
  .imgsection1 h3 {
    font-size: 15px;
  }
  .imgsection1 p {
    font-size: 10px;
  }
}
/* end imgsection1 */
/* start servicesp2 */
.servicesp2 ul {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 50px;
}
.servicesp2 li {
  margin-left: 20px;
  min-width: 80px;
  height: 40px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px 2px;
  -webkit-border-radius: 4px 2px;
  -moz-border-radius: 4px 2px;
  -ms-border-radius: 4px 2px;
  -o-border-radius: 4px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.servicesp2 li:hover,
.servicesp2 .selected {
  color: white;
  background-color: var(--mediumc);
  cursor: pointer;
}
/* end servicesp2 */
/* start imgsection2 */
.imgsection2 {
  width: 100%;
  height: 70vh;
  background-image: url(../img/bg3b.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 30px;
}
.imgsection2 .products {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  /* perspective-origin: center; */
}
.imgsection2 .products div {
  width: 25%;
}
.imgsection2 img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: 500ms;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -ms-transition: 500ms;
  -o-transition: 500ms;
}
.imgsection2 div:nth-of-type(even) img {
  transform-origin: right;
}
.imgsection2 div:nth-of-type(odd) img {
  transform-origin: left;
}

.imgsection2 .products img:hover {
  z-index: 2;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}
.imgsection2 .products img:not(:hover) {
  filter: grayscale(0.7);
  -webkit-filter: grayscale(0.7);
}
.imgsection2 .mask {
  width: 100%;
  height: 100%;
  /* background-color: #00000090;    mask color  */
  /* mix-blend-mode: color;   mask blend mode  */
  position: absolute;
  z-index: 0;
  opacity: 1;
}
.imgsection2 .products div:nth-of-type(odd) {
  align-self: flex-end;
}
@media (max-width: 767px) {
  .imgsection2 .products {
    flex-direction: column;
    justify-content: space-around;
  }
  .imgsection2 .products div:nth-of-type(odd) {
    align-self: center;
  }
  .imgsection2 .products div {
    align-self: center;
  }
  .imgsection2 .products img:hover {
    z-index: 2;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}
/* end imgsection2 */
/* start more */
.more {
  height: 50vh;
  background-image: url("../img/bg4.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.more .overlay {
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: var(--thco);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  line-height: 1.6;
  text-transform: capitalize;
}
.more text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.more .btnmore {
  margin-top: 20px;
  background-color: black;
  padding: 10px;
  width: 120px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
/* end more */
/* start about */
.about {
  position: relative;
  perspective: 300px;
  perspective-origin: center;
  transform-style: preserve-3d;
}
.about div {
  transition: 50ms;
  -webkit-transition: 50ms;
  -moz-transition: 50ms;
  -ms-transition: 50ms;
  -o-transition: 50ms;
}
.about div:first-of-type img {
  position: absolute;
  max-width: 20%;
  height: auto;
  object-fit: contain;
  transform: translateX(160%);
  -webkit-transform: translateX(160%);
  -moz-transform: translateX(160%);
  -ms-transform: translateX(160%);
  -o-transform: translateX(160%);
}
.about div:nth-of-type(2) img {
  position: absolute;
  max-width: 13%;
  height: auto;
  object-fit: contain;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 1;
}
.about div:last-of-type img {
  position: absolute;
  max-width: 18%;
  height: auto;
  object-fit: contain;
  transform: translateX(275%);
  -webkit-transform: translateX(275%);
  -moz-transform: translateX(275%);
  -ms-transform: translateX(275%);
  -o-transform: translateX(275%);
}
@media (max-width: 767px) {
  .about div:first-of-type img {
    max-width: 33%;
    height: auto;
    object-fit: contain;
    transform: translateX(54%);
    -webkit-transform: translateX(54%);
    -moz-transform: translateX(54%);
    -ms-transform: translateX(54%);
    -o-transform: translateX(54%);
  }
  .about div:nth-of-type(2) img {
    max-width: 20%;
    height: auto;
  }
  .about div:last-of-type img {
    max-width: 33%;
    height: auto;
    transform: translateX(145%);
    -webkit-transform: translateX(145%);
    -moz-transform: translateX(145%);
    -ms-transform: translateX(145%);
    -o-transform: translateX(145%);
  }
}
.about div:hover {
  transform: translateZ(40px);
  -webkit-transform: translateZ(40px);
  -moz-transform: translateZ(40px);
  -ms-transform: translateZ(40px);
  -o-transform: translateZ(40px);
}
/* end about */
/* start aboutbg */
.aboutbg {
  margin-top: 40vh;
  background-image: url(../img/bg6.jpg);
  background-size: cover;
  background-position-y: 35%;
  height: 50vh;
  background-position-x: center;
  display: flex;
  align-items: center;
  color: white;
}
.aboutbg .overlay {
  width: 100%;
  height: 30vh;
  background-color: var(--thco);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
  gap: 20px;
}
.aboutbg .overlay > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  align-items: center;
  text-align: center;
  line-height: 2;
}
.aboutbg .hexagone {
  width: 50px;
  height: 29px;
  position: relative;
  background-color: #1f2021;
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -ms-transition: 300ms;
  -o-transition: 300ms;
}
.aboutbg .hexagone::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: inherit;
  height: inherit;
  background-color: inherit;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(60deg);
  -webkit-transform: translate(-50%, -50%) rotate(60deg);
  -moz-transform: translate(-50%, -50%) rotate(60deg);
  -ms-transform: translate(-50%, -50%) rotate(60deg);
  -o-transform: translate(-50%, -50%) rotate(60deg);
}
.aboutbg .hexagone::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: inherit;
  height: inherit;
  background-color: inherit;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(-60deg);
  -webkit-transform: translate(-50%, -50%) rotate(-60deg);
  -moz-transform: translate(-50%, -50%) rotate(-60deg);
  -ms-transform: translate(-50%, -50%) rotate(-60deg);
  -o-transform: translate(-50%, -50%) rotate(-60deg);
}
.aboutbg .hexagone:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.aboutbg .hexagone i {
  position: absolute;
  font-size: 30px;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 5;
}
.aboutbg h3 {
  font-size: xx-large;
}
@media (max-width: 767px) {
  .aboutbg {
    margin-top: 30vh;
  }
  .aboutbg .overlay {
    grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  }
  .aboutbg .overlay {
    gap: 10px;
  }
  .aboutbg h3 {
    font-size: medium;
  }
  .aboutbg p {
    font-size: 15px;
  }
  .aboutbg .overlay > div {
    gap: 10px;
  }
}

/* end aboutbg */
/* start aboutp2 */
.aboutp2 .container {
  display: flex;
  gap: 40px;
  margin-bottom: 100px;
  margin-top: 100px;
  line-height: 2;
}
.aboutp2 .container > div {
  flex-direction: column;
  display: flex;
  gap: 50px;
}
.aboutp2 .pr1 {
  text-align: center;
}
.aboutp2 img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.aboutp2 .c1 .pr2 div {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  padding-top: 20px;
}
.aboutp2 .c1 .pr2 p {
  position: relative;
  border-bottom: 1px solid white;
  padding-bottom: 40px;
}
.aboutp2 .c1 .pr2 p::after {
  content: "Jhon Doe,CEO";
  position: absolute;
  bottom: 5px;
  right: 0px;
}
.aboutp2 .lc {
  margin-bottom: 15px;
}
.aboutp2 .lc p {
  margin-bottom: 5px;
}
.aboutp2 .lc1 {
  width: 100%;
  height: 26px;
  background-image: linear-gradient(90deg, var(--themec) 95%, #bcbcbc 95%);
  position: relative;
}
.aboutp2 .lc2 {
  width: 100%;
  height: 26px;
  background-image: linear-gradient(90deg, var(--themec) 93%, #bcbcbc 93%);
  position: relative;
}
.aboutp2 .lc3 {
  width: 100%;
  height: 26px;
  background-image: linear-gradient(90deg, var(--themec) 85%, #bcbcbc 85%);
  position: relative;
}
.aboutp2 .lc4 {
  width: 100%;
  height: 26px;
  background-image: linear-gradient(90deg, var(--themec) 87%, #bcbcbc 87%);
  position: relative;
}
.aboutp2 .lc1::after {
  content: "95%";
  position: absolute;
  top: -30px;
  left: 95%;
  color: white;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.aboutp2 .lc2::after {
  content: "93%";
  position: absolute;
  top: -30px;
  left: 93%;
  color: white;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.aboutp2 .lc3::after {
  content: "85%";
  position: absolute;
  top: -30px;
  left: 85%;
  color: white;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.aboutp2 .lc4::after {
  content: "87%";
  position: absolute;
  top: -30px;
  left: 87%;
  color: white;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
@media (max-width: 767px) {
  .aboutp2 .container {
    flex-direction: column;
  }
}
/* end aboup2 */
/* start quotebg */
.quotebg {
  width: 100%;
  height: 30vh;
  background-image: url(../img/bg7b.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quotebg .container {
  display: flex;
  justify-content: center;
  text-align: center;
}
.quotebg .txt {
  position: relative;
  padding-bottom: 20px;
}
.quotebg .txt::after {
  content: "John Doe";
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: smaller;
  transform: translatex(-50%);
  -webkit-transform: translatex(-50%);
  -moz-transform: translatex(-50%);
  -ms-transform: translatex(-50%);
  -o-transform: translatex(-50%);
}
/* end quotebg */
/* start pricing */
.pricing .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 40px;
}
.pricing .container > div > p:not(:last-of-type) {
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid var(--themec);
}
.pricing .container > div > p:last-of-type {
  width: 140%;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid var(--themec);
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
}
.pricing .container > div > div {
  width: 140%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--themec);
  border-top: 1px solid var(--themec);
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
}
.pricing h3 {
  font-size: 40px;
  position: relative;
}
.pricing h3::before {
  content: "$";
  position: absolute;
  font-size: 20px;
  left: 25px;
  top: 0;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
.pricing h3::after {
  content: "/MO";
  position: absolute;
  font-size: 20px;
  font-weight: normal;
  right: 0;
  bottom: 0;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.pricing button {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: transparent;
  border-color: var(--themec);
  color: white;
  padding: 10px 20px;
}
.pricing .container button:hover {
  cursor: pointer;
  background-color: var(--themec);
  border-color: white;
}
@media (max-width: 767px) {
  .pricing .container {
    flex-wrap: wrap;
  }
}
.pricing .specialoffer {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 100px;
}
.pricing .specialoffer .bmain {
  background-color: var(--mediumc);
  text-transform: capitalize;
  font-weight: bold;
}
.pricing .specialoffer .bmain:hover {
  background-color: var(--boldc);
}
/* end pricing */
/* start contact */
.contact {
  background-image: url("../img/gameover.png");
  background-position: center;
  background-position-y: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 30vh;
}
.contact .container {
  display: flex;
  flex-wrap: wrap;
  width: inherit;
  height: inherit;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}
.contact form {
  width: 40%;
  display: flex;
  position: relative;
}
.contact p {
  width: 40%;
  font-weight: bold;
}
.contact input[type="mail"] {
  width: 80%;
  height: 61px;
  background-color: #00000060;
  border-right: none;
  border-color: var(--themec);
  border-width: 4px;
  outline-color: var(--boldc);
  padding-left: 50px;
  color: white;
  caret-color: var(--themec);
}
.contact input[type="submit"] {
  width: 20%;
  color: white;
  font-weight: bold;
  background-color: var(--themec);
  cursor: pointer;
}
.contact input:focus {
  outline: none;
}
.contact i {
  position: absolute;
  color: var(--themec);
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 30px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
@media (max-width: 767px) {
  .contact .container {
    flex-direction: column;
  }
  .contact form {
    width: 70%;
  }
  .contact p {
    width: 90%;
  }
}
/* end contact */
/* start contactp2 */
.contactp2 .container {
  display: flex;
  flex-direction: column;
}
.contactp2 .form {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.contactp2 p {
  padding-bottom: 100px;
  position: relative;
  width: 200px;
}
.contactp2 .form div:first-of-type p:first-of-type::before {
  content: "+00 123.456.789";
  width: fit-content;
  position: absolute;
  text-indent: 20px;
  bottom: 65px;
}
.contactp2 .form div:first-of-type p:first-of-type::after {
  content: "+00 123.456.789";
  width: fit-content;
  position: absolute;
  text-indent: 20px;
  bottom: 40px;
  left: 0px;
}
.contactp2 .form div:first-of-type p:last-of-type::before {
  content: "Awesome Address 17";
  width: fit-content;
  position: absolute;
  text-indent: 20px;
  bottom: 65px;
  left: 0px;
}
.contactp2 .form div:first-of-type p:last-of-type::after {
  content: "New York,NYC";
  width: fit-content;
  position: absolute;
  text-indent: 20px;
  bottom: 40px;
  left: 0px;
}
.contactp2 form {
  width: 60%;
}
.contactp2 input,
.contactp2 textarea {
  display: block;
  margin-bottom: 30px;
  width: 100%;
  overflow-y: auto;
  caret-color: var(--themec);
  padding: 5px 10px;
  border-color: var(--themec);
  resize: none;
}
.contactp2 input {
  height: 30px;
}
.contactp2 input:focus,
.contactp2 textarea:focus {
  outline-color: var(--boldc);
}
.contactp2 button {
  align-self: center;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: var(--mediumc);
  border-color: var(--themec);
  color: white;
  padding: 10px 20px;
  font-weight: bold;
}
.contactp2 .container button:hover {
  cursor: pointer;
  background-color: var(--boldc);
  border-color: white;
}
@media (max-width: 575px) {
  .contactp2 .form {
    flex-direction: column;
    align-items: center;
  }
  .contactp2 form {
    width: 90%;
  }
}
/* end contactp2 */
/* start footer nth-only */
footer {
  height: 50vh;
  width: 100%;
  background-image: url(../img/footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
}
footer .container {
  height: 90%;
  background-color: #000000aa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
footer img {
  filter: invert(1);
  -webkit-filter: invert(1);
  width: 200px;
}
footer > div > div:nth-of-type(2) {
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
footer i {
  font-size: 30px;
  padding-left: 20px;
  padding-bottom: 20px;
  color: var(--themec);
  cursor: pointer;
}
footer i:hover {
  color: var(--boldc);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
footer hr {
  width: 100%;
}
/* end footer nth-only */
