:root{
    --dark-blue:#2D2E7D;
    --white:#ffffff;
    --black: #000000;
    --color-primary: #D7592F;

    --primary-color: #00537F;
    --secondary-color: rgb(73, 138, 248);
    --field-text-color: rgb(26, 27, 24);
    --field-bg-color: rgb(255, 255, 255);
    --bg-color: rgb(228, 235, 244);
    --field-color: rgb(242, 242, 242);
}

body, main{
    overflow-x: hidden;
}
main {
    background-color: var(--bg-color);
    width: 100%;
    min-height: 100vh;
    padding: 35px 50px;
    background-image: url(../../assets/imgs/bg8.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    overflow: hidden;
}
.language {
    color:#000;
}
.language svg{
    width:50px;
}
.logo {
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 10;
}
.logo img{
    max-height: 100px;
    max-width:100%;
}
.side-text h2 {
    font-size: 55px;
    color: var(--field-text-color);
    font-weight: bold;
    line-height: 1.2;
}
.side-text h1 {
    font-size: 45px;
    color: var(--field-text-color);
    font-weight: bold;
    line-height: 1.2;
}
.side-text p {
    font-size: 27px;
    color: var(--field-text-color);
    font-weight: bold;
    line-height: 3;
}
.side-text p a {
    position: relative;
    display: inline-block;
    line-height: 1.3;
    text-decoration: none;
    color: var(--field-text-color);
    transition: all 0.3s ease-in-out;
}
.side-text p a:hover{
    color: var(--primary-color);
}
.side-text p a::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 50px;
}
.side-text button {
    background-color: var(--primary-color);
    width: 70%;
    height: 69px;
    border-radius: 50px;
    border: 0;
    font-size: 15px;
    font-family: "Roboto";
    color: var(--field-bg-color);
    font-weight: bold;
}
.side-text ul{
    padding: 0;
    list-style: none;
}
.side-text ul li{
    display: inline-block;
}
.side-text ul li a{
    font-size: 22px;
    margin: 5px 10px;
    color: var(--primary-color);
}
form {
    /* height: calc(100vh - 140px); */
    border-radius: 10px;
}
.steps-inner {
    min-height: 150px;
    width: 90%;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.15);
    margin:auto;
}
.set_meeting {
    padding: 75px;
}
.main-heading {
    font-size: 40px;
    color: var(--field-text-color);
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 15px;
}

select {
    -webkit-appearance: none;
    border: solid 2px var(--field-color);
    height: 61px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    color: var(--field-text-color);
    transition: 0.4s all ease;
    cursor: pointer;
    font-weight: 400;
    padding-left: 35px;
}
 textarea {
    border: solid 2px var(--field-color);
    border-radius: 6px;
    background-color: var(--field-bg-color);
    min-height: 110px;
    width: 100%;
    resize: none;
    transition: 0.4s all ease;
    padding: 25px;
}
.text-input {
    border: solid 2px var(--field-color);
    border-radius: 6px;
    height: 65px;
    background-color: var(--field-bg-color);
    padding: 6px 20px 6px 6px;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}
.text-input i {
    font-size: 15px;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}
.text-input input {
    width: 100%;
    height: 100%;
    border: 0;
    margin-left: 30px;
}
.text-input label {
    border-radius: 6px;
    background-image: -moz-linear-gradient(90deg, rgb(226, 237, 255) 2%, rgba(226, 237, 255, 0.15) 10%, rgba(233, 242, 255, 0.26) 16%, rgba(240, 246, 255, 0.44) 26%, rgba(240, 246, 255, 0.5) 29%, rgb(240, 246, 255) 73%);
    background-image: -webkit-linear-gradient(90deg, rgb(226, 237, 255) 2%, rgba(226, 237, 255, 0.15) 10%, rgba(233, 242, 255, 0.26) 16%, rgba(240, 246, 255, 0.44) 26%, rgba(240, 246, 255, 0.5) 29%, rgb(240, 246, 255) 73%);
    background-image: -ms-linear-gradient(90deg, rgb(226, 237, 255) 2%, rgba(226, 237, 255, 0.15) 10%, rgba(233, 242, 255, 0.26) 16%, rgba(240, 246, 255, 0.44) 26%, rgba(240, 246, 255, 0.5) 29%, rgb(240, 246, 255) 73%);
    font-size: 16px;
    font-weight: normal;
    height: 100%;
    text-align: center;
    line-height: 48px;
    padding: 0 30px;
    text-wrap: nowrap;
}
.text-input label span{
    color:red;
}
.submit
{
    width: 100%;
    height: auto;
    margin-top: 10px;
}
.submit .sub {
    border-radius: 6px;
    background-color: var(--primary-color);
    width: auto;
    padding: 0 60px;
    font-weight: 500;
    height: 50px;
    border: solid 2px transparent;
    font-size: 16px;
    color: var(--field-bg-color);
    margin-right: 15px;
    position: relative;
}
.submit .sub span {
    margin-left: 10px;
    display: inline-block;
    transform: translateX(-200%);
    opacity: 0;
    transition: 0.4s ease;
    position: absolute;
}
.submit .sub:hover span {
    opacity: 1;
    transform: translateX(0);
}

.text-area {
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
input:focus {
    outline: none;
}
.text-input:focus-within {
    border-color: var(--primary-color);
}

.text-area i {
    font-size: 15px;
    color: var(--primary-color);
    position: absolute;
    right: 20px;
    top: 10px;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}
.text-input:focus-within i{
    opacity: 1;

}
.text-area:focus-within i{
    opacity: 1;

}
span.error{
    position: absolute;
    white-space: nowrap;
    color: red;
    top: -13px;
    background-color: #fff;
    padding: 0 10px;
    right: 15px;
    display: block;
}

.side-text ul li{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
}
.side-text ul li:hover {
    cursor: pointer;
    animation-name: top_bounce;
    -moz-animation-name: top_bounce;
}
@keyframes top_bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-10px);
		-ms-transform:     translateY(-10px);
		transform:         translateY(-10px)
	}
	60% {
		-webkit-transform: translateY(-5px);
		-ms-transform:     translateY(-5px);
		transform:         translateY(-5px)
	}
}

.bounce {
    outline: 0;
    border-color: red;
    animation-name: bounce;
    animation-duration: .5s;
    animation-delay: 0.25s;
  }

  /* This approximates the ease-in-out-bounce animation from easings.net, which would require a plug-in to use*/
  @keyframes bounce {
    0% {
      transform: translateX(0px);
      timing-function: ease-in;
    }
    37% {
      transform: translateX(5px);
      timing-function: ease-out;
    }
    55% {
      transform: translateX(-5px);
      timing-function: ease-in;
    }
    73% {
      transform: translateX(4px);
      timing-function: ease-out;
    }
    82% {
      transform: translateX(-4px);
      timing-function: ease-in;
    }
    91% {
      transform: translateX(2px);
      timing-function: ease-out;
    }
    96% {
      transform: translateX(-2px);
      timing-function: ease-in;
    }
    100% {
      transform: translateX(0px);
      timing-function: ease-in;
    }
  }

.feedback_success, .feedback_failed{
    text-align: center;
}
.feedback_success i, .feedback_failed i{
    font-size: 54px;
    display: block;
    margin-bottom: 25px;
}
.feedback_success i{
    color: green;
}
.feedback_failed i{
    color: red;
}
.feedback_success .main-heading, .feedback_failed .main-heading{
    font-size: 32px;
    line-height: 1.2;
}
.feedback_failed a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--field-text-color);
    transition: all 0.3s ease-in-out;
}
 .feedback_failed a:hover{
    color: var(--secondary-color);
}
.feedback_failed a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 50px;
}
