@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* variables */
:root
{
    --primary-color: rgb(0, 143, 156);
    --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
{
    font-family: "Jost";
    width: 100%;
    position: relative;
    height: auto;
}

main
{
    background-color: var(--bg-color);
    width: 100%;
    min-height: 100vh;
    padding: 35px 50px;
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
}

a
{
    color: var(--primary-color);
    text-decoration: underline;  
    font-weight: 500;

}
a:hover
{
    color: var(--primary-color);
}
.logo
{
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 10;
}
.logo-icon
{
    width: auto;
}
.logo-icon img
{
    width: 100%;
}
.logo-text
{
    font-size: 37px;
    font-family: "Oswald";
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 3px;
}
.wrapper
{
    width: 100%;
    height: 100%;
    display: grid;
    align-content: center;
}


.side-text h2
{
    font-size: 65px;
    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 span
{
    position: relative;
    display: inline-block;
    line-height: 1.3;
}
.side-text p span::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 button i
{
    margin-right: 10px;
}
form
{
    height: calc(100vh - 140px);
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 10px;

}

.scroll-form::-webkit-scrollbar
{
    width: 15px;

}

.scroll-form::-webkit-scrollbar-track
{
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    margin-top: 270px;
    margin-bottom: 270px;

}
.scroll-form::-webkit-scrollbar-thumb
{
    background-color: var(--secondary-color);
    border-radius: 50px;
    height: 100px;
}

.steps-inner
{

    min-height: 150px;
    width: 95%;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.15);

}

.main-heading
{

    font-size: 40px;
    color: var(--field-text-color);
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 15px;
}
.set_meeting
{
    padding: 75px;
}
.meeting_type
{
    width: 100%;
    height: auto;
    margin-bottom: 25px;

}
.meeting_type 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;
}
.meeting_type select:focus
{
    outline: none;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.11);
    background-color: var(--field-bg-color);

}
.meeting_date
{
    border: solid 2px var(--field-color);
    border-radius: 6px;
    height: 65px;
    transition: 0.4s all ease;
    display: flex;
    margin-bottom: 25px;
}
.meeting_date:focus-within
{
    border-color: var(--primary-color);
}
.meeting_date .date-icon
{
    width: 30%;
    display: grid;
    place-content: center;
}
.meeting_date .date-icon i
{
    font-size: 16px;
    color: var(--primary-color);
    height: 100%;
}
.meeting_date .start_date, .meeting_date .end_date
{
    width: 70%;
    text-align: center;
    height: 100%;
    position: relative;
}
.meeting_date select
{
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: var(--field-text-color);
    font-weight: 500;
    border: 0;
    padding-left: 20px;
    cursor: pointer;
    
      

}
.meeting_date select:focus
{
    outline: none;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.11);
    background-color: var(--field-bg-color);

}
.b-custom
{
    border-right: 2px solid var(--field-color);
}
.meeting_date select+span::after
{
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 35%;
    right: 15px;
    font-size: 13px;
    color: var(--primary-color);
}
.schedule-type
{
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
}
.schedule-type > *
{
    margin-bottom: 10px;
}
.schedule-type input[type=radio]
{
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgb(246, 248, 250);
    border: solid 2px transparent;
    cursor: pointer;
    transition: 0.4s all ease;
    position: relative;
      
}
.schedule-type input:checked::before
{
    content: "";
    position: absolute;
    top: 37%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--primary-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: 0.4s all ease;
}
.schedule-type input:checked
{
    border-color: var(--primary-color);
    transition: 0.4s all ease;
    background-color: var(--field-bg-color);
}
.schedule-type label
{
    font-size: 16px;
    color: var(--field-text-color);
    margin-left: 10px;
    display: -webkit-inline-box;
  }
  .schedule-type label #edit
  {
    margin-right: 10px;
    font-weight: bold;
    cursor: auto;
    width: 90px;
    height: 25px;

  }

 .schedule-type label #edit:focus
 {
    outline: none;
 }
 .event_details
 {
    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%);   
    width: 100%;
    height: auto;
    padding: 30px 75px 30px 75px;
 }
 .event_details .main-heading
 {
    font-size: 30px;
 }
.guests
{
    border-top: solid 1px rgb(236, 236, 236);
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.guest-inner
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.event-text
{
    font-size: 16px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-right: 11px;
}
.guest-single
{
    border-radius: 50%;
    background-color: rgb(236, 236, 236);
    width: 75px;
    height: 75px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.guest-single img
{
    width: 100%;
    height: auto;
}
.add-guest
{
    border-radius: 50%;
    background-color: var(--primary-color);
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    font-size: 20px;
    color: var(--field-bg-color);
    font-weight: bold;
    cursor: pointer;
}
.add-guest input
{
    display: none;
}
.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;

}
.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%;
    display: inline-block; /* Allow the element to shrink-to-fit based on its content */
    max-width: 100%; /* Set maximum width to prevent overflow */
    text-align: center;
    line-height: 48px;
    padding: 0 30px;
    /* Optionally, you can also add white-space property to control text wrapping */
    white-space: nowrap; /* Prevent text wrapping */
}    
.text-input input
{
    width: 100%;
    height: 100%;
    border: 0;
    margin-left: 30px;

}
.text-input:focus-within
{
    border-color: var(--primary-color);
}
.text-input input:focus
{
    outline: none;
}

.text-input i
{
    font-size: 15px;
    color: var(--primary-color);
}
.video_call_opt
{
    border-top: solid 1px var(--field-color);
    border-bottom: solid 1px var(--field-color);
    padding: 25px 0;
    display: -webkit-inline-box;
    margin-bottom: 30px;
    width: 100%;
}

.video_call_opt .colors
{
    margin-left: 25px;
    color: var(--field-text-color);
    font-weight: 400;
}
.video_call_opt i
{
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 8px;
}
::-webkit-calendar-picker-indicator
{
    display: none;
}
.other-input
{
    padding: 30px 75px 30px 75px;
}
.other-input .main-heading
{
    font-size: 23px;
}

.other-input 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;
}
.other-input textarea:focus
{
    outline: none;
    border-color: var(--primary-color);
}
.attachments input
{
    display: none;
}
.attachments label
{
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: underline; 
    cursor: pointer;
    font-weight: 500;
    min-height: auto;
    margin-top: 12px;
    margin-bottom: 25px;

}
.event_color input
{
    -webkit-appearance: none;
    border: solid 2px var(--field-color);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    background-color: transparent;
    cursor: pointer;
    transition: 0.4s all ease;
}
.event_color input:checked
{
    background-color: var(--field-color);
}
.event_color .purple
{
    border-color: rgb(153, 127, 220);
}
.event_color .purple:checked
{
    background-color: rgb(153, 127, 220);
}
.event_color .yellow
{
    border-color: rgb(234, 220, 145);
}
.event_color .yellow:checked
{
    background-color: rgb(234, 220, 145);
}
.event_color .red
{
    border-color: rgb(234, 128, 137);
}
.event_color .red:checked
{
    background-color: rgb(234, 128, 137);
}
.event_color .green
{
    border-color: rgb(35, 163, 84);
}
.event_color .green:checked
{
    background-color: rgb(35, 163, 84);
}
.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);
}

#notifiymail
{
    color: var(--primary-color);
    text-decoration: underline;  
    font-weight: 500;
    border: 0;
    background-color: transparent;
}






















.thankyou-page .logo
{
    justify-content: center;
    margin-top: 60px;
}
.thankyou-page .logo-icon
{
    width: 55px;
    margin-right: 10px;
}
.thankyou-page .logo .logo-icon img
{
    width: 100%;
}
.thankyou-page .logo-text
{
    font-size: 65px;
}
.thankyou-page .main-inner
{
    background-image: url(../images/thankyou-bg.png) !important;
    background-color: var(--text-color-hover);

}
.thankyou-page article
{
    text-align: center;
    margin-top: 80px;
}
.thankyou-page article h1
{
        font-size: 75px;
        font-weight: bold;
        text-transform: uppercase; 
}
.thankyou-page article h1 span
{
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-color);
}
.thankyou-page article span
{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}
.thankyou-page article p
{
    font-size: 18px;
    font-family: "Myriad Pro";
    color: var(--secondary--text-color);
    margin: 0 auto;
    margin-top: 45px;
    width: 39%;
}
.social-media
{
    text-align: center;
    margin: 40px auto;
    background-color: var(--text-color-hover);
    width: 30%;
    padding: 6px 10px;
}
.social-media a
{
    border: solid 1px rgb(244, 244, 244);
    border-radius: 5px;
    background-color: transparent;
    color: var(--secondary--text-color);
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}
.social-media a i
{
    margin-right: 10px;
    font-size: 20px;
}
.back-home
{
    width: 188px;
    height: 63px;
    margin: 0 auto;
}
.back-home a
{
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--text-color-hover);
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 63px;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 0;

}







#sub img
{
    width: 60px;
}

.highlight
{
    border-top: solid 3px var(--primary-color) !important;
    border-bottom: solid 3px var(--primary-color) !important;

}













#error
{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}

.invalid
{
  border: solid 2px #ff4444 !important;
  position: relative;
}