
:root {
  --primary: #015fc9;
  --secondary: #0dd3f1;
  --light: #f6f7fc;
  --dark: #15233c;
  --info: #00336d;
}


.logoContainer {
  margin: auto;
  width: 200px;
  aspect-ratio: 5/1;
}

.firstTitle {
  margin: 1em 0;
  color: #0abbb8;
}

.titleSection {
  margin: 1em 0;
  color: #356ac0;
  font-weight: 700;
}

.titleSection span {
  color: #6995de;
  font-weight: 400;
  font-size: 0.7em;
}
.iframeContainer {
  max-height: 400px !important;
  border-radius: 2em;
}

.iframeContainer iframe {
  border-radius: 2em;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
}
.photoContainer {
  margin: auto;
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0abbb8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photoContainer i {
  z-index: 99;
  color: white !important;
  font-size: 3.5em;
}

.photoContainer:hover {
  border-radius: 49%;
  cursor: pointer;
  opacity: 0.9;
}

.contactSection {
  padding: 0 2em 2em 2em;
  background-color: rgba(10, 187, 184, 0.78);
  border-radius: 2em;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
}

label {
  text-align: left;
}
.contactSection h3 {
  color: #356ac0;
  padding: 0.5em;
}
.copyright {
  padding: 2em 0;
  color: #a5a5a5;
}

.btn.custom-color {
  background-color: #356ac0;
  color: #ffffff; /* Replace with your desired text color */
  border-radius: 0.5em;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
}
.btn.custom-color:hover {
  border: solid 1px rgba(255, 255, 255, 0.534);
  opacity: 0.9;
  border-radius: 0.1em;
}
/* ---------------------------- extra additions thomas ------------------------------------ */
/* button extra need thomas */

.photoContainer {
  position: relative;
}

.photoContainer label {
  display: inline-block;
  cursor: pointer;
}

.photoContainer i {
  /* Add your icon styles here */
}

.photoContainer input[type="file"] {
  position: absolute;
  left: -9999px;
}
/*  ------------------------------------------arrow animation details------------------------------------------- */
.arrow svg {
  width: 3em;
  height: 3em;
  animation: moveUpDown 2s ease-in-out infinite;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

text.custom-color {
  background-color: #356ac0;
  color: #ffffff; /* Replace with your desired text color */
  border-radius: 0.5em;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
}
text.custom-color:hover {
  border: solid 1px rgba(255, 255, 255, 0.534);
  opacity: 0.9;
  border-radius: 0.1em;
}

.fixed-middle-right {
  border-radius: 0.5em;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  background-color: #0abbb8;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #356ac0;
  transition: all 0.3s ease-in-out;
  width: 2.1em; /* Initial width */
  overflow: hidden;
  /* text-overflow: ellipsis; */
  white-space: nowrap;
}

.fixed-middle-right:hover {
  width: 12em; /* Expanded width on hover */
  background-color: white;
  color: #356ac0;

}

