@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap');


:root
{
    --primary-gradiant: linear-gradient(45deg, rgb(6 92 250) 0%, rgb(100 172 246) 100%);
    --primary-color: rgb(6 81 250);
    --secondary-color: rgb(31, 30, 76);
    --text-color: rgb(38, 36, 32);
    --text-color-2: rgb(255, 255, 255);
    --text-color-3: rgb(56, 44, 77);
    --text-color-4: rgb(19, 19, 22);
    --bg-color: rgb(255, 255, 255);
    --bg-color-2: rgb(255, 255, 255);
    --heading-color: rgb(243, 243, 243);
    --list-color: rgb(101, 101, 101);
}

body
{
    width: 100%;
    height: auto;
    font-family: "Unbounded";
}
h1,h2,h3,h4,h5,h6,p
{
    margin-bottom: 0;
}
a
{
    text-decoration: none;
}
main
{
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background-image: url(../images/bg.jpg);
    background-size: cover;
}

header
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: white;
}


.logo img
{
    margin-right: 6px;
}
.logo
{
    font-size: 52px;
    color: var(--text-color);
    font-weight: bold;   
}
.contact
{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    margin-right: 1rem;
}
.contact i
{
    border-radius: 50%;
    background-color: rgb(245, 249, 250);
    width: 54px;
    height: 54px;  
    display: grid;
    place-content: center;
    color: var(--primary-color);
}
.contact_detail
{
    margin-right: 30px;
    margin-left: 25px;
}
.contact_detail span
{
    font-size: 14px;
    color: var(--text-color-3);
    margin-bottom: 4px;
    display: block;
    font-weight:  300;
}
.contact_detail p
{
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color-3); 
}
.trim-btn
{
    background: var(--primary-gradiant);
    border-radius: 26px;
    height: 55px;
    padding: 0 25px;
    font-size: 13px;
    color: var(--text-color-2);
    font-weight: bold;
    border: 0;
    align-content: center;
}


.mainArea
{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 100px 0;
}
.formHeading
{
    background: var(--primary-gradiant);
    border-radius: 20px;
    height: 40px;
    padding: 0 22px;
    font-size: 13px;
    color: var(--text-color-2);
    text-transform: uppercase;
    font-weight: 300;
    line-height: 40px;
    margin: 0 auto;
    margin-bottom: 22px;
    width: max-content;
}
.question
{
    font-size: 45px;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.3;

}
.trim-select
{
    width: 100%;
    height: 300px;
    background-color: var(--bg-color);
    border-radius: 30px;
    display: grid;
    place-content: center;
    position: relative;
    transition: 1s ease-in-out;
    margin-bottom: 20px;
    transform: translateX(0);
}
.trim-select.prev, .trim-select.next
{
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}
.trim-select.prev
{
    transform: translateX(100%);
}
/* .trim-select */
.trim-select input
{
    -webkit-appearance: none;
    border: solid 4px var(--text-color);
    border-radius: inherit;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.trim-select input:hover
{
    border-color: var(--primary-color);
}
.trim-select.active input
{
    border-color: var(--primary-color);
}
.trim-select img
{
    width: 109px;
    margin: 0 auto;
    margin-bottom: 40px;
    pointer-events: none;
}
.trim-select label
{
    font-size: 24px;
    color: var(--text-color);
    font-weight: bold;   
    pointer-events: none;
}
.select-service
{
    margin-bottom: 10px;
    width: max-content;
    height: 85px;
    display: grid;
    place-content: center;
    position: relative;
      
}
.select-service input
{
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: solid 3px var(--text-color);
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.select-service input:hover
{
    border-color: var(--primary-color);
}
.select-service input:checked
{
    background: var(--primary-gradiant);
    border-color: var(--primary-color);
}
.select-service input:checked~label
{
    color: var(--text-color-2);
    padding-left: 40px;
    padding-right: 20px;
}
.select-service label
{
    font-size: 20px;
    color: var(--text-color);
    font-weight: bold;
    pointer-events: none;
    position: relative;
    transition: 0.5s ease-in-out;
    padding: 0 30px;
}
.select-service input:before
{
    content: "\f058";
    font-family: "font Awesome 6 Free";
    font-weight: 900;
    color: var(--text-color-2);
    font-size: 20px;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
    top: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.select-service input:checked:before
{
    left: 30px;
    opacity: 1;
}

.lineHeading
{
    font-size: 20px;
    color: var(--text-color);
    padding: 0 40px;
    width: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.lineHeading::before,.lineHeading::after
{
    content: "";
    display: inline-block;
    height: 6px;
    width: 5%;
    background-color: var(--text-color);
    border-radius: 20px;
    margin: 0 5px;
      
}
.textmsg
{
    width: 100%;
    height: 140px;
    border-radius: 10px;
    margin: 0 auto;
    border: solid 3px var(--text-color);
    padding: 20px 40px;
    transition: 0.3s ease-in-out;
      
}
.textmsg:focus
{
    outline: none;
    border-color: var(--primary-color);
}
.next-prev
{
    margin-top: 50px;
}
.next-prev button
{
    border-radius: 50px;
    padding: 0 90px;
    height: 63px; 
    background: var(--primary-gradiant);
    color: var(--text-color-2);
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    border: 0;     
    position: relative;
    overflow: hidden;
}
.next-prev button::before, .next-prev button::after
{
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    background-color: rgba(255, 255, 255,0.5);
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 50% 100%, 0% 100%);
    transition: 0.4s;
    z-index: 0;


}
.next-prev button:hover::before,.next-prev button:hover::after
{
    right: -100%;
}
.next-prev button::after
{
    transition-delay: 0.2s;


}




.RangeSlide
{
    padding: 20px 0 90px 0;
    text-align: start;
}
.RangeSlide label
{
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;

}


.RangeSlide input
{
    -webkit-appearance: none;
    background-color: rgb(0,0,0);
    width: 100%;
    height: 9px;
    border-radius: 10px;
    position: relative;
}
.RangeSlide input::-webkit-slider-thumb
{
    -webkit-appearance: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;  
    background: var(--primary-gradiant);
    cursor: grab;
}
.RangeSlide input::-moz-range-thumb
{
    border-radius: 50%;
    width: 50px;
    height: 50px;  
    background: var(--primary-gradiant);
    cursor: grab;
}
#step3 .next-prev
{
    margin: 0;
}
.inputField
{
    width: 100%;
    min-height: 90px;
    border: solid 3px var(--text-color);
    border-radius: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: 0.5s ease-in-out;
    background-color: var(--bg-color);
}
.inputField input[type=radio]
{
    -webkit-appearance: none;
    width: 37px;
    height: 37px;
    border: solid 3px var(--text-color);
    border-radius: 50%;
    margin-left: 55px;
    cursor: pointer;
    position: relative;
    transition: 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.inputField input[type=radio]::before
{
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--text-color-2);
    font-size: 20px;
    display: grid;
    place-content: center;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.inputField input[type=radio]:checked
{
    background-color: var(--text-color);
}
.inputField input[type=text], .inputField input[type=email], .inputField input[type=url], .inputField textarea
{
    margin-left: 55px;
    width: 100%;
    height: 100%;
    border: 0;
    background-color: transparent;
    font-size: 1.6rem;
}
.inputField textarea
{
    height: 180px !important;
    margin-top: 30px;
}
.inputField input[type=text]:focus, .inputField input[type=url]:focus, .inputField textarea:focus
{
    outline: none;
}
.inputField:focus-within
{
    border-color: var(--primary-color);
}
.inputField label
{
    margin-left: 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
}
.smallText
{
    font-size: 13px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    text-align: start !important;
    margin: 20px 0 5px 0px;
}
.inputField input[type=url]::placeholder
{
    font-size: 13px;
    color: var(--text-color);
    font-weight: bold;
}
.uploadArea
{
    width: 100%;
    height: auto;
}
.uploadArea .smallText
{
    text-align: center !important;
    margin-top: 10px;

}
.uploadArea .uploadInner
{
    border: solid 3px var(--text-color);
    text-align: center;
    width: 100%;
    height: 180px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    background-color: var(--bg-color);
}
.uploadInner.highlight::before
{
    content: "Drop it Like it's Hot";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 30px;
    display: grid;
    background-color: rgba(255,255,255,0.5);
    place-content: center;
    color: var(--text-color-3);
    transition: 0.5s ease-in-out;
    border-radius: inherit;
}
.uploadInner input[type=file]
{
    display: none;
}
.uploadInner h3
{
    font-size: 24px;
    color: var(--text-color);
    font-weight: bold;
    margin-bottom: 3px;
}
.uploadInner span
{
    font-size: 12px;
    font-weight: 300;
    line-height: 3;
    color: var(--text-color);  
}


.agreement
{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 30px;
}
.agreement input
{
    -webkit-appearance: none;
    min-width: 40px;
    height: 32px;
    background-color: var(--bg-color);
    border-radius: 4px;
    border: 2px solid var(--text-color);
    cursor: pointer;
    position: relative;
}
.agreement input::before
{
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--text-color);
    color: var(--text-color-2);
    display: grid;
    place-content: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s ease-in-out;
}
.agreement input:checked:before
{
    opacity: 1;
}
.agreement label
{
    margin-left: 20px;
    font-size: 13px;
    font-weight: normal;
    color: var(--text-color);
    text-align: left;
}
.agreement label a
{
    font-weight: bold;
    color: var(--text-color);
    text-decoration: underline;

}


















footer
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: space-between;
    align-items: center;
}
.stepnumber
{
    font-size: 18px;
    color: var(--text-color);
    font-weight: bold;
}
.social-icons i
{
    font-size: 18px;
    color: rgb(1, 1, 1);
    margin-left: 38px;
}
#sub img
{
    width: 30px;
}

#error
{
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
}



.thankyou img
{
    margin: 0 auto;
    margin-bottom: 20px;
}
.thankyou .thankyouHeading
{
    font-size: 60px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: bold;
}
.thankyou .thank-desc
{
    font-size: 45px;
    font-weight: 200;
    margin: 0 auto;
    margin-bottom: 15px;
    width: 40%;
    line-height: normal;
}

select.inputField {
    font-size: 1.6rem;
    text-align: center;
}

.inputField:has(input.invalid),
.inputField.invalid,
input[type="radio"].invalid,
input[type="checkbox"].invalid,
textarea.invalid {
    border: 10px solid red;
}

.row {
    justify-content: space-between;
}

  .wrapper {
    width: 100%;
    padding: 20px;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    position: relative;
    margin: 50px 0;
  }

  .container {
    margin: auto;
  }

  .popInner article {
    margin-bottom: 30px;
  }
  .popInner article h1 {
    font-size: 37px;
    color: var(--text-color);
    font-weight: bold;
    text-transform: uppercase;
  }
  .popInner article p {
    font-size: 21px;
    color: var(--text-color);
    font-weight: normal;
  }
  .textField {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 10px;
  }
  .textField input,
  .textField textarea {
    width: 100%;
    height: 69px;
    border: solid 2px rgb(234, 234, 234);
    border-radius: 10px;
    padding-left: 22px;
    padding-right: 100px;
    transition: 0.5s;
  }
  .textField input:focus,
  .textField textarea:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  .textField input:focus ~ i,
  .textField textarea:focus ~ i {
    color: var(--primary-color);
  }
  .textField textarea {
    padding-top: 20px;
    height: 110px;
    resize: none;
  }
  ::placeholder {
    font-size: 19px;
    color: var(--text-color);
  }
  .textField i {
    font-size: 21px;
    color: var(--text-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    transition: 0.5s;
  }
  .socialIcon {
    margin-bottom: 10px;
  }
  .socialIcon img {
    margin-right: 15px;
  }
  .apply {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 0 40px;
    height: 60px;
    font-size: 19px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border: 0;
    margin-bottom: 10px;
  }
  .apply i {
    margin-left: 10px;
  }
  .close {
    border: solid 1px rgb(0, 0, 0);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: -17px;
    right: -17px;
    color: var(--text-color);
    font-size: 20px;
    text-transform: uppercase;
    width: 62px;
    font-weight: bold;
    height: 62px;
  }

  .logo img {
    max-width: 18rem;
    padding: 1rem;
  }

  .inputField.inputFieldRounded {
    border-radius: 10px !important;
    min-height: 60px !important;
  }

  .inputField input {
    height: 5rem;
    background: transparent;
    border: none;
    box-shadow: none !important;
  }
  
  .inputField .iti__selected-flag {
    border-radius: 50px 0px 0px 50px;
  }
  
  .inputField.inputFieldRounded input {
    height: 3rem;
  }
  
  .inputField.inputFieldRounded .iti__selected-flag {
    border-radius: 10px 0px 0px 10px;
  }

  
/*----------------------------------------*/
/*  2.12 preloader
/*----------------------------------------*/
.preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 26px;
    color: var(--rr-common-white);
    background: var(--rr-theme-primary);
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    right: 30px;
    top: 30px;
  }
  
  #preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #121212;
    z-index: 9999;
  }
  
  .sk-three-bounce {
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #121212;
  }
  
  .sk-three-bounce .sk-child {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  }
  
  .sk-three-bounce.is-primary1.sk-three-bounce .sk-child {
    background-color: var(--primary-color);
  }
  
  .preloader-close.is-primary1 {
    background: var(--primary-color);
  }
  
  .sk-three-bounce.is-primary2.sk-three-bounce .sk-child {
    background-color: var(--primary-color);
  }
  
  .preloader-close.is-primary2 {
    background: var(--primary-color);
  }
  
  .sk-three-bounce .sk-bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .sk-three-bounce .sk-bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-three-bounce {
    0%, 80%, 100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    40% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes sk-three-bounce {
    0%, 80%, 100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    40% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  
/* pricing page */
.trim-price {
    background-color: var(--bg-color);
    background-image: none;
    z-index: 111;
  }
  .trim-price::before {
    display: none;
  }
  .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
  }
  .particles img {
    position: absolute;
    width: auto;
    height: auto;
  }
  .particles img:nth-child(2) {
    right: 0;
    top: 0;
  }
  .particles img:nth-child(1) {
    left: 0;
    bottom: 0;
  }
  .trim-price header {
    z-index: 100;
  }
  .priceTable {
    flex: 1;
    display: grid;
    align-items: center;
    padding: 50px 0;
  }
  .priceWrap {
    margin-left: auto;
    margin-right: 220px;
    width: 73%;
  }
  
  .priceDiscount h4 {
    background-color: var(--text-color-3);
    border-radius: 50px;
    width: max-content;
    padding: 0 40px;
    height: 52px;
    line-height: 52px;
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 25px;
  }
  
  .priceDiscount h1 {
    font-size: 59px;
    color: var(--text-color-3);
    font-weight: bold;
    margin-bottom: 15px;
  }
  .higlight-text {
    color: var(--primary-color);
  }
  .desc {
    font-size: 20px;
    color: rgb(196, 196, 196);
    font-weight: 300;
    margin-bottom: 40px;
  }
  .feature {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
  }
  .feature i {
    border-radius: 50%;
    background-color: var(--text-color-3);
    min-width: 63px;
    height: 63px;
    display: grid;
    place-content: center;
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 20px;
  }
  .feature p {
    font-size: 15px;
    color: var(--text-color-3);
  }
  .PriceTableHeading {
    width: 90%;
    margin: 0 auto;
    height: 100px;
    background-color: var(--secondary-color);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    display: grid;
    place-content: center;
    font-size: 19px;
    color: var(--text-color-2);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding-bottom: 35px;
  }
  .pricetableContent {
    width: 100%;
    height: auto;
    border-radius: 40px;
    background-color: var(--bg-color-2);
    box-shadow: -3.032px 10.574px 29px 0px rgba(12, 12, 12, 0.34);
    position: relative;
    z-index: 3;
    top: -45px;
  }
  .priceHead {
    text-align: center;
    height: 140px;
    display: grid;
    place-content: center;
  }
  .priceHead h1 {
    font-size: 70px;
    color: var(--secondary-color);
  }
  .priceHead sup {
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    top: 0;
    left: 5px;
  }
  .priceHead sub {
    top: -0.5em;
    right: 5px;
    font-weight: normal;
  }
  .serviceType {
    font-size: 18px;
    color: var(--text-color-3);
    font-weight: bold;
    text-transform: uppercase;
  }
  .priceContentInner {
    border-bottom: solid 1px rgb(237, 237, 237);
    border-top: solid 1px rgb(237, 237, 237);
  }
  .contentList {
    list-style: none;
    padding: 0;
    justify-items: center;
  }
  .contentList li {
    font-size: 16px;
    color: rgb(101, 101, 101);
    margin-bottom: 15px;
  }
  .contentList li i {
    color: var(--primary-color);
    margin-right: 10px;
  }
  .priceFooter {
    font-size: 15px;
    color: rgb(0, 0, 0);
    text-align: center;
    width: 100%;
    padding: .5rem 0px;
  }
  .pricaTableBtn {
    width: 90%;
    margin: 0 auto;
    height: 100px;
    background-color: var(--primary-color);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    display: grid;
    place-content: center;
    font-size: 16px;
    color: var(--text-color-2);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    bottom: 90px;
    padding-top: 35px;
    border: 0;
  }  