@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

:root {
    --theme1: linear-gradient(0deg, rgba(0, 179, 244, 1) -20%, rgba(4, 25, 45, 1) 100%);
    --theme2: #cf0000;
}

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    color: #595959;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}


/***** Font Files *****/

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 43px;
    line-height: 1.1;
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px;
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    line-height: 1.1;
    color: #000;
    font-weight: 700;
    margin: 0 0 20px;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/* project css start */

.theme_btn1 {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #000;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 50px;
    width: fit-content;
    border-radius: 30px;
    padding-left: 20px;
    padding-right: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.theme_btn1>i {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme2);
    border-radius: 50%;
    color: #fff;
    transform: rotate(-40deg);
    transition: 0.3s ease-in-out;
}

.theme_btn1:after {
    position: absolute;
    content: "";
    background: #cf000054;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.theme_btn1:hover:after {
    height: 100%;
}

.theme_btn1:hover {
    color: var(--theme2);
    border-color: var(--theme2);
}

.theme_btn1:hover>i {
    background: #fff;
    color: var(--theme2);
    transform: rotate(180deg);
    box-shadow: inset 0 0 13px 0px #cf0000;
}

/* btn2 */

.theme_btn2 {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #000;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 50px;
    width: fit-content;
    border-radius: 30px;
    padding-left: 20px;
    padding-right: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.theme_btn2>i {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme1);
    border-radius: 50%;
    color: #fff;
    transform: rotate(-40deg);
    transition: 0.3s ease-in-out;
}

.theme_btn2:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
    background: linear-gradient(0deg, rgb(0 179 244 / 37%) 0%, rgb(4 25 45 / 58%) 100%);
}

.theme_btn2:hover:after {
    height: 100%;
}

.theme_btn2:hover {
    color: #00166c;
    border-color: #00166c;
}

.theme_btn2:hover>i {
    background: #fff;
    transform: rotate(180deg);
    box-shadow: inset 0 0 13px 0px #00a3f5;
    color: #00166c;
}

header {
    padding: 15px 0px;
}

header .row {
    align-items: center;
}

header .header_btns {
    display: flex;
    justify-content: end;
    gap: 15px;
}

.banner {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--theme1);
    z-index: 1;
    padding: 100px 0px;
}

.banner>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner .banner_textt>h1>span {
    display: block;
    font-size: 99px;
    font-weight: bold;
}

.banner .banner_textt>p {
    color: #fff;
}

.banner .banner_textt>a.theme_btn2 {
    border-color: #fff;
}

.banner .row {
    align-items: center;
}

.banner .banner_form {
    background: #fff;
    box-shadow: 0px 29px 79px 0px rgba(11, 62, 87, 0.43);
    width: 95%;
    margin-left: auto;
    padding: 40px 25px;
    border-radius: 20px;
}

.banner .banner_form form input {
    width: 100%;
    height: 50px;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 30px;
    padding: 0 20px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.banner .banner_form form input::placeholder {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.banner .banner_form form textarea {
    width: 100%;
    height: 140px;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 20px;
    padding: 20px 20px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    resize: none;
}

.banner .banner_form form textarea::placeholder {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.banner .banner_form form input:focus {
    border-color: #00a3f5;
}

.banner .banner_form form textarea:focus {
    border-color: #00a3f5;
}

.banner .banner_form button {
    color: #fff;
    background: var(--theme2);
    border-color: var(--theme2);
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.banner .banner_form button>i {
    background: #fff;
    color: #000;
}

.banner>.container {
    position: relative;
}

.banner>.container>.social_media_wrpr {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    right: -85px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner>.container>.social_media_wrpr>li>a>i {
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.banner>.container>.social_media_wrpr:after {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    width: 2px;
    height: 100%;
    top: -100%;
    left: 20px;
}

.banner>.container>.social_media_wrpr:before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    width: 2px;
    height: 100%;
    bottom: -100%;
    left: 20px;
}

.banner>.container>.social_media_wrpr>li>a>i:hover {
    background: var(--theme1);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.all-sec {
    padding: 80px 0px;
}

.package_box {
    position: relative;
    background-color: #fff;
    padding-top: 40px;
    border-radius: 13px;
    transition: 0.3s ease-in-out;
}

.package_box:after {
    position: absolute;
    content: "";
    background: var(--theme1);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transform: scale(1.01);
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

.package_box>*:not(a) {
    padding: 0 30px;
}

.package_box>h2 {
    font-size: 85px;
    font-weight: bold;
    display: flex;
    align-items: end;
    gap: 5px;
    line-height: 1;
    transition: 0.3s ease-in-out;
}

.package_box>h2>span {
    font-size: 15px;
    background: var(--theme1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s ease-in-out;
}

.package_box>h3 {
    color: #000;
    line-height: 1.1;
    margin-bottom: 20px;
    font-size: 30px;
    transition: 0.3s ease-in-out;
}

.package_box>p {
    border-bottom: 1px solid #001269;
    padding: 0;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: 0.3s ease-in-out;
}

.package_box>ul {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package_box>ul>li {
    font-size: 14px;
    color: #595959;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.package_box>ul>li:after {
    position: absolute;
    content: "";
    background: var(--theme1);
    width: 7px;
    height: 7px;
    left: 0;
    top: 9px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.package_box>a {
    background: var(--theme1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 70px;
    color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.package_box>a>i {
    background: #fff;
    color: #018fc6;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: rotate(-40deg);
    transition: 0.3s ease-in-out;
    font-size: 20px;
}

.package_box:hover {
    background: #02101d;
}

.package_box:hover>h2 {
    color: var(--theme2);
}

.package_box:hover>h2>span {
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.package_box:hover>h3 {
    color: #fff;
}

.package_box:hover>p {
    border-color: var(--theme2);
    color: #ffffff;
}

.package_box:hover>ul>li {
    color: #fff;
}

.package_box:hover>ul>li:after {
    background: var(--theme2);
}

.package_box:hover>a {
    background: var(--theme2);
}

.package_box:hover>a>i {
    transform: rotate(180deg);
    color: var(--theme2);
}

.award_winning_sec {
    background: #f5f5f5;
}

.award_winning_sec .slick-slide {
    opacity: 1;
}

.award_winning_sec .slick-slide>img {
    width: auto;
    display: block;
    margin: 0 auto;
}

/*testimonial start*/


.client-img img {
    width: 97px;
    height: 97px;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.client-img {
    display: flex;
    align-items: center;
    position: absolute;
    top: -89px;
    left: -48px;
    width: 100%;
}

.client-detail {
    position: relative;
}

ul.test-bk::before {
    position: absolute;
    content: "";
    background: var(--theme1);
    height: 58px;
    width: 105%;
    z-index: -1;
    border-radius: 0;
    left: -7px;
    top: -11px;
    border-radius: 10px;
}

ul.test-bk {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0 6px;
    z-index: 1;
    justify-content: space-between;
    width: 100%;
}

.testi_slider .slick-slide {

    transform: scale(0.7);
    transition: all 0.4s ease-in-out;
}


.testi_slider .slick-current {
    transform: scale(1.2);
    /* background-color: #000000;*/
}


.testi_slider .slick-slide {
    opacity: 1;
}

.testimonial-box::before {
    /*position: absolute;*/
    /*content: "";*/
    /*background: url(../images/quote.png);*/
    /*top: 53px;*/
    /*height: 69px;*/
    /*width: 88px;*/
    /*background-repeat: no-repeat;*/
}

.testimonial-box {
    border: solid 0.5px #00000029;
    margin-top: 18%;
    padding: 35px 7px 20px;
    border-radius: 0px;
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
}

ul.test-bk li {
    font-size: 14px;
    color: #fff;
    font-family: 'Montserrat';
    text-transform: uppercase;
    gap: 10px;
    align-items: center;
    line-height: 1.3;
}

span.test-font {
    font-size: 11px;
}

.test-cont {
    margin-top: 9%;
    padding: 0 10px;
}

.test-cont p {
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Montserrat';
    font-size: 13px;
    margin: 0;
    color: #000;
}


.testi_slider .slick-current ul.test-bk::before {
    background: var(--theme2);
}


ul.test-bk li i {
    color: #ff7e00;
}

ul.test-bk li * {
    margin: 0;
}

ul.test-bk li h6 {
    color: #fff;
}

.testi_slider .slick-list {
    padding-top: 10px !important;
}

/*testimonials end*/

css start

/*footer start*/
footer {
    background: linear-gradient(0deg, rgba(0, 179, 244, 1) -20%, rgba(4, 25, 45, 1) 100%);
    position: relative;
    z-index: 9;
}

.footer-top {
    padding: 110px 0px 50px 0px;
    text-align: center;
}

.fot-top-txt {
    margin-top: 35px;
}

.fot-top-txt h3 {
    font-size: 56px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
}

.ft-inp input {
    width: 84%;
    padding: 15px 25px;
    border-radius: 100px;
    border: unset;
}

.ft-inp {
    position: relative;
}

footer::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../images/footer-bf.png);
    content: '';
    z-index: -1;
    opacity: .4;
}

.ft-inp button {
    padding: 15px 30px;
    background-color: #cf0000;
    border: unset;
    color: #fff;
    font-size: 22px;
    border-radius: 100px;
    position: absolute;
    width: 14%;
    right: 102px;
}

.foter-second ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.foter-second ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.foter-second ul li a p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.foter-second ul li a i {
    font-size: 20px;
    color: #fff;
}

.foter-second {
    margin: 40px 0px;
    padding: 20px 0px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.foter-second .row {
    align-items: center;
}

.ul-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ul-social ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.footer-botom {
    background-color: #031327;
    padding: 15px 0px;
}

.ul-social p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.ul-social ul li a i {
    font-size: 15px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transition: 0.3s ease-in-out;
}

.ul-social ul li a i:hover {
    transition: 1s;
    background: var(--theme1);
    color: #fff;
    border: 1px solid #fff;
}

/*footer end*/
/*accessibility start*/
section.accessibility {
    padding: 100px 0px;
    background-color: #f5f5f5;
}

.accessibility-txt h3 {
    font-size: 50px;
    color: #000000;
    font-weight: 700;
    line-height: 60px;
}

.accessibility-txt h3 span {
    display: block;
}

.acc-main-bx form input {
    width: 100%;
    border-radius: 100px;
    border: 1px solid #e7e7e7;
    margin-bottom: 20px;
    outline: none;
    padding: 15px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.acc-main-bx form textarea {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #e7e7e7;
    margin-bottom: 20px;
    outline: none;
    height: 150px;
    padding: 15px;
    resize: none;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.acc-main-bx {
    padding: 40px 30px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 32px 0px rgba(128, 128, 128, 0.26);
}

.accessibility-sm-bx {
    padding: 40px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 32px 0px rgba(128, 128, 128, 0.26);
}

.accessibility-sm-bx h5 {
    font-size: 22px;
    color: #151515;
    font-weight: 700;
    line-height: 30px;
}

.accessibility-sm-bx p {
    font-size: 14px;
    color: #242424;
    line-height: 25px;
}

.acc-sm-img {
    display: flex;
    align-items: center;
    gap: 15px;
}

.acc-sm-img ul {
    display: flex;
    align-items: center;
}

.acc-sm-img ul li {
    margin-left: -15px;
}

.accessibility-txt {
    margin-left: 4%;
}

/*accessibility end*/

footer {
    background: linear-gradient(180deg, #00b3f4 0%, #04192d 90%);
    position: relative;
    z-index: 1;
}

.acc-main-bx form button.theme_btn1 {
    margin: 0 auto;
    border-color: #fff;
    background: var(--theme2);
    color: #fff;
    width: 100%;
    justify-content: center;
}

.acc-main-bx form button.theme_btn1>i {
    background: #fff;
    color: var(--theme2);
}

.iti {
    width: 100%;
    margin-bottom: 15px;
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: transparent;
}

.acc-main-bx form input:focus {
    border-color: #00a3f5;
}

.acc-main-bx form textarea:focus {
    border-color: #00a3f5;
}

/* project css end */

section.pricing_sec.all-sec.thakys {
    padding: 130px 0 80px;
}

section.pricing_sec.all-sec.thakys .banner__content__sec {
    text-align: center;
}

section.pricing_sec.all-sec.thakys .banner__content__sec h1 {
    color: #000;
    font-weight: 700;
    font-size: 52px;
    text-transform: capitalize;
}

section.pricing_sec.all-sec.thakys .banner__content__sec p {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}
section.pricing_sec.all-sec.thakys .banner__content__sec a.theme_btn1 {
    margin: 24px auto;
}
.privy-main h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2e98c5;
}
.privy-main a {
    padding: 0 5px;
    color: #2e98c5;
    text-decoration: underline;
}

ul.policy a {
    color: #fff;
}
ul.policy {
    gap: 50px;
}

div#staticBackdrop input, div#staticBackdrop select {
    width: 100%;
    height: 50px;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 30px;
    padding: 0 20px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    appearance: auto;
}

div#staticBackdrop textarea {
    width: 100%;
    height: 140px;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 20px;
    padding: 20px 20px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    resize: none;
}
.modal-content {
    border-radius: 20px;
    border: unset;
}