@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primaryColor: #E64590;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: #09509D;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.container {
    padding-left: 60px;
    padding-right: 60px;
}

/*======= header-area design =======*/
.header-area {
    background-color: var(--primaryColor);
    padding-top: 58px;
}

.logo-area img {
    max-width: 260px;
}

.main-menu ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18.67px;
}

.main-menu ul li a {
   color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
}

.main-menu ul li a:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.main-menu ul li a:hover:after {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
.nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-right > a {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 22px;
}

.nav-right ul {
    display: flex;
    flex-direction: column;
    gap: 19.51px;
}

.nav-right ul li a {
    border-radius: 50%;

}

.nav-right ul li a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translateY(-2px);
}

.header-heading {
    padding-top: 70px;
}

.header-heading h1 {
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-size: 172px;
    font-style: normal;
    font-weight: 800;
    line-height: 84.302%; 
}

.head-section-arrow {
    padding-top: 154px;
    padding-bottom: 600px;
    text-align: center;
}

.head-section-arrow a {
  animation: smoothBounce 1.6s ease-in-out infinite;
}

@keyframes smoothBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.header-shape-01 {
    position: absolute;
    left: 0;
    top: 696px;
}

.header-shape-02 {
    position: absolute;
    right: 0;
    top: 505px;
}

.header-conents {
    padding-bottom: 71px;
    padding-top: 30px;
}

.header-conts-inner {
    max-width: 1140px;
    margin-inline: auto;
}

.header-conts-inner h4 {
    color: #FFF;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 15px;
}

.header-conts-inner p,
.header-conts-inner ul li {
    color: #FFF;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header-conts-inner .para-01 {
    padding-bottom: 37px;
}

.header-conts-inner .para-02 p {
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 90px;
    display: inline-block;
    border-bottom: 6px solid #fff;
}

.header-conts-inner h5 {
    padding-bottom: 35px;
    padding-top: 121px;
    color: #FFF;
    font-size: 33px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.header-conts-inner ul li {
    position: relative;
    padding-left: 30px;
}

.header-conts-inner ul li:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 0px;
    top: 20px;
}

.gellary-grid-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gellary-grid-wrap img {
    width: 100%;
}

.cnt-primary-heading .inner {
    display: flex;
    justify-content: flex-end;
}

.cnt-primary-heading h2 {
    font-weight: 800;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--primaryColor);
    padding-top: 126px;
    padding-bottom: 75px;
}

.cnt-content-02 p {
    padding-bottom: 34px;
    font-weight: 400;
    font-size: 33px;
    line-height: 110%;
    color: #09509D;
    letter-spacing: 0%;
}

.cnt-content-02 ul {
    padding-bottom: 41px;
}

.cnt-content-02 ul li {
    position: relative;
    padding-left: 25px;
}

.cnt-content-02 ul li:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #09509D;
    position: absolute;
    left: 0px;
    top: 15px;
}

.cnt-content-02 ul li {
    font-weight: 700;
    font-style: Bold;
    font-size: 33px;
    color: #09509D;
    line-height: 100%;
    letter-spacing: 0%;
}

.cnt-primary-heading p a {
    font-weight: 700;
    padding-top: 5px;
}

.cnt-primary-heading h3 {
    font-weight: 800;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #09509D;
    padding-top: 60px;
}

.content-list-fea ul {
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding-top: 62px;
}

.content-list-fea ul li {
    display: flex;
    align-items: center;
    gap: 76px;
}

.content-list-fea ul li .single-letter {
    width: 191px;
    height: 191px;
    flex: 0 0 191px;
}

.content-list-fea ul li .single-letter img {
    width: 100%;
}

.content-list-fea ul li p {
    font-size: 33px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #09509D;
}

.content-list-fea ul li p b {
    font-weight: 800;
}

.cnt-content-03 {
    padding-top: 130px;
    max-width: 995px;
}

.cnt-content-03 h3 {
    color: #F6A118;
    padding-bottom: 37px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 33px;
    padding-top: 75px;
    padding-bottom: 98px;
}

.product-grid .single-grid img {
    width: 100%;
}

.footer-area {
    background-color: var(--primaryColor);
    padding-top: 100px;
}

.footer-top {
    max-width: 769px;
    margin-inline: auto;
}

.footer-top img {
    display: block;
    margin-left: auto;
}

.footer-top h2 {
    padding-top: 35px;
    padding-bottom: 18px;
    font-weight: 800;
    font-size: 163.82px;
    line-height: 90%;
    letter-spacing: 0%;
    color: #fff;
}

.footer-top h3 {
    font-weight: 800;
    font-size: 58.51px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #fff;
}

.footer-top p {
    font-size: 35.1px;
    line-height: 46.81px;
    letter-spacing: 0%;
    color: #fff;
}

.footer-bottom {
    padding-top: 250px;
    display: flex;
    justify-content: space-between;
    padding-inline: 50px;
}

.footer-bottom .fb-right {
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.footer-bottom .fb-right .contents {
    transform: rotate(-90deg);
    margin-right: -324px;
    margin-bottom: 230px;
}

.footer-bottom .fb-right p {
    font-weight: 400;
    font-size: 30.42px;
    line-height: 46.81px;
    letter-spacing: 0%;
    color: #fff;
}

.footer-social ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
    padding-inline: 50px;
}

.footer-area {
    overflow: hidden;
    padding-bottom: 126px;
    position: relative;
}

.footer-social ul li a {
    border-radius: 50%;
}

.footer-social ul li a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.footer-shape-02 {
    position: absolute;
    left: 0;
    top: 25%;
}
