@import url('https://fonts.googleapis.com/css2?family=Inter:wght@305&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body-bg{
    background-color:#f0f0f0;
    overflow-x: hidden;
}
.container{
    width: 1200px;
    margin: 0 auto;
}
.header-bg{
    background-color: #604058;
    padding:10px 0px;
    text-align:right;
    z-index:2;
}
.header-bg a{
    color:white;
    text-decoration:none;
    font-weight: normal;
    text-transform: lowercase;
    margin-right:10px;
}
.navbarBg{
    background-color:#e7e6e6;
    transition:0.5s;
    z-index:2;
}
header{
    display: flex;
    justify-content:space-between;
    align-items: start;
    position:relative;
    z-index: 2;
    background:transparent;
    padding:5px 0px;
}
.logo{
    width: 300px;
    height: auto;
}
.logo span{
    color: #714b67;
}
.logo a{
    color:#94969a;
    text-decoration: none;
    font-size: 36px;
    font-weight: bold;
}
.nav{
    width: 700px;
    height: auto;
    padding: 18px 0px;
    display: flex;
    justify-content:end;
}
.nav ul{
    margin: 0;
    padding: 0;
}
.nav ul li{
    list-style: none;
    display: inline;
    padding: 20px 20px;
}
.nav ul li a{
    color:#1a2236;
    font-size: 15px;
    font-family:"Inter", sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition:0.4s;
}
.nav ul li a:hover{
    color:#734b68;
}
  .navline-1{
    width: 100%;
    height: 3px;
    background-color:black;
    transition: .5s;
    margin-bottom: 5px;
  }
  .navline-2{
    width: 100%;
    height: 3px;
    background-color:black;
    transition: .1s;
    margin-bottom: 5px;
  }
  .navline-3{
    width: 100%;
    height: 3px;
    background-color:black;
    transition: .5s;
  }
  .line-active-1{
    width: 100%;
    height: 3px;
    background-color:black;
    transform: rotate(45deg);
    transform-origin: left top;
  }
  .line-active-2{
    width: 100%;
    height: 7px;
    opacity: 0;
  }
  .line-active-3{
    width: 100%;
    height: 3px;
    background-color:black;
    transform: rotate(-45deg);
    transform-origin: left;
  }
.side-dropdown{
    width:100%;
    position:absolute;
    top:100px;
    left:0;
    text-align:center;
    transition:0.2s;
    background-color:#714b67;
    padding:15px 0px;
    border-radius: 0 0 6px 6px;
    visibility: hidden;
    opacity: 0;
    z-index:1;
}
.side-dropdown ul{
    margin: 0;
    padding: 0;
}
.side-dropdown ul li{
    list-style: none;
    display:block;
    padding:8px 0px;    
}
.side-dropdown ul li a{
    color:white;
    font-size: 17px;
    font-family:"Inter", sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition:0.4s;
}
.side-dropdown ul li:hover a{
    color:#94969a;
}
.side-dropdown.active{
    position:absolute;
    top:65px;
    left:0px;
    visibility: visible;
    opacity: 1;
}
.DropBtn{
    cursor: pointer;
}
.megamenu-1{
    width: 100%;
    height: auto;
    visibility: hidden;
    position: absolute;
    top:0;
    left: 0;
    transform: translateY(100px);
    transition: 0.5s;
    z-index:-1;
    opacity: 0;
}
.DropBtn:hover .megamenu-1{
    background:#f1f1f1;
    width: 100%;
    height: auto;
    visibility: visible;
    position: absolute;
    top:0;
    left:0;
    transform: translateY(70px);
    z-index:-2;
    padding-top:0px;
    opacity: 1;
}
.megamenu-1 hr{
    margin-top:0px;
}
.menubox{
    width:100%;
    height:auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px 5px 30px 5px;
}
.menubox .menu-box-1{
    width: 280px;
    height:auto;
    text-align:left;
}
.menubox .menu-box-1 h4{
    color:#604058;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    border-bottom: 1px solid gray;
}
.menubox .menu-box-1 ul{
    margin: 0;
    padding: 0;
}
.menubox .menu-box-1 ul li{
    list-style: none;
    display: block;
    padding: 3px 0px;
}
.menubox .menu-box-1 ul li a{
    color: #151c2d;
    font-size: 15px;
    text-decoration: none;
    font-weight:600;
    font-family:"inter",sans-serif;
    font-style:normal;
}
.menubox .menu-box-1 ul li a:hover{
    color:#714b67;
}
.heroBg{
    width:100%;
    height: 400px;
    background-image: url(images/service-bg.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-size:cover;
}
.hero{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content:start;
    align-items:flex-start;
}
.hero .main{
    width:700px;
    height: fit-content;
} 
.main h1{
    color:white;
    font-size:65px;
    font-family:"inter",sans-serif;
    font-weight:700;
    padding-bottom: 10px;
}
.main h3{
    color:white;
    font-size:45px;
    font-family:"inter",sans-serif;
    font-weight:600;
}
.information-1{
    width:100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.information-1 .left img{
    width: 100px;
    height: fit-content;
}
.information-1 .right .img-box img{
    object-fit:cover;
    border-radius: 10px;
    width: 100%;
    height: 500px;
}
.information-1 .left a{
    font-size: 30px;
    font-family:"inter",sans-serif;
    color: #151c2d;
    font-weight:600;
    text-decoration: none;
    transition: 0.3s;
}
.information-1 .left a:hover{
    color: #604058;
}
.information-1 .left p{
    color:rgb(24, 24, 24);
    font-weight:400;
    font-size: 17px;
    padding-left:15px;
    text-align: left;
    margin-top: 10px;
}
.information-2{
    border-radius: 20px;
    background-color: #fff;
    padding:30px;
    margin:40px 0px;
}
.information-2 h1{
    color: #0f1522;
    font-size: 20px;
    font-family: "inter",sans-serif;
    font-weight: bold;
}
.information-2 strong{
    display: block;
}
.information-2 ol li{
    color:rgb(24, 24, 24);
    font-size:18px;
    font-weight:400;
    margin:20px 0px;
}
.information-3{
    border-bottom: 1px solid black;
    padding: 20px 0px;
}
.information-3 h1{
    color:#0f1522;
    font-size: 30px;
    font-family:"inter",sans-serif;
    font-weight:600;
    padding-left: 10px;
    border-left: 3px solid #734b68;
    margin-bottom:20px;
}
.information-3 p{
    color: rgb(24, 24, 24);
    font-size: 18px;
    text-align: left;
    font-weight:400;
}
.information-4{
    border-bottom: 1px solid black;
    padding: 30px 0px 20px 0px;
}
.information-4 h1{
    color:#0f1522;
    font-size: 30px;
    font-family:"inter",sans-serif;
    font-weight:600;
    padding-left: 10px;
    border-left: 3px solid #734b68;
    margin-bottom:20px;
}
.information-4 p{
    color: rgb(24, 24, 24);
    font-size: 18px;
    text-align: left;
    font-weight:400;
}
.inner-info{
    width: 100%;
    border-radius: 20px;
    background-color: #fff;
    padding:30px;
    margin:20px 0px 30px 0px;
}
.information-5{
    border-bottom: 1px solid black;
    padding: 30px 0px 20px 0px;
    margin: 40px 0px;
}
.information-5 h1{
    color:#0f1522;
    font-size: 30px;
    font-family:"inter",sans-serif;
    font-weight:600;
    padding-left: 10px;
    border-left: 3px solid #734b68;
    margin-bottom:20px;
}
.information-5 p{
    color: rgb(24, 24, 24);
    font-size: 18px;
    text-align: left;
    font-weight:400;
}
.inner-info-2{
    width: 100%;
    border-radius: 20px;
    background-color: #fff;
    padding:30px;
    margin:20px 0px 30px 0px;
}
.inner-info-2 ul li{
    list-style: none;
    display: block;
    margin-bottom:10px;
    font-size: 19px;
}
.information-6{
    border-bottom: 1px solid black;
    padding: 30px 0px 20px 0px;
    margin: 30px 0px;
}
.information-6 h1{
    color:#0f1522;
    font-size: 30px;
    font-family:"inter",sans-serif;
    font-weight:600;
    padding-left: 10px;
    border-left: 3px solid #734b68;
    margin-bottom:20px;
}
.information-6 p{
    color: rgb(24, 24, 24);
    font-size: 18px;
    text-align: left;
    font-weight:400;
}
.inner-info-3{
    width: 100%;
    border-radius: 20px;
    background-color: #fff;
    padding:30px;
    margin:20px 0px 30px 0px;
}
footer{
    background-color: #252733;
    overflow:hidden;
    position: relative;
}
.backTop{
    padding: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: white;
    background:#734b68;
    position:fixed;
    bottom: 60px;
    right:20px;
    border: none;
    outline: none;
    transform: translate(100px,0px);
    transition: 0.4s;
    font-size: 22px;
}
.backTop:hover{
    background:#604058;
}
.backTop.active{
    transform: translate(0px,0px);
}
.footer-top{
    margin: 0;
    padding: 0;
    text-align: center;
    padding-top: 20px;
}
.footer-box{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0px;
}
.footer-logo span{
    color: #865c7b;
}
.footer-logo{
    color:#aeb0b1;
    text-decoration: none;
    font-size: 40px;
    font-weight: bold;
}
.footer-left{
    width: 600px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.left-box-1{
    width: 200px;
    text-align: left;
}
.left-box-1 h4{
    color:#fff;
    font-size: 21px;
    font-weight: 500;
}
.left-box-1 ul{
    margin: 0;
    padding: 0;
}
.left-box-1 ul li{
    list-style: none;
    display: block;
}
.left-box-1 ul li a{
    color: #adadad;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}
.left-box-1 ul li a:hover{
    color:#fff;
}
.footer-right{
    width: 500px;
    text-align: left;
    position:relative;
}
.footer-right span{
    color: white;
    cursor: default;
}
.footer-right span img{
    width: 18px;
    height:18px;
    border-radius: 50%;
}
.footer-right p{
    color: #d6d6d6;
    font-size: 17px;
    font-family:"inter", sans-serif;
}
.social-icons{
    width: 100%;
}
.social-icons ul {
    margin: 0;
    padding: 0;
}
.social-icons ul li{
    list-style: none;
    display: inline;
    margin-right: 20px;
}
.social-icons ul li a{
    color: #adadad;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}
.social-icons ul li a:hover{
    color: #fff;
}
.footer-bottom{
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #1a1c24;
    padding: 12px 0px;
}
.footer-bottom a{
    color: #adadad;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}
.footer-bottom a:hover{
    color: #fff;
}
