/* Color Codes */

:root {
  --color-pri: #87ceeb;
  --color-pri-darker: #7abdd7;
  --color-sec: #9b0066;
  --color-sec-darker: #7d1057;
  --background-color: rgb(244, 251, 255);
}

* {
  color: #000;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

a,
button {
  text-decoration: none;
  -webkit-transition: color 0.5s ease-out;
  -moz-transition: color 0.5s ease-out;
  -o-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
  transition: 0.5s ease-in-out;
  /* white-space: nowrap; */
}

i {
  transition: 2s;
}

a:hover,
a.active {
  text-decoration: underline;
  cursor: pointer;
}

p,
h2 {
  margin-top: 20px;
}

p a {
  text-decoration: underline;
}

button {
  background: none;
  border: none;
}

section {
  margin-bottom: 10px;
}

section.banner {
  margin-bottom: 0;
}

a:hover,
i:hover,
button:hover,
.logo {
  color: #87ceeb;
  cursor: pointer;
}

.textLink {
  background-color: #7abdd7;
  white-space: nowrap;
  margin: 0.2rem;
  border-radius: 0.2rem;
  padding: 0 0.4rem 0 0.4rem;
}



.float-container {
  border: 3px solid #fff;
  padding: 20px;
}

.float-child {
  width: 80%;
  float: left;
  padding: 20px;

}  



.float-child2 {
  width: 20%;
  float: left;
  padding: 20px;

}  


.text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
          line-clamp: 2; 
  -webkit-box-orient: vertical;

  width: 80%;
    margin-top: 20px;
}


.nexthh{
  width: 80%;
}



p a {
  text-decoration: underline;
  color: red;
}

.readmore{
  text-decoration: underline;
  color: yellow;
}


.textLink:hover {
  color: #7abdd7;
  background-color: #000;
}

img {
  width: 80%;
  border-radius: 30px;
}

.block {
  display: block !important;
}

.logo {
  margin-left: 40px;
}

.sliderContainer {
  position: relative;
  top: 16rem;
}

.mainSlide {
  position: relative;
}

.sliderContainer ul {
  width: fit-content;
}

.sliderContainer ul li {
  width: 100%;
}

.slide {
  position: absolute;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  transition: all ease-in-out 1s;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);

}

.slide.two img {
  width: 100%;
}

.sliderContainer li {
  display: flex;
  margin: 0;
}

.slide .mobile {
  display: none;
}


.moveBackwardOut {
  transform: translateX(-150%);
}

.moveForwardOut {
  transform: translateX(150%);
}

.signUpBanner {
  padding: 1rem;
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signUpBanner p {
  margin-bottom: 1rem;
  color: var(--color-sec);
}

.signUpBanner form {
  display: flex;
  flex-direction: column;
}

.signUpBanner form input {
  margin: 1rem 0;
  background-color: var(--color-pri);
  color: var(--background-color);
}

.signUpBanner #submit {
  width: fit-content;
}

.signUpBanner #submit:hover {
  cursor: pointer;
  background-color: var(--color-sec);
}

input {
  padding: 0.7rem;
  outline: none;
  border: none;
  border-radius: 0.7rem;
}

.slide img {
  width: 60%;
}

.text-content .bigText {
  font-weight: 500;
}

.bigText {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 3vw 0 0 0;
  border-radius: 2rem;
}

.readMore {
  margin: 2rem 0;
  background-color: #ffead7;
  padding: 0.2rem;
  border-radius: 0.5rem;
  transition: all ease-in-out 0.5s;
  border: 2px solid #7d1057;
  width: fit-content !important;
  position: relative;
}

.readMore:hover {
  background-color: #7d1057;
  color: #bde2f1;
  cursor: pointer;
}

.show {
  display: block !important;
}

.right-nav {
  margin-right: 40px;
}

.right-nav i {
  margin-left: 20px;
}



.next_prev {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.next {
  right: 0;
  transform: rotate(180deg);
}

.next,
.prev {
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid var(--color-sec);
  border-radius: 50%;
  position: absolute;
  transition: all ease-in-out 0.5s;
  background-color: rgb(244, 251, 255, 75%);
}

.next:hover,
.next:active,
.prev:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 1rem 1rem 2.5rem rgba(138, 43, 226, 0.12);
}

.next div,
.prev div {
  position: absolute;
  top: calc(50% + 0.7rem);
  left: 50%;
  transform: translate(-50%, -50%);
}

.next div::before,
.prev div::before {
  content: '';
  width: 1rem;
  height: 0.3rem;
  border-radius: 0.8rem;
  background-color: var(--color-sec);
  position: absolute;
  top: calc(50% - 0.5rem);
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all ease-in-out 0.5s;
}

.next:hover div::before,
.prev:hover div::before {
  transform: translate(calc(-50% - 0.5rem), -50%) rotate(405deg);
}

.next:hover div::after,
.prev:hover div::after {
  transform: translate(calc(-50% - 0.5rem), -50%) rotate(315deg);
}

.next div::after,
.prev div::after {
  content: '';
  width: 1rem;
  height: 0.3rem;
  border-radius: 0.8rem;
  background-color: var(--color-sec);
  position: absolute;
  top: calc(50% - 1rem);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all ease-in-out 0.5s;
}

.playSlide {
  border-radius: 0.8rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  height: fit-content;
  width: fit-content;
  bottom: -22vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.3rem;
  overflow: hidden;
  border: 0.1rem solid var(--color-sec);
  background-color: #fff;
  z-index: 9999;
}

.playSlide p {
  font-size: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  color: var(--color-sec);
  margin: 0;
}

.playSlide:hover {
  cursor: pointer;
  background-color: var(--color-sec);
}

.playSlide:hover div::before {
  border-left: 0.8rem solid var(--color-pri);
}

.playSlide:hover p {
  color: var(--color-pri);
}

.playSlide div {
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.2rem;
}

.playSlide div::before {
  /* THE PLAY SLIDE ICON TRIANGLE */
  content: '';
  width: 0;
  height: 0;
  border-right: transparent;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.8rem solid var(--color-sec);
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 0;
  transform: translate(-50%, -50%);

}

body {
  background-color: rgb(244, 251, 255);
  padding-top: 6vw;
}

.blogPage {
  padding-top: 6rem;
}

li {
  margin: 1rem;
}

#ourServices {
  position: relative;
  z-index: 5;
}

.dropDown {
  background-color: var(--color-pri);
  border-top: 0.15rem solid var(--color-sec);
  justify-content: center;
  display: none;
  position: absolute;
  padding: 1.5rem;
}

#ourServices:hover .dropDown,
#aboutUsLink:hover .dropDown {
  display: flex;
  transition-delay: 1s;
}

.dropDown ul {
  list-style: none;
  margin-right: 2rem;
}

.dropDown ul li {
  margin: 0;
}

.dropDown button img {
  width: 1.5rem;
  height: fit-content;
  margin-right: 0.5rem;
  transition: all ease-in-out 0.5s;
}

.dropDown button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  border-radius: 1.5rem;
}

.dropDown button:hover img {
  transform: rotate(360deg);
}

.dropDown button:hover {
  background-color: var(--color-sec);
}

.dropDown button:hover p {
  color: var(--color-pri);
}

.dropDown p {
  margin: 0;
}

.thenav {
  width: 100%;
  display: flex;
  align-items: center;
  margin: auto;
  padding: 1rem 0;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(244, 251, 255);
  z-index: 2;
  transition: all ease-in-out 0.5s;
}

.bring-scroll-up {
  top: 0;
  width: 100%;
}

.nav--hidden {
  transform: translateY(-100%);
  box-shadow: 2px 2px 100px #000;
}

.scroll-up {
  transform: translateY(100px);
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #9b0066;
  border-radius: 10px;
  z-index: 1;
  transition: ease-in-out 0.5s;
}

.show-scroll {
  transform: translateY(0);
}

.scroll-up:hover {
  cursor: pointer;
  box-shadow: 2px 2px 20px #808080;
  background-color: rgb(143, 8, 96);
}

.scroll-up div {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-up img {
  width: 50%;
  margin: auto;
  transform: translate();
}

.navLink-Logo {
  width: 10%;
}

.middle-nav>a {
  margin-right: 20px;
  color: #87ceeb;
  white-space: nowrap;
  padding: 1rem 0;
}

.middle-nav a:hover {
  color: #1a171a;
}

.right-nav i,
.right-nav a {
  font-weight: 600;
  white-space: nowrap;
}

.right-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#searchIcon {
  color: rgb(244, 251, 255);
  background-color: #87ceeb;
  padding: 8px;
  border-radius: 10px;
}

#searchIcon:hover {
  color: #1a171a;
}

.banner img,
.policy-banner img {
  width: 100%;
}

.policy-banner {
  width: 100%;
}

.none {
  display: none;
}

.block {
  display: block;
}

.signUp {
  margin-top: 40px;
}

.ourServicesImg img {
  border-radius: 1rem;
}

.ourServicesImg .signUp input {
  width: 70%;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-right: 0 !important;
  background-color: #87ceeb;
}

.signUp input:focus {
  border: none;
}

.signUp button {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  margin: -6px;
  color: #fff;
  background-color: #9b0066;
}

.signUp button:hover {
  background-color: #7d1057;
  color: #87ceeb;
}

.signUp input,
.signUp button {
  padding: 10px;
  border: none;
  border-radius: 10px;
  outline: none;
}

.below-banner {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #9b0066;
  padding: 2rem 0;
  text-align: center;
  width: 100%;
  position: absolute;
  margin-top: 7rem;
}

.below-banner div {
  width: 70%;
  background-color: #87ceeb;
  margin: auto;
  padding: 1rem;
  border-radius: 0.8rem;
}

.below-banner div:hover {
  background-color: #7abdd7;
  cursor: pointer;
}

.below-banner div.location {
  margin-top: 10px;
}

.below-banner .phone a:hover,
.below-banner .phone i:hover,
.below-banner .location a:hover,
.below-banner .location i:hover {
  color: #1a171a;
}

.below-banner .phone:hover a,
.below-banner .location:hover a {
  text-decoration: underline;
}

.content {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  width: 85%;
  margin: 0 auto 1rem auto;
  -webkit-animation: loadH1 var(--duration1) var(--easing) var(--delay1) forwards;
  animation: loadH1 var(--duration1) var(--easing) var(--delay1) forwards;
}

.first-content.homePg {
  margin-top: 34rem;
}

.text-content {
  width: 100%;
  -webkit-animation: loadH1 var(--duration1) var(--easing) var(--delay1) forwards;
  animation: loadH1 var(--duration1) var(--easing) var(--delay1) forwards;
}

.content .image {
  width: 100%;
}

.content.reversed {
  flex-direction: row-reverse;
}


@-webkit-keyframes loadH1 {
  0% {
    opacity: 0;
    transform: translateY(3em);
  }

  30%,
  50% {
    opacity: 1;
    transform: translateY(3em);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes loadH1 {
  0% {
    opacity: 0;
    transform: translateY(3em);
  }

  30%,
  50% {
    opacity: 1;
    transform: translateY(3em);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes loadImg {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: none;
  }
}

@keyframes loadImg {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: none;
  }
}

.main-signUp {
  padding: 70px 0 70px 0;
  background-color: #87ceeb;
  margin: auto;
}

.main-signUp .signUp {
  margin-top: 0;
  text-align: center;
}

.main-signUp input {
  width: 60%;
  background-color: aliceblue;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: -1500px;
  width: 100%;
  height: 100vh;
  background-color: #9b0066;
  justify-content: flex-start;
  transition: ease-in-out 0.5s;
  z-index: 3;
}

.mobile-nav a {
  padding: 10px;
  background-color: #7d1057;
  margin-bottom: 5px;
  width: 100%;
  color: #87ceeb;
  position: relative;
  top: 10%;
  white-space: nowrap;
}

.bring-it {
  top: 0;
  width: 100%;
}

#close {
  color: #87ceeb;
  position: fixed;
  font-size: 50px;
  top: -200px;
  right: 10;
  transition: 1s ease-in-out;
}

.close-appear {
  z-index: 10 !important;
  top: 15px !important;
  right: 40px !important;
}

#searchArea {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  animation: slide ease-in-out 0.5s;
  background-color: rgb(0, 0, 0, 90%);
  backdrop-filter: blur(3px);

}

#searchArea main {
  background-color: #9b0066;
  width: 100%;
  padding: 3rem;
  position: absolute;
  top: 0;
}

.closeModal {
  position: absolute;
  background-color: wheat !important;
  width: 3rem;
  height: 3rem;
  border-radius: 0.7rem;
  top: 1rem;
  left: 1rem;
  border: 0.1rem solid var(--color-sec);
}

.closeModal:hover {
  background-color: rgb(255, 248, 235) !important;
  border: 0.1rem solid var(--color-pri-darker);
}

.closeModal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1.2rem;
  height: 0.2rem;
  background-color: red;
  border-radius: 0.15rem;
  transition: all ease-in-out 0.5s;
}

.closeModal::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 1.2rem;
  height: 0.2rem;
  background-color: red;
  border-radius: 0.15rem;
  transition: all ease-in-out 0.1s;
}

#searchArea button {
  background-color: #87ceeb;
}

@keyframes slide {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* servicePopup IMAGE */
.servicePopup {
  background: url('/Images/service-bg.jpg') no-repeat center center/cover;
}

.servicePopupContents {
  margin: 2rem auto;
  padding: 3rem 0;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  flex-direction: row;
}

.servicePopupContents ul li {
  color: #fff;
  padding: 0;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  transition: ease-in-out all 0.5s;
  list-style: none;
}

.servicePopupContents ul li:hover {
  color: #7abdd7;
  cursor: pointer;
  text-decoration: underline;
}

.servicePopupContents img {
  width: 10%;
  border-radius: 60%;
  margin-right: 1rem;
  border: 0.25rem solid #fff;
}

.servicePopupContents ul {
  padding: 1rem;
  border-radius: 1rem;
  transition: all ease-in-out 0.5s;
}

.servicePopupContents ul:hover {
  background-color: rgb(125, 16, 87, 35%);
}

/*
Conatct Page 
*/

.contact-field {
  position: relative;
  padding-top: 50px;
  padding-bottom: 0px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-field .content-field {
  max-width: 800px;
  text-align: center;
}

.contact-field .content-field p {
  font-weight: 400;
  color: #180203 !important;
}

.contact-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.contact-container .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.contact-container .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.text p {
  margin-top: 0;
}

.contact-container .contactInfo .box .icon {
  min-width: 60px;
  height: 60px;
  background-color: #87ceeb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  margin-right: 5px;
  color: #180203;
}

.contact-container .contactInfo .box .text h3 {
  font-weight: 500;
}

.contactForm {
  width: 40%;
  padding: 2rem;
  background-color: none;
  border: 5px;
  border-color: #8f0099;
}

.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
  background-color: #fcf2d9;
}

.contactForm .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  font-weight: 300;
}

.contactForm .inputBox input:focus~span,
.contactForm .inputBox input:valid~span,
.contactForm .inputBox textarea:focus~span,
.contactForm .inputBox textarea:valid~span {
  font-weight: 100;
  transform: translateY(-20px);
}

.contactForm .inputBox input[type="submit"] {
  width: 100px;
  background-color: #9b0066;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.contactForm .inputBox input[type="submit"]:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  transition: 1s ease;
  cursor: pointer;
}

.map {
  align-items: center center;
  align-items: center;
  align-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0px 250px 50px 250px;
  margin-bottom: 30px;
}

.google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50% !important;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.social-media {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: auto;
  align-items: center;
  justify-content: space-around;
  color: #3d2f2f;
  padding: 50px 0;
}

/* FAQ */

.faq {
  width: 90%;
  margin: auto;
  margin-top: 10rem;
}

.faq h1 {
  text-align: center;
  font-size: 1rem;
}

.faq .question {
  background-color: khaki;
  padding: 1rem;
  margin: 2rem;
  border-left: 0.2rem solid #9b0066;
  border-radius: 1rem;
}

.faq h2 {
  margin: 0;
}

.faq .question>div {
  background-color: #fcf2d9;
  padding: 1rem;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  justify-content: space-between;
  position: relative;
}

.faq .question>div:hover {
  cursor: pointer;
  background-color: var(--background-color);
}

.faq .question>div:hover span div:nth-child(1),
.faq .question>div:hover span div:nth-child(2) {
  background-color: #fcf2d9;
}

.faq .question>div:hover span {
  outline: 0.2rem solid khaki;
}

.faq .question span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
  background-color: var(--color-sec-darker);
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.faq .question span div:nth-child(1) {
  position: absolute;
  width: 1rem;
  height: 0.3rem;
  background-color: khaki;
  transition: all ease-in-out 0.5s;
}


.faq .question span div:nth-child(2) {
  content: '';
  width: 1rem;
  height: 0.3rem;
  background-color: khaki;
  transition: all ease-in-out 0.5s;
  transform: rotate(90deg);
  left: 2rem;
}

.question p {
  margin-left: 2rem;
}

/* FAQ */

/*
Conatct Page 
*/

/* 
Footer Styles 
*/


.about_footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


#footer_flex {
  display: flex;
  flex-direction: column;
  padding: 50px 50px 0px 50px;
}

#footer_flex div {
  margin-top: 40px;
}


footer .contact_us {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;

}

footer h4 {
  padding-bottom: 20px;
  padding-bottom: 20px;
  padding-top: 20px;

}


footer p {
  margin: 0 0 8px 0;
  color: #87ceeb;
}

footer a {
  text-decoration: none;
  color: #87ceeb;
  padding-bottom: 10px;
}

footer a:hover {
  color: #1a171a;
}

footer .follow i:hover {
  color: #87ceeb;
}

.copyright {
  height: 100px;
  background-color: #87ceeb;
}

.copyright p {
  text-align: center;
  width: 100%;
  padding-bottom: 10px;
  color: #000;
  align-items: center;
  padding-top: 50px;
}

.follow i {
  font-size: 30px;
  margin: 8px;
}


.footer_logo {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  width: 25vw;
}

.footer_logo.logo {
  margin-left: 0;
}


.footer_logo:hover {
  filter: grayscale(0%);
  filter: gray;
  -webkit-filter: grayscale(0%);
  filter: none;
  transition: 1s ease;
  cursor: auto;
}

.connect-with-us {
  text-align: center;
  margin: 25px;
}

/* 
End Footer Styles
 */



/* 
Start Blog Styles
*/

.other-blogs {
  width: 20%;
  margin: 40px 0;

}

.other-blogs img {
  height: 100%;
}

.actual-other-blogs {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  border: 2px solid #bde2f1;
  border-radius: 40px;
  padding: 20px;
}

.read-more-atticles {
  background-color: #87ceeb;
  margin-bottom: 40px;
  padding: 10px 30px 10px 10px;
  border-radius: 10px;
  width: fit-content;
  margin-top: 0;
}

.Topic {
  font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 20px;
    margin-top: 30px;
}

/*
End Blog Styles
*/

/* OUR SERVICES */

#services {
  padding: 2rem;
  border-radius: 1rem;
  background-color: #bde2f1;
}

/* OUR SERVICES */

/* ---------- DOINGS ---------- */

.doings {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  width: 10%;
  justify-content: center;
  align-items: center;
  justify-items: center;
  border-radius: 1rem;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.22);
  background-color: #fcf2d9;
  height: fit-content;
}

.doings:hover {
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.22);
}

.doings div {
  margin: auto;
}

.doings img {
  margin: auto;
  width: 20%;
  display: flex;
  transition: all ease-in-out 1s;
}

.doings img:hover {
  width: 23%;
}

.doings h1 {
  font-size: 2vw;
  text-align: center;
  line-height: normal;
  margin-top: 1rem;
}

/* --------- END- DOINGS ---------- */

/* ---------- MISSION ----------  */

.mission {
  width: 80%;
  margin: auto;
  margin-top: 4rem;
}

.mission section {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 0.2vw solid #7d1057;
  background-color: #fcf2d9;
  width: fit-content;
  display: flex;
  align-items: center;
}

.mission section img {
  width: 1.5rem;
  margin-right: 0.3rem;
}

.mission h1 {
  font-size: 1rem;
  font-weight: 100;
}

.mission div {
  margin-bottom: 4rem;
}

/* ---------END - MISSION  ----------  */


/* EMPLOYMENT PAGE */

.employmentPg {
  padding-top: 2rem;
}

.employmentPg .bigText {
  font-size: 5rem;
  font-weight: 700;
  text-align: left;
  color: var(--color-pri)
}

.employmentPg .first-content .content .text-content {
  width: 50%;
}

.employmentPg .first-content .content .image {
  width: 50%;
}

.employmentPg .content {
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}

.employmentPg .first-content button {
  margin-top: 3rem;
  background-color: var(--color-pri);
  color: var(--color-sec);
  padding: 2rem;
  border-radius: 1.5rem;
}

.employmentPg .first-content button:hover {
  background-color: var(--color-pri);
  box-shadow: 0.5rem 0.5rem 2rem #333;
}

.employmentPg .servicePopupContents .bigText {
  margin-top: 0;
}

.employmentPg fieldset input,
.employmentPg fieldset textarea {
  width: 100%;
  border: 0.1rem solid var(--color-pri);
}

.employmentPg fieldset textarea {
  padding: 1rem;
  outline: none;
}

.employmentPg fieldset {
  width: 50%;
  margin: auto;
  outline: none;
  border: none;
}

.employmentPg fieldset legend {
  margin: auto;
  text-align: center;
  background-color: var(--background-color);
}

.employmentPg fieldset span {
  color: red;
}

.employmentPg fieldset div {
  margin-bottom: 2rem;
}

.employmentPg .drive input {
  width: auto;
}

.employmentPg .checkOptions {
  display: flex;
  margin-bottom: 0;
}

.employmentPg .options {
  margin-bottom: 0;
}

.checkOptions p {
  margin-top: 0;
}

.checkOptions div {
  margin-right: 3rem;
}

.employmentPg fieldset #submit {
  background-color: var(--color-pri);
  color: var(--background-color);
}

.employmentPg fieldset #submit:hover {
  background-color: var(--color-pri-darker);
  cursor: pointer;
}