@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

section{
  padding: 20px 20px;
}


.section-home{
  position: relative;
  min-height: 100vh;
  background: url(Images/back.jpg)no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: transparent;
}

.section-home:before{
  content: '';
  position: absolute;
  background: linear-gradient(to top, #23252B, transparent);
  width: 100%;
  height: 80px;
  bottom: 0;
}

.section-home h1{
  color: #ffffff;
  font-size: 10vw;
  font-weight: 800;
  text-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  opacity: 0.3;
}

.section-two{
  min-height: 100vh;
  background: #23252B;
}

.section-two h4{
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  margin: 30px 0;
}

.section-two h3{
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  margin: 30px 0;
}

.section-two h2{
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  margin: 30px 0;
}

.section-two h1{
  color: #fff;
  font-size: 10em;
  font-weight: 700;
  margin: 30px 0;
  align-items: center;
}

.section .color{
  color: #ff0000;
}

.section-two p{
  color: #fff;
  font-size: 0.85em;
  margin: 30px 0;
}

.section-two img{
  width: fit-content;
  height: fit-content;
  gap: 20px;
  vertical-align: top;
}

.section-two iframe{
  align-items: center;
  margin-top: 10px;
  width: 600px;
  height: 450px;
}

@media (max-width: 1260px){
  .section-two img{
    float: left;
    vertical-align: top;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
  }

  .section-two iframe{
    margin-top: -130px;
    width: 320px;
    height: 450px;
  }

  .section-home h1{
    color: #ffffff;
    font-size: 14vw;
    font-weight: 800;
    text-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    opacity: 0.3;
  }
}

header{
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #23252B;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  padding: 0 100px;
  transition: 0.6s;
}

header .logo{
  color: #ff7b00;
  font-size: 1.5em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

header .navigation{
  position: relative;
  line-height: 75px;
  transition: 0.6s;
  transition-property: line-height;
}

header .navigation .menu{
  position: relative;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}

.menu-item > a{
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
  margin: 20px;
  padding: 25px 0;
}

.menu-item > a:hover{
  color: #469DFF;
  transition: 0.3s;
}

.overlay-text {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: none;
	position: fixed;
	justify-content: center;
	align-items: center;
  font-family: 'Bad Script', cursive;
	flex-direction: column;
  background-color: rgb(0, 0, 0);
  opacity: 0.8;
	transition: background-color 500ms, font-size 500ms;
}

.overlay-text.visible {
	display: flex;
  font-family: 'Bad Script', cursive;
	animation: overlay-grow 500ms forwards;
}

h2{
  display: flex;
  font-size: 14vw;
  color: transparent;
}

h2 span{
  animation: animate 3s linear infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes animate{
  0%
  {
    color: #fff;
    filter: hue-rotate(0deg);
    text-shadow: 0 0 10px #00b3ff,
    0 0 20px #00b3ff,
    0 0 40px #00b3ff,
    0 0 80px #00b3ff,
    0 0 120px #00b3ff,
    0 0 200px #00b3ff,
    0 0 300px #00b3ff,
    0 0 400px #00b3ff;
  }
  30%,70%
  {
    color: #fff;
    filter: hue-rotate(360deg);
    text-shadow: 0 0 10px #00b3ff,
    0 0 20px #00b3ff,
    0 0 40px #00b3ff,
    0 0 80px #00b3ff,
    0 0 120px #00b3ff,
    0 0 200px #00b3ff,
  }
  100%{
    color: transparent;
    box-shadow: none;
    filter: hue-rotate(0deg);
  }
}

.menu-item .sub-menu{
  position: absolute;
  background: #23252B;
  top: 74px;
  line-height: 40px;
  list-style: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  pointer-events: none;
  transform: translateY(20px);
  opacity: 0;    
  transition: 0.3s;
  transition-property: transform, opacity;
}

header.sticky .menu-item .sub-menu{
top: 60px;
}

.menu-item:hover .sub-menu{
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;

}

.menu-item .sub-menu .sub-item{
  position: relative;
  padding: 7px 0;
  cursor: pointer;
  box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
}

.menu-item .sub-menu .sub-item a{
  color: #ffffff;
  font-size: 1em;
  text-decoration: none;
  padding: 15px 30px;
}

.menu-item .sub-menu .sub-item:hover{
  background: #4080EF;
}

.menu-item .sub-menu .sub-item:last-child:hover{
  border-radius: 0 0 8px 8px;
}

.menu-btn{
  display: none;
}


@media (max-width: 1375px ){
  header .menu-item > a{
    color: #fff;
    font-size: 0.7em;
    text-decoration: none;
    margin: 20px;
    padding: 25px 0;
  }

}
@media (max-width: 1260px){
header .navigation .menu{
  position: fixed;
  display: block;
  background: #23252b;
  min-width: 350px;
  height: 100vh;
  top: 0;
  right: -100%;
  padding: 90px 50px;
  visibility: hidden;
  overflow-y: auto;
  transition: 0.5s;
  transition-property: right, visibility;
}

header.sticky .navigation{
  line-height: 75px;
}

header .navigation .menu.active{
  right: 0;
  visibility: visible;
}

.menu-item{
  position: relative;
}

.menu-item .sub-menu{
  opacity: 1;
  position: relative;
  top: 0;
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  display: none;
}

header.sticky .menu-item .sub-menu{
  top: 0;
}

.menu-item:hover .sub-menu{
  transform: translateX(10px);
}

.menu-item .sub-menu .sub-item{
  box-shadow: none;
}

.menu-item .sub-menu .sub-item:hover{
  background: none;
}

.menu-item .sub-menu .sub-item a:hover{
  color: #4080EF;
  transition: 0.3s;
}

.close-btn{
  position: absolute;
  background: url(Images/close.png)no-repeat;
  width: 40px;
  height: 40px;
  background-size: 25px;
  background-position: center;
  top: 0;
  left: 0;
  margin: 25px;
  cursor: pointer;
}

.menu-btn{
  background: url(Images/menu.png)no-repeat;
  width: 40px;
  height: 40px;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
  display: block;
}

header{
  padding: 15px 20px;
}

header.sticky{
  padding: 10px 20px;
}
}

body
{
  justify-content: flex-end;
  align-items: flex-end;
}

footer
{
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .social_icon,
footer .menu
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

footer .social_icon li,
footer .menu
{
  list-style: none;
}

footer .social_icon li a
{
  font-size: 2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

footer .social_icon li a:hover
{
  transform: translateY(-10px);
}

footer .menu li a
{
  font-size: 1.2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
}

footer .menu li a:hover
{
  opacity: 1;
  color: #fff;
}

footer p
{
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

footer .wave
{
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(Images/wave.png);
  background-size: 1000px 100px;
}

footer .wave#wave1
{
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}

footer .wave#wave2
{
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3
{
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWave_03 3s linear infinite;
}

footer .wave#wave4
{
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave_04 3s linear infinite;
}

@keyframes animateWave
{
  0%
  {
    background-position-x: 1000px;
  }
  100%
  {
    background-position-x: 0px;
  }
  
}
@keyframes animateWave_02
{
  0%
  {
    background-position-x: 0px;
  }
  100%
  {
    background-position-x: 1000px;
  }
  
}

#overlay
{
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(255, 0, 106, 0.4);
}

.contact-section{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info{
  color: #fff;
  max-width: 500px;
  line-height: 65px;
  padding-left: 9px;
  font-size: 18px;
}

.contact-info i{
  margin-right: 20px;
  font-size: 25px;
}

.contact-form{
  max-width: 700px;
  margin-right: 50px;
}

.contact-info, .contact-form{
  flex: 1;
}

.contact-form h2{
  color: #fff;
  text-align: center;
  font-size: 35px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form .text-box{
  background: #000;
  color: #fff;
  border: none;
  width: calc(50% - 10px);
  height: 50px;
  padding: 12px;
  font-size: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-form .text-box:first-child{
  margin-right: 15px;
}

.contact-form textarea{
  background: #000;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 15px;
  min-height: 200px;
  max-height: 400px;
  resize: vertical;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-form .send-btn{
  float: right;
  background: #2E94E3;
  color: #fff;
  border: none;
  width: 120px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  transition-property: background;
}

.contact-form .send-btn:hover{
  background: #0582E3;
}

@media screen and (max-width: 1060px){

  .contact-section{
    flex-direction: column;
  }

  .contact-info {
    margin: 20px 50px;
    font-size: 16px;
  }

  .contact-form{
    margin: 20px 50px;
  }

  .contact-form h2{
    font-size: 30px;
  }

  .contact-form .text-box{
    width: 100%;
  }
}


.alert-success{
  z-index: 1;
  background: #D4EDDA;
  font-size: 18px;
  padding: 20px 40px;
  min-width: 420px;
  position: fixed;
  right: 0;
  top: 10px;
  border-left: 8px solid #3AD66E;
  border-radius: 4px;
}

.alert-error{
  z-index: 1;
  background: #FFF3CD;
  font-size: 18px;
  padding: 20px 40px;
  min-width: 420px;
  position: fixed;
  right: 0;
  top: 10px;
  border-left: 8px solid #FFA502;
  border-radius: 4px;
}

button {
  background: #23252B;
  color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: 10px 10px 14px 1px rgb(0 0 0 / 20%);
  padding: 0.8em 2em;
  font-size: 1.5em;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.like__btn {
  padding: 10px 15px;
  background: #23252B;
  border: none;
  border-radius: 50px;
  box-shadow: 10px 10px 14px 1px rgb(0 0 0 / 20%);
  padding: 0.8em 2em;
  font-size: 1.5em;
  letter-spacing: 0.5px;
  cursor: pointer;
}

::selection{
  color: #fff;
  background: #0D6EFD;
}
.wrapper{
  margin: auto;
  width: 715px;
  background: #24262c;
  border-radius: 5px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.50);
}
.wrapper header{
  font-size: 22px;
  font-weight: 600;
  padding: 20px 30px;
  border-bottom: 1px solid #ccc;
}
.wrapper form{
  margin: 35px 30px; 
}
.wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.field input::placeholder,
.message textarea::placeholder{
  color: #ccc;
}
.field input:focus,
.message textarea:focus{
  padding-left: 47px;
  border: 2px solid #0D6EFD;
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: #0D6EFD;
}
form .message{
  position: relative;
}
form .message i{
  top: 30px;
  font-size: 20px;
}
form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
.message textarea:focus{
  padding-top: 14px;
}
form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
}
.button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #0D6EFD;
  transition: background 0.3s ease;
}
.button-area button:hover{
  background: #025ce3;
}
.button-area span{
  font-size: 17px;
  margin-left: 30px;
  display: none;
}
@media (max-width: 600px){
  .wrapper header{
    text-align: center;
  }
  .wrapper form{
    margin: 35px 20px;
  }
  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span{
    margin: 20px 0 0;
    text-align: center;
  }
}

input[type="file" i] {
  appearance: none;
  background-color: #fff;
  cursor: pointer;
  align-items: bottom;
  color: inherit;
  text-overflow: ellipsis;
  white-space: pre;
  text-align: start !important;
  padding: 2px;
  border: initial;
  border-color: initial;
  overflow: hidden !important;
  border-radius: 2px;
}

.container{
  top: 50%;
  left: 50%;
}

.upload-box{
  font-size: 12px;
  background: #fff;
  border-radius: 50px;
  width: 300px;
  outline: none;
}

::-webkit-file-upload-button{
  color: #fff;
  background: #972fff;
  padding: 20px;
  border: none;
  outline: none;
}

::-webkit-file-upload-button:hover{
  background: #a449ff;
}