/* import font here */

@import url('https://fonts.googleapis.com/css2?family=Poppins: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,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* import font here */



/* css reset code */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #121041;
    color: #fff;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
}

button {
    cursor: pointer;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: normal;
}

main {
    overflow: hidden;
}

.container {
    max-width: 1432px;
    margin-inline: auto;
    padding-inline: 16px;
}

/* css reset code */



/* swiper custom css */

/* .topSlider .swiper-wrapper {
  transition-timing-function: linear !important;
}
*/
.topSlider .swiper-slide {
    width: auto;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* swiper custom css */



/* top__slider start here */

.top__slider {
    background-color: #121041;
    padding-block: 30px;
}

.topSlider__content a {
    font-size: 20px;
    opacity: .5;
    font-weight: 500;
    transition: .4s;
}

.topSlider__content a:hover {
    opacity: 1;
}

.topSlider__content {
    text-align: center;
}

.topSlider__wrapper {
    position: relative;
}

.topSlider {
    max-width: 1300px;
    margin: auto;
}

.sliderNav img {
    width: 20px;
}

/* top__slider end here */



/* hero area start here */

.hero__area {
    background: url("../img/site-bg.jpg") center center/cover no-repeat;
    padding-block: 200px 225px;
}

.hero__text {
    text-align: center;
}

.hero__text h1 {
    font-size: 60px;
    margin-bottom: 24px;
}

.hero__text p {
    font-size: 28px;
    margin-bottom: 50px;
}

.submit__inquiry {
    font-size: 24px;
    background-color: #6A6784;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 16px 32px;
    display: inline-block;
    transition: .4s;
}

.submit__inquiry:hover {
    background-color: #fff;
    color: #6A6784;
}

/* hero area end here */



/* footer area start here */

footer {
    background-color: #fff;
    color: #6B6981;
    padding-block: 90px 30px;
}

.footer__content {
    text-align: center;
}

.footer__text h4 {
    font-size: 28px;
    display: inline-block;
    margin-bottom: 50px;
}

.footer__credit p {
    font-size: 16px;
}

/* footer area end here */