@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

*{
  font-family: 'Manrope', sans-serif;
  box-sizing: border-box;
}

html,
body{
  font-family: 'Manrope', sans-serif;
  background: #2775C9;
  background: -webkit-linear-gradient(top left, #2775C9, #7481A5);
  background: -moz-linear-gradient(top left, #2775C9, #7481A5);
  background: linear-gradient(to bottom right, #2775C9, #7481A5);
   height:100vh;
   width:100vw;
   overflow-x:hidden;
}
header{
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 90px;
  padding: 0 40px;
}
header .logo{
  font-weight: 700;
  border:1px solid white;
  padding:10px;
}
header .menu ul{
  display: flex;
}
header .menu ul li{
  display: flex;
  justify-content: center;
  align-items: center;
}
header .menu li a{
  font-size: .8rem;
  color: white;
  text-decoration: none;
  padding-right: 20px;
}
header .menu li a:hover{
  /* background:#3cffff; */
  padding-bottom:10px;
  border-bottom:1px solid white;
  cursor:pointer;
}
.menu-btn{
  background:#0077ff;
  padding: 15px 15px;
  border-radius: 20px;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 40px; */
}

.menu-btn:hover{
background:#0077ff;
color: #ffffff;
border:none !important;
box-shadow: 0px 0px 20px 10px #0ff;
}
.container{
  max-width: 1400px;
  margin: 0 auto;
}
#home{
  /* overflow: hidden; */
}
#home .content-area{
  height: calc(100vh);
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .info-section{
  width: 50%;
  padding: 0 2%;
}
#home .info-section h1{
  font-size: 5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
}
#home .info-section h4{
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
#home .info-section .call-actions{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.action-btn, .action-ghost-btn{
  padding: 20px 20px;
  border-radius: 30px;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: .9rem;
}
.action-btn{
  background: white;
  color: #3777c2;
  margin-right: 20px;
}
.action-btn:hover{
  /* background:#3cffff; */
  box-shadow:
  0 0 10px 1px #fff,  /* inner white */
  0 0 10px 2px rgb(255, 255, 255), /* middle magenta */
  0 0 10px 3px rgb(255, 255, 255); /* outer cyan */
  box-shadow: 0px 0px 20px 10px #0ff;
}
.action-ghost-btn{
  background: transparent;
  border: 2px solid white;
  color: white;
}
#home .photos{
  width: 50%;
  position: relative;
  height: 400px;
}
#home .photos .business1{
  position: absolute;
  width: 400px;
  height: 0;
  z-index: 1;
  transform: translate3d(0, -200px, 0);
  object-fit: cover;
  object-position: top;
  transition:filter .4s ease-in-out;
  cursor:pointer;
}
#home .photos .business2{
  position: absolute;
  width: 400px;
  height: 0;
  z-index: 2;
  transform: translate3d(300px, 100px, 0);
  object-fit: cover;
  object-position: top;
  transition:filter .4s ease-in-out;
  cursor:pointer;
  filter:blur(0px);
}

#home .photos .business2:hover, #home .photos .business1:hover{
  filter:blur(10px);
}

.shape1{
  position: absolute;
  width: 500px;
  height: 500px;
  border: 2px dashed rgb(255, 255, 255);
  transform: translate3d(100px,0, 0);
}
.shape2{
  opacity: .3;
  border: 2px dashed white;
  background-color: white;
  position: absolute;
  width: 100px;
  height: 100px;
  transform: translate3d(600px,-300px, 0);
  border: 1px dashed white;

}
.shape3{
  opacity: .6;
  border: 2px dashed white;
  background-color: white;
  position: absolute;
  width: 100px;
  height: 100px;
  transform: translate3d(0px,300px, 0);
  border: 1px dashed white;
  

}

@media screen and (max-width: 1500px) {
  #home .info-section h1 {
    font-size: 4vw;
    padding: 0 10%;
}

 #home .info-section h4 {
  font-size: 1.5vw;
  padding: 0 10%;
}
#home .info-section .call-actions{
  margin-left: 9%;
}
}

@media screen and (max-width: 767px) {
  #home .content-area {
    margin-top:23%;
    display: block;
    width: 100%;
}
#home .info-section {
  width: 100%;
  padding: 0 2%;
  position: fixed;
}
#home .photos {
  width: 100%;
  position: fixed;
  top: 70%;
}
header {
  position: fixed;
}
.menu {
  margin-left: 22%;
}
.action-btn, .action-ghost-btn {
  padding: 14px 20px;
  border-radius: 30px;
  width: 120px;
  font-size: .9rem;
}
#home .info-section h4 {
  font-size: 3.5vw;
  padding: 0 10%;
}

#home .info-section h1 {
font-size: 4vw;
margin-top: 4%;
margin-bottom: 5%;
padding: 0 10%;

}
}
