/**********************************/
/********** General CSS ***********/
/**********************************/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Itim&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap");
@import "https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Playfair+Display:400,400i,700,700i,900,900i";

:root {
  --fontSize: 20px;
  --fontColor: black;
  --navColor: #608bc1;
  --themeColor: #133e87;
  --themeColor2: #cbdceb;
  --footerBGColor: black;
  --navFontColor : black;
  --footerColor: #f3f3e0;
  /*  */
  --BtnColor: #eee;
  --linkColor: blue;
  --iThemeColor: red;
  --sendButn: #ff2e63;
  --boxColor: #161616;
  --backgroundColor: black;
  --fontFamily: "Playwrite GB S", "Playfair Display", serif;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  box-sizing: border-box;
  font-size: var(--fontSize);
}
/******************************************************************************************/
/***************************** Scrollbar Section ******************************************/
::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--themeColor);
  border-radius: 20px;
}

::-webkit-scrollbar-track {
  background-color: var(--boxColor);
}


/**********************************/
/************* Nav Bar ************/
/**********************************/
/* Nav */
header {
  top: 0;
  width: 100%;
  padding: 5px;
  z-index: 1000;
  position: static;
  background-color: var(--footerColor);
  font-family: var(--fontFamily);
}
.navbar {
  padding: 5px;
  display: flex;
  justify-content: space-between;
}
.logo{
  cursor: pointer;
}
.logo>img{
  width: 50px;
  background-color: white;
  border-radius: 51%;

}
.navList{
  display: inline-block;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
  justify-content: left;
  align-items: center;
}

.navbar ul li {
  display: inline;
  font-weight: bold;
  font-size: var(--fontSize);
}

.navbar ul li a {
  padding: 8px 16px;
  text-decoration: none;
  color: var(--fontColor);
}

.navbar ul li a:hover {
  text-shadow: 0 0 3px var(--navColor);
  border-radius: 4px;
  color: var(--navColor);
}

/*  */
.right-nav{
  padding: 8px 16px;
  text-decoration: none;
  justify-content: right;
}
/* ********************* */
/* ********************* */
/* ********************* */
/* ********************* */

.main {
  align-items: center;
  justify-content: center; 
  left: 15%;
  right: 15%;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 1000px;
  min-width: 1000px;
  min-height: 600px;
  height: 600px;
  padding: 25px;
  overflow: hidden;
  border-radius: 15px;
  background-color: #ecf0f3;
  background-color: #ecf0f3;
  box-shadow: 10px 10px 10px #d1d9e6, -10px -10px 10px #f9f9f9;
  font-family: var(--fontFamily);
}
@media (max-width: 1200px) {
  .main {
    transform: scale(0.7);
  }
}
@media (max-width: 1000px) {
  .main {
    transform: scale(0.6);
  }
}
@media (max-width: 800px) {
  .main {
    transform: scale(0.5);
  }
}
@media (max-width: 600px) {
  .main {
    transform: scale(0.4);
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 600px;
  height: 100%;
  padding: 25px;
  background-color: #ecf0f3;
  transition: 1.25s;
}

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.form__icon {
  object-fit: contain;
  width: 30px;
  margin: 0 5px;
  opacity: 0.5;
  transition: 0.15s;
}
.form__icon:hover {
  opacity: 1;
  transition: 0.15s;
  cursor: pointer;
}
.form__input {
  width: 350px;
  height: 40px;
  margin: 4px 0;
  padding-left: 25px;
  font-size: 13px;
  letter-spacing: 0.15px;
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  background-color: #ecf0f3;
  transition: 0.25s ease;
  border-radius: 8px;
  box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #f9f9f9;
}
.form__input:focus {
  box-shadow: inset 4px 4px 4px #d1d9e6, inset -4px -4px 4px #f9f9f9;
}
.form__span {
  margin-top: 30px;
  margin-bottom: 12px;
}
.form__link {
  color: #181818;
  font-size: 15px;
  margin-top: 25px;
  border-bottom: 1px solid #a0a5a8;
  line-height: 2;
}

.title {
  font-size: 34px;
  font-weight: 700;
  line-height: 3;
  color: var(--fontColor);
}

.description {
  font-size: 14px;
  letter-spacing: 0.25px;
  text-align: center;
  line-height: 1.6;
}

.button {
  width: 180px;
  height: 50px;
  border-radius: 25px;
  margin-top: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.15px;
  background-color: var(--themeColor);
  color: #f9f9f9;
  box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #f9f9f9;
  border: none;
  outline: none;
}
.submit:hover{
  cursor: pointer;
  box-shadow: 0 0 5px var(--themeColor);
}
/**/
.a-container {
  z-index: 100;
  left: calc(100% - 600px);
}

.b-container {
  left: calc(100% - 600px);
  z-index: 0;
}

.switch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 400px;
  padding: 50px;
  z-index: 200;
  transition: 1.25s;
  background-color: #ecf0f3;
  overflow: hidden;
  box-shadow: 4px 4px 10px #d1d9e6, -4px -4px 10px #f9f9f9;
}
.switch__circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: #ecf0f3;
  box-shadow: inset 8px 8px 12px #d1d9e6, inset -8px -8px 12px #f9f9f9;
  bottom: -60%;
  left: -60%;
  transition: 1.25s;
}
.switch__circle--t {
  top: -30%;
  left: 60%;
  width: 300px;
  height: 300px;
}
.switch__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  width: 400px;
  padding: 50px 55px;
  transition: 1.25s;
}
.switch__button {
  cursor: pointer;
}
.switch__button:hover {
  transform: scale(0.985);
  transition: 0.25s;
  box-shadow: 6px 6px 10px #d1d9e6, -6px -6px 10px #f9f9f9;
}
.switch__button:active,
.switch__button:focus {
  box-shadow: 2px 2px 6px #d1d9e6, -2px -2px 6px #f9f9f9;
  transform: scale(0.97);
  transition: 0.25s;
}


.is-txr {
  left: calc(100% - 400px);
  transition: 1.25s;
  transform-origin: left;
}

.is-txl {
  left: 0;
  transition: 1.25s;
  transform-origin: right;
}

.is-z200 {
  z-index: 200;
  transition: 1.25s;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: 1.25s;
}

.is-gx {
  animation: is-gx 1.25s;
}

@keyframes is-gx {
  0%,
  10%,
  100% {
    width: 400px;
  }
  30%,
  50% {
    width: 500px;
  }
}
.validationSpan{
  text-align: center;
  display: none;
  padding: 5px;
  color: red;
  font-size: small;
}
/**********************************/
/************* Footer *************/
/**********************************/
footer{
  background-color: var(--footerColor);
}
footer i{
  font-size: 30px;
  color: var(--fontColor);
}
footer i:hover{
  color: var(--themeColor);
}
footer h3{
  text-align: center;
  font-size: 25px;
  font-family: var(--fontFamily);
}
.footerContent{
  
  margin: 20px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.getInTouch{
  width: 45%;
}
.GINElement{
  margin-left: 20px;
}
.GINElement i {
  font-size: 25px;
  margin-right: 15px;
}
.followUs{
  width: 45%;
}

.followUs ul>li{
  margin: 5px;
  padding: 5px;
  display: inline-block;
}

.followUs{
  text-align: center;
}

.footerCopyRight{
  padding: 5px;
  font-weight: bold;
  text-align: center;
  font-size: var(--fontSize);
  color: var(--footerColor);
  background-color: black;
}

.ScrollToTopButton {
  z-index: 999; 
  right: 30px;
  width: 50px;
  bottom: 30px;
  height: 50px;
  border: none;
  display: flex;
  cursor: pointer;
  position: fixed;
  font-weight: 600;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition-duration: 0.5s;
  background-color: var(--themeColor);
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
}

.svgIconScrollToTopButton {
  width: 15px;
  transition-duration: 0.3s;
}

.svgIconScrollToTopButton path {
  fill: var(--fontColor);
}

.ScrollToTopButton:hover {
  width: 140px;
  align-items: center;
  border-radius: 50px;
  transition-duration: 0.4s;
  background-color: var(--fontColor);
}

.ScrollToTopButton:hover .svgIconScrollToTopButton {
  transition-duration: 0.5s;
  transform: translateY(-200%);
}

.ScrollToTopButton::before {
  bottom: -20px;
  color: white;
  font-size: 0px;
  position: absolute;
  content: "Back to Top";
}

.ScrollToTopButton:hover::before {
  opacity: 1;
  bottom: unset;
  font-size: 13px;
  transition-duration: 0.3s;
}