@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
  --white:#ffffff;
  --DarkBlue:#15222B;
  --LightRed:#8D191A;
  --RedGradient:linear-gradient(120deg, #8D191A, #570001);
  --BtnLightBlue:#4D35AC;
  --BtnDarkBlue:#222327;
  --TextBlack:#242A3C;
  --MainFont:'Space Grotesk', sans-serif;
  --SecondaryFont:'Urbanist', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--MainFont);
  line-height: 1.6;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--white);
  box-shadow: inset 0 0 5px var(--TextBlack);
}
::-webkit-scrollbar-thumb {
  background: var(--RedGradient);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--LightRed);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-pad {
  padding: 0 !important;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

:focus-visible {
  outline: 0px dashed #333;
  outline-offset: 0px;
}

.container-fluid{
  padding: 0 100px;
}

.t-btn, .wpcf7-submit{
  display: inline-block;;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 25.81px;
  border-radius: 40px;
  font-size: 18.07px;
  font-weight:400;
  line-height: 18.1px;
  color:var(--white);
  max-width: max-content;
  height: min-content;
  vertical-align: middle;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  svg{
        margin-left: 20px;
        height: 11px;
        width: 15px;
  }
}

.text p{
  font-size: 18px;
  line-height: 24px;
}

h1{
  font-size: 100px;
  line-height: 110px;
  font-weight:700;
}

h2{
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  text-transform: uppercase;
}

.BtnLinear{
  background: var(--RedGradient);
}

.BtnBlue{
  background: var(--BtnLightBlue);
}

.BtnBlack, .wpcf7-submit{
  background: var(--BtnDarkBlue);
}

.BtnWhite{
  background: var(--white);
  color:var(--LightRed);
}

.RightPad0{
  padding-right:0;
}

.LeftPad0{
  padding-left:0;
}

header .TwoBox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

header .TwoBox .MainMenu {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
    margin-top: 46px;
}

header .TwoBox .MainMenu .t-btn {
    margin-left: 10px;
    font-family: var(--MainFont);
    text-transform: unset;
    font-weight: 500;
    padding: 22px 32px;
}

header {
    position: absolute;
    z-index: 999;
    width: 100%;
}

header .TwoBox .MainMenu a {
    color: var(--white);
    font-family: var(--SecondaryFont);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}

header .TwoBox .MainMenu .t-btn svg {
    margin-left: 7px;
}

.Herobanner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 381px 0 190px;
    color: var(--white);
}

.Herobanner .text {
    max-width: 720px;
}

.Herobanner .text p {
    margin: 24px 0 42px;
    line-height: 26px;
}

.Herobanner .text .TwoBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.BannerTextEffect .text {
    position: relative;
}

.BannerTextEffect .text::after {
    content: "";
    position: absolute;
    top: -160px;
    right: 0px;
    background: rgba(59, 109, 238, 0.44);
    height: 600px;
    width: 600px;
    border-radius: 100%;
    filter: blur(100px);
    z-index: 0;
}

.BannerTextEffect .text * {
    z-index: 1;
    position: relative;
}

.BannerTextEffect .text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40px;
    background: rgba(0, 0, 0, 0.4);
    min-width: 885px;
    height: 620px;
    filter: blur(100px);
    z-index: 0;
}

.HomeSec-01 {
    padding: 144px 0;
}

.HomeSec-01 .ImgBox {
    position: relative;
}

.HomeSec-01 .ImgBox img {
    margin-left: auto;
    max-width: 1110px;
}

.HomeSec-01 .ImgBox .LabelBox {
    position: absolute;
    top: 119px;
    left: -45px;
    background: var(--RedGradient);
    color: var(--white);
    padding: 10px 54px 14px 60px;
    border-radius: 160px 0 0px 160px;
}

.HomeSec-01 .ImgBox .LabelBox h4 {
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
}

.HomeSec-01 .ImgBox .LabelBox p {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    text-align: center;
    letter-spacing: 4.2px;
    margin-top: 10px;
}

.HomeSec-01 .text p {
    color: var(--TextBlack);
    margin-top: 17px;
    margin-bottom: 47px;
}

.HomeSec-01 .text {
    padding-right: 55px;
}

.HomeSec-02 {
    background: var(--DarkBlue);
    padding: 183px 0;
    background-image: url(../images/Sec02BG.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}

.text h3 {
    font-size: 23px;
    font-weight: 500;
    line-height: 24px;
}

.HomeSec-02 .text h3 {
    color: var(--white);
}

.HomeSec-02 .text h2 {
    color: var(--white);
    margin-top: 25px;
    font-size: 65px;
    line-height: 70px;
}

.HomeSec-02 .text p {
    color: var(--white);
    line-height: 30px;
    padding-left: 40px;
}

.RelativeBox {
    position: relative;
}

.HomeSec-02 .text.DividerLine::after {
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    height: 100%;
    background: var(--white);
    width: 6px;
}

.HomeSec-02 .text.DividerLine {
    height: 100%;
    align-content: center;
}

.ServiceSlider {
    margin-top: 98px;
    min-width: 115%;
}

.ServiceSlider .ContentBox {
    background: #F5F5F5;
    max-width: 688px;
    padding: 20px;
    transition: 0.3s;
}

.ServiceSlider .ContentBox img {
    width: 100%;
}

.ServiceSlider .ContentBox .TwoBox {
    display: flex;
    padding: 37px 45px 57px;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.ServiceSlider .ContentBox h3 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    transition: 0.3s;
}

.ServiceSlider .ContentBox .TwoBox a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    min-width: 105px;
    border: 1px solid var(--white);
    border-radius: 100px;
    opacity: 0;
    transition: 0.3s;
}

.ServiceSlider .ContentBox:hover .TwoBox a {
    opacity: 1;
    transition: 0.3s;
}

.ServiceSlider .ContentBox .TwoBox a:hover {
    transition: 0.3s;
    transform: rotate(30deg);
}

.ServiceSlider .ContentBox:hover {
    transition: 0.3s;
    background: var(--RedGradient);
}

.ServiceSlider .ContentBox:hover h3 {
    transition: 0.3s;
    color: var(--white);
}

.HomeSec-02 .BtnBox {
    padding-right: 100px;
    margin-top: 55px;
    display: flex;
    justify-content: flex-end;
}

.ServiceSliderSingle {
    margin-right: 21px;
}

.ServiceSlider ul.slick-dots{
    position: absolute;
    left: 0;
    width: fit-content;
    bottom: -100px;
    display: flex;
    flex-direction: row;
}

.StrategySlider ul.slick-dots {
    bottom: -80px;
    position: absolute;
    left: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ServiceSlider ul.slick-dots li, .TestimonialSlider ul.slick-dots li, .StrategySlider ul.slick-dots li {
    background: transparent;
    min-height: 45px;
    min-width: 45px;
    border: 1px solid transparent;
    border-radius: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ServiceSlider ul.slick-dots li button::before, .TestimonialSlider ul.slick-dots li button::before, .StrategySlider ul.slick-dots li button::before {
    content: none;
}

.ServiceSlider ul.slick-dots li button, .TestimonialSlider ul.slick-dots li button, .StrategySlider ul.slick-dots li button {
    height: 6px;
    width: 6px;
    background: var(--white);
    border-radius: 100%;
}

.StrategySlider ul.slick-dots li button {
    background: #000000 ;
}

.ServiceSlider ul.slick-dots li.slick-active, .TestimonialSlider ul.slick-dots li.slick-active, .StrategySlider ul.slick-dots li.slick-active{
    border: 1px solid #F48368;
}

.ServiceSlider ul.slick-dots li.slick-active button, .TestimonialSlider ul.slick-dots li.slick-active button, .StrategySlider ul.slick-dots li.slick-active button{
    background: #F48368;
    transform: scale(1.4);
}

.StrategySlider ul.slick-dots li.slick-active{
    border: 1px solid #8D191A;
}


.StrategySlider ul.slick-dots li.slick-active button{
    background: #8D191A;
}

.HomeSec-03 {
    padding: 150px 0 188px;
}

.HomeSec-03 .text {
    text-align: center;
    margin-bottom: 100px;
}

.HomeSec-03 .text h3 {
    font-size: 20px;
    color: var(--TextBlack);
}

.HomeSec-03 .text h2 {
    margin: 25px 0 21px;
    color: var(--TextBlack);
}

.HomeSec-03 .text p {
    color: var(--TextBlack);
}

.HomeSec-03  .text.BorderLine, .contactsec-01 .col-lg-4 .text{
    transition: 0.3s;
    height: -webkit-fill-available;
    padding: 44px 74px 66px 67px;
    background: var(--DarkBlue);
    color: var(--white);
    margin: 0;
    border: 1px solid transparent;
}

.HomeSec-03 .text.BorderLine p, .contactsec-01 .col-lg-4 .text p, .contactsec-01 .col-lg-4 .text a {
    color: var(--white);
    text-align: left;
    margin-top: 50px;
    font-size: 30px;
    line-height: 43.2px;
    transition: 0.3s;
    font-weight: 500;
}

.HomeSec-03 .text.BorderLine img, .contactsec-01 .col-lg-4 .text img {
    transition: 0.3s;
    filter: brightness(0) invert(1);
}

.HomeSec-03 .text.BorderLine:hover, .contactsec-01 .col-lg-4 .text:hover {
    transition: 0.3s;
    background: transparent;
    border-color: #8D191A;
    border-radius: 20px;
}

.HomeSec-03 .text.BorderLine:hover img,.contactsec-01 .col-lg-4 .text:hover img {
    transition: 0.3s;
    filter: invert(0) brightness(1);
}

.HomeSec-03 .text.BorderLine:hover p, .contactsec-01 .col-lg-4 .text:hover p, .contactsec-01 .col-lg-4 .text:hover a {
    color: #222327;
    transition: 0.3s;
}

footer {
    background: var(--BtnDarkBlue);
    color: var(--white);
    padding-top: 117px;
    font-family:var(--SecondaryFont);
}

footer .LastFooter {
    background: rgba(255, 255, 255, 0.12);
    padding: 30px 10px;
    margin-top: 69px;
}

footer .LastFooter .text p a {
    font-weight: 700;
}

footer .text h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 45px;
}

footer .text ul {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: #C4C8CA;
    transition: 0.3s;
}

footer .text ul a:hover {
    transition: 0.3s;
    color: #fff;
    margin:0;
}

footer .text ul a {
    transition: 0.3s;
}

footer .text .InfoBox {margin-bottom: 39px;max-width: 261px;}

footer .text .InfoBox span {
    font-size: 16px;
    line-height: 40px;
    color: #c4c8ca;
    text-transform: capitalize;
}


footer .col-lg-4 .text {
    max-width: 340px;
}

footer .col-lg-4 .text form {
    border-bottom: 2px solid #4E4E4E;
    padding-bottom: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer .col-lg-4 .text form input[type="email"] {
    width: -webkit-fill-available;
    font-size: 18px;
    color: #A9ADB1;
    font-weight: 700;
    line-height: 40px;
}

footer .col-lg-4 .text form button {
    border: 1px solid var(--white);
    border-radius: 100%;
    height: 25px;
    min-width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    transform: rotate(-45deg);
    opacity: 0;
}

footer .col-lg-4 .text form button:hover {
    transition: 0.3s;
    transform: rotate(0deg);
}

footer .col-lg-4 .text form:hover button {
    opacity: 1;
    transition: 0.3s;
}

footer .col-lg-4 .text p {
    font-size: 16px;
    line-height: 23px;
    margin: 24px 0 37px;
    font-weight:600;
}

footer .text .InfoBox p {
    color: var(--white);
    font-size: 18px ;
    font-weight: 600;
    line-height: 30px ;
    margin: 0 ;
    text-transform: capitalize;
}

.HomeSec-08 {
    padding: 150px 0;
}

.HomeSec-08 h2 {
    color: var(--TextBlack);
}

.HomeSec-08 p {
    font-size: 22px;
    line-height: 30px;
    margin-top: 30px;
    color: var(--TextBlack);
}

.HomeSec-08 .text {
    max-width: 534px;
}

.HomeSec-05 {
    padding: 130px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.HomeSec-05 .CounterBox {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: fit-content;
    justify-self: center;
}

.HomeSec-05 .container-fluid {
    max-width: 1420px;
    padding: 0 15px;
}

.HomeSec-05 .CounterBox h4 {
    color: var(--white);
    font-size: 75px;
    font-weight: 700;
    line-height: 96px;
}

.HomeSec-05 .CounterBox p {
    color: var(--white);
    font-size: 20px;
    line-height: 30px;
}

.HomeSec-05 .text h2 {
    color: var(--white);
    margin-bottom: 90px;
}

.HomeSec-05 .row .col-lg-3 {
    border-right: 2px solid var(--white);
}

.HomeSec-05 .row .col-lg-3:last-child {
    border: none;
}

.HomeSec-07 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 131px 0;
}

.HomeSec-07 .container-fluid {
    max-width: 1350px;
    padding: 0 15px;
}

.HomeSec-07 .text h2 {
    font-size: 70px;
    color: var(--TextBlack);
    margin-bottom: 58px;
    line-height: normal;
}

.HomeSec-07 .text h3 {
    color: #8D191A;
    font-size: 20px;
    margin-bottom: 3px;
    line-height: normal;
}

.TestimonialSlider p {
    font-size: 30px;
    font-weight: 500;
    color: var(--TextBlack);
    padding: 38px 0 52px;
    border-bottom: 1px solid #8D191A;
    padding-right: 100px;
}

.TestimonialSlider {
    max-width: 1110px;
    margin: 0;
}

.TestimonialSlider .twoBox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 36px;
}

.TestimonialSlider .twoBox img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
}

.TestimonialSlider .twoBox  p {
    padding: 0;
    border: 0;
    color: var(--black);
    font-size: 20px;
    line-height: normal;
    margin-bottom: 7px;
}

.TestimonialSlider .twoBox span {
    color: #675849;
}

.TestimonialSlider ul.slick-dots {
    top: 23px;
    left: unset;
    width: fit-content;
    right: -178px;
}

.TestimonialSlider ul.slick-dots li button {
    background: black;
}

.TestimonialSlider ul.slick-dots li.slick-active button {
    background: #8D191A;
}

.TestimonialSlider ul.slick-dots li.slick-active {
    border-color: #8D191A;
}

.HomeSec-06 {
    padding: 150px 0;
}

.HomeSec-06 .text h3 {
    font-size: 20px;
    color: var(--TextBlack);
    text-align: center;
}

.HomeSec-06 .text h2 {
    text-align: center;
    color: var(--TextBlack);
    margin: auto;
    max-width: 1074px;
    margin-top: 20px;
    margin-bottom: 68px;
}

.StrategySlider .ContentBox {
    background: #F3F3F3;
}

.StrategySlider .ContentBox img {
    width: 100%;
}

.StrategySlider .ContentBox .TextBox {
    padding: 20px 37px;
}

.StrategySlider .ContentBox .TextBox h4 {
    color: #222327;
    font-size: 26px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}

.StrategySlider .ContentBox .TextBox p, .StrategySlider .ContentBox .TextBox ul {
    font-size: 18px;
    color: #242A3C;
}

.StrategySlider .ContentBox .TextBox ul {
    list-style: inside;
    display: grid;
    column-count: 2;
}

.StrategySlider .ContentBox .TextBox ul li{
    break-inside: avoid;
}

.StrategySliderSingle {
    margin-right: 20px;
}

.StrategySlider .ContentBox:hover {transition: 0.3s;background: #15222B;}

.StrategySlider .ContentBox:hover p, .StrategySlider .ContentBox:hover ul, .StrategySlider .ContentBox:hover h4 {
    color: #fff;
    transition: 0.3s;
}

.HomeSec-04 {
    background: linear-gradient(
331deg, rgba(141, 25, 26, 0.06), rgba(87, 0, 1, 0.06));
    padding-top: 111px;
}

.HomeSec-04 .text h3 {
    text-align: center;
    color: var(--LightRed);
    font-size: 20px;
}

.HomeSec-04 .text h2 {text-align: center;margin: 20px 0 70px;font-size: 56px;line-height: normal;}

.StrategyBox{
    position:relative;
    padding-top:222px;
}

.StrategyBox .text h4 {
    color: #181034;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.StrategyBox .text p {
    color: #818181;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.StrategyBox .TextBox.Box3, .StrategyBox .TextBox.Box2 {
    text-align: right;
    flex-direction: row-reverse;
}
.StrategyBox .TextBox{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.StrategyBox .TextBox.Box1 {
    text-align: center;
    flex-direction: column-reverse;
    gap: 25px;
    max-width: 600px;
    top:0;
    left:50%;
    transform:translateX(-50%);
}

.StrategyBox .TextBox.Box3, .StrategyBox .TextBox.Box5 {
    gap: 17px;
    max-width:460px;
}

.StrategyBox .TextBox.Box2, .StrategyBox .TextBox.Box4 {
    gap: 47px;
    max-width:500px;
}

.StrategyBox .TextBox.Box4, .StrategyBox .TextBox.Box5{
    right:0;
}

.StrategyBox .TextBox.Box4{
    top:220px;
    right:110px;
}

.StrategyBox .TextBox.Box2{
    top:220px;
    left:110px;
}

.StrategyBox .TextBox.Box5{
    right:0;
    top:48%;
    transform:translateY(-48%);
}

.StrategyBox .TextBox.Box3{
    top:48%;
    transform:translateY(-48%);
}

.Sub-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 380px 0 218px;
}

.Sub-banner .text h1 {
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.Sub-banner .text p {
    color: var(--white);
    line-height: 26px;
    font-weight: 500;
}

.Sub-banner .text {
    position: relative;
}

.Sub-banner .text::after {
    right: auto;
    left: 200px;
    bottom: 50%;
    top: unset;
    transform: translateY(50%);
    height: 406px;
    width: 406px;
    z-index: 1;
}

.Sub-banner .text::before {
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.Sub-banner .text h1, .Sub-banner .text p {
    z-index: 2;
}

.aboutSec-01 {background-image: url(../images/aboutSecBg.png);background-repeat: no-repeat;background-position: bottom right;padding: 142px 0 128px;background-color: #F6F6F7;}

.aboutSec-01 .text h2 {
    margin-bottom: 17px;
}

.aboutSec-01 .imgBox .text {background: #F6F6F7;max-width: 545px;margin-left: -300px;padding: 12px 0px 0px 28px;}

.aboutSec-01 .imgBox {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.aboutSec-01 .imgBox img {
    min-width: max-content;
}

.aboutSec-01 .imgBox .text p {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.aboutSec-01 .imgBox .text p:last-child {
    padding: 0;
    margin: 0;
    border: 0;
}

.aboutSection .text h3 {
    font-size: 20px;
    margin-bottom: 9px;
}

.serviceSec-01 {
    padding: 144px 0;
}

.serviceSec-01 .imgBox.rightfloat {
    justify-items: end;
}

.serviceSec-01 .row {
    row-gap: 144px;
}

.serviceSec-01 .text h2 {
    margin: 9px 0 17px;
    color: #242A3C;
}

.serviceSec-01 .text h3 {
    font-size: 20px;
    color: #242A3C;
}

.serviceSec-01 .text p, .serviceSec-01 .text ul, .serviceSec-01 .text a {
    color: #242A3C;
    font-size: 18px;
    line-height: 24px;
}

.serviceSec-01 .text ul {
    list-style: disc;
    margin-left: 30px;
}

.modal-dialog {
    max-width: 90%;
    width: fit-content;
}

#videoModal .modal-header {
    padding: 0;
    background: transparent;
    border: 0;
}

#videoModal .modal-content {
    background: transparent;
    border: 0;
}

#videoModal .modal-header button.close {
    position: absolute;
    background: black;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border: 1px solid black;
    color: #fff;
    left: unset;
    right: 0;
    top: 0;
    z-index: 9;
    border-radius: 100%;
    opacity: 1;
}

#videoModal .modal-body {
    padding: 0;
}

.videoBox .playIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 182px;
    width: 182px;
    background: var(--LightRed);
    border-radius: 100%;
    color: var(--white);
    font-size: 37px;
    line-height: 0;
    outline: none !important;
}

.videoBox {
    position: relative;
    width: fit-content;
}

.solutionLastBanner {
    padding: 140px 0;
    color: var(--white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.solutionLastBanner .text {
    max-width: 795px;
    margin: auto;
}

.solutionLastBanner .text p {
    margin: 17px 0 40px;
}

.solutionLastBanner .text .TwoBox {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.americanSec-01 {
    padding-top: 144px;
}

.americanSec-01 .text {
    max-width: 1058px;
    margin: auto;
}

.americanSec-01 .text h2 {
    margin-bottom: 17px;
}

.americanSec-01 .text p {
    font-size: 22px;
    line-height: normal;
    font-weight: 500;
}

.SolutionInner-01 .VideoCards {
    margin-top: 40px;
}

.SolutionInner-01 .VideoCards .row {
    row-gap: 23px;
}

.SolutionInner-01 .VideoCards .v-cards {
    height: 100%;
    background: #F3F3F3;
    transition: 0.3s;
}

.SolutionInner-01 .VideoCards .v-cards:hover {
    transition: 0.3s;
    background: #15222B;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox {
    width: 100%;
    max-height: 430px;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox img {
    width: 100%;
    height: -webkit-fill-available;
}

.SolutionInner-01 .VideoCards .v-cards .text {
    padding: 20px 37px 32px;
}

.SolutionInner-01 .VideoCards .v-cards .text h4 {
    color: #222327;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    transition: 0.3s;
}

.SolutionInner-01 .VideoCards .v-cards .text ul, .SolutionInner-01 .VideoCards .v-cards .text p {
    color: #242A3C;
    font-size: 18px;
    line-height: 33px;
    font-weight: 400;
    list-style: inside;
    transition: 0.3s;
}

.SolutionInner-01 .VideoCards .v-cards:hover .text ul, .SolutionInner-01 .VideoCards .v-cards:hover .text p, .SolutionInner-01 .VideoCards .v-cards:hover .text h4 {
    transition: 0.3s;
    color: #fff;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox .playIcon {
    height: 138px;
    width: 138px;
}

.resourcessec-01 {
    padding: 144px 0;
}

.resourcessec-01 .row {
    row-gap: 23px;
}

.resoursecards {
    height: 100%;
    background: #F3F3F3;
    transition: 0.3s;
}

.resoursecards:hover {
    transition: 0.3s;
    background: #15222B;
}

.resoursecards .imgBox {
    max-height: 330px;
    overflow: hidden;
}

.resoursecards .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resoursecards .text {
    padding: 27px 44px 42px;
}

.resoursecards .text h4 {
    margin: 23px 0;
    color: #222327;
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    transition: 0.3s;
}

.resoursecards .text span {
    color: #242A3C;
    transition: 0.3s;
    font-size: 18px;
}

.resoursecards .text a, .resoursecards .text a span {
    color: #8D191A;
    font-size: 20px;
    font-weight: 400;
}

.resoursecards .text a span {font-weight: 600;margin-right: 10px;transition: 0.3s;text-decoration: underline;}

.resoursecards:hover .text h4 {
    color: #ffffff;
    transition: 0.3s;
}

.resoursecards:hover .text a, .resoursecards:hover .text a span, .resoursecards:hover .text span {
    transition: 0.3s;
    color: #fff;
}

.resoursecards .text a:hover span{
    transition: 0.3s;
    margin-right:0;
}

.LoadMoreButtonBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.LoadCards{
    display: none;
}

.OurTeamSec-01 {
    background: #F3F3F3;
}

.padding144{
    padding: 144px 0 !important;
}

.OurTeamSec-01 .text {
    margin-bottom: 21px;
}

.OurTeamSec-01 .row {
    row-gap: 43px;
    justify-content: center;
}

.OurTeamSec-01 .imgBox {
    width: 100%;
    height: 100%;
    position: relative;
}

.OurTeamSec-01 .imgBox img {
    width: 100%;
    max-height: 476px;
    object-fit: cover;
    object-position: center;
}

.OurTeamSec-01 .contentBox {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.OurTeamSec-01 .contentBox .text {
    margin: 0;
    position: relative;
}

.OurTeamSec-01 .contentBox .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 10px;
    padding-left: 20px;
    color: var(--white);
    padding-right: 30px;
}

.ourteam.serviceSec-01 .text p {
    margin-bottom: 20px;
}

.OurTeamSec-01 h4 {
    font-family: var(--MainFont);
    font-size: 18.48px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22.3px;
    color: var(--white);
}

.OurTeamSec-01 p {
    font-family: var(--MainFont);
    font-size: 14px;
    font-weight: 400;
    line-height: 22.3px;
    text-transform: capitalize;
    color: var(--white);
}

.OurTeamSec-01 .col-lg-3 {
    padding-right: 21.5px;
    padding-left: 21.5px;
}

.ourteamform {
    background-color: #F3F3F3;
}

.formSec .text h3 {
    font-size: 20px;
    color: #242A3C;
}

.formSec .text h2 {
    color: #242A3C;
    margin: 9px 0 17px;
}

.formSec p {
    margin: auto;
    max-width: 630px;
    color: #242A3C;
    height:100%;
}

.formSec form {
    margin-top: 46px;
}

.formSec form input, .formSec form textarea, .formSec form select {
    padding-bottom: 11px;
    width: 100%;
    border-bottom: 1px solid rgba(37, 37, 37, 0.5);
    font-size: 20px;
    font-family: var(--MainFont);
    color: var(--black);
    height: 100%;
}

.formSec form .col {
    padding: 0;
}

.formSec form .row {
    gap: 48px;
    margin-bottom: 51px;
}

.formSec form textarea {
    min-height: 173px;
}

.formSec form .row:last-child {
    margin-bottom: 0;
}

.formSec form  .submitBox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.formSec form .custom-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(37, 37, 37, 0.5);
  padding-bottom: 11px;
  height: 100%;
}

.formSec form .file-text{
    font-size: 20px;
    font-family: var(--MainFont);
    color: var(--black);
}

.formSec form .custom-file label.file-btn {
    margin: 0;
    background: #D7D7D7;
    border-radius: 6px;
    padding: 12px 25px;
    color: #222327;
    font-size: 20px;
    font-weight: 500;
    line-height: 18px;
    cursor: pointer;
}

.formSec .container-fluid {
    padding: 0 20px;
    margin: auto;
    max-width: 1382px;
}

.careersec-01 .text h2 {
    margin-bottom: 60px;
}

.careersec-01 .col-lg-6 .text {
    border: 1px solid #570001;
    border-radius: 20px;
    padding: 41px 41px 41px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
        min-height: 169px;
    height: 100%;
}

.careersec-01 .col-lg-6 .text:hover {
    transition: 0.3s;
    background: linear-gradient(
130deg, #8D191A, #570001);
}

.careersec-01 .col-lg-6 .text p {
    color: #222327;
    transition: 0.3s;
    font-size: 40px;
    line-height: 43.2px;
    font-weight: 700;
    max-width: 400px;
}

.careersec-01 .col-lg-6 .text:hover p {
    transition: 0.3s;
    color: #fff;
}

.careersec-01 .col-lg-6 .text:hover .t-btn {
    background: white;
    color: #222327;
}

.careersec-01 .col-lg-6 .text:hover .t-btn path {
    stroke: #222327;
}

.careersec-01 .rowGap {
    row-gap: 40px;
}

.careersec-01 .rowGap .col-lg-6 {
    padding: 0 22.5px;
}

.contactsec-01 .col-lg-4 .text h4 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 43.2px;
    margin: 56px 0 18px;
    transition: 0.3s;
}

.contactsec-01 .col-lg-4 .text {
    padding: 54px 80px 89px 80px;
}

.contactsec-01 .col-lg-4 .text:hover h4 {
    transition: 0.3s;
    color: #222327;
}

.contactsec-01 .col-lg-4 .text a {
    font-size: 26px;
    font-weight: 400;
}

.contactsec-01 .secondRow {
    margin-top: 50px;
}

.contactsec-01 .secondRow .col-lg-4 {
    padding: 0px 22px;
}

.contactsec-01 .col-lg-12 .text {
    margin: auto;
    max-width: 630px;
}

.contactsec-01 .col-lg-12 .text p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.contactsec-01 .col-lg-12 .text h2 {
    margin: 9px 0 17px;
}
.wpcf7-submit {
    color: #fff !important;
    padding: 20px 40px !important;
    cursor: pointer;
}

.serviceSec-01 .videoBox video {
    width: 100%;
}

.serviceSec-01 .videoBox  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.serviceSec-01 .videoBox .video-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serviceSec-01 .videoBox {
    margin-right: 132px;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox video {
    width: 100%;
    height: 434px;
    object-fit: contain;
    background: black;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox {
    position: relative;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox .video-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 434px;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox .video-overlay img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

header .TwoBox .MainMenu li ul {
    position: absolute;
    top: 100%;
    left: 0%;
    transform: translate(0%, 20px);
    min-width: max-content;
    padding: 10px 20px;
    border-radius: 7px;
    background: #fff;
    border: 1px solid #8D191A;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

header .TwoBox .MainMenu li {
    position: relative;
}

header .TwoBox .MainMenu li ul a {
    color: #000;
    font-size: 14px;
}

header .TwoBox .MainMenu li:hover ul {transition: 0.3s;visibility: visible;opacity: 1;transform: translate(0%, 0px);}

.StrategySlider .slick-track {
    display: flex;
}

.StrategySlider .slick-track .StrategySliderSingle {
    height: stretch;
    display: flex;
}

.resoursecards .imgBox img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.resoursecards .imgBox {
    height: 330px;

}

.mob-menu-logo-holder {
    margin-left: 0 !important;
}

footer .text .InfoBox ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-direction: row;
}

footer .text .InfoBox ul a {
    border-radius: 100%;
    height: 40px;
    border:1px solid transparent;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
        background: linear-gradient(120deg, #8D191A, #570001);
    color: #fff;
    transtion:0.3s all;
}
footer .text .InfoBox ul a:hover {
    background:transparent;
    border:1px solid #8D191A;
    transtion:0.3s all;
}

@media only screen and (max-width:1700px){
header .TwoBox a img {
    max-width: 350px;
}

.StrategyBox {
    max-width: 1200px;
    margin: auto;
}

.StrategyBox .TextBox {
    gap: 10px !important;
}

.StrategyBox .TextBox img {
    max-width: 150px;
}

.StrategyBox .TextBox.Box1 {
    top: 0px;
}

.StrategyBox .TextBox.Box2 {
    left: -60px;
    top: 230px;
}

.StrategyBox .TextBox.Box4 {
    right: -60px;
    top: 230px;
}

.StrategyBox .TextBox.Box3 {
    top: 400px;
    transform: unset;
    left: -100px;
}

.StrategyBox .TextBox.Box5 {
    top: 400px;
    transform: unset;
    right: -100px;
}

.StrategyBox .text h4 {
    font-size: 25px;
    line-height: normal;
}

.StrategyBox .text p {
    font-size: 16px;
    line-height: normal;
}

.StrategyBox .TextBox.Box3, .StrategyBox .TextBox.Box5 {
    max-width: 430px;
}
}
@media only screen and (max-width:1600px){
    header .TwoBox .MainMenu {
    gap: 15px;
    margin-top: 35px;
}
header .TwoBox a img {
    max-width: 250px;
    
}
header .TwoBox .MainMenu .t-btn {
    padding: 15px 20px;
    margin: 0;
}

header .TwoBox .MainMenu .t-btn a{
    font-size:14px;
}

.HomeSec-01 .ImgBox img {
    max-width: 100%;
}

section.HomeSec-02 {overflow: hidden;padding: 100px 0;}

.Herobanner {
    padding: 250px 0 100px;
}

h1 {
    font-size: 70px;
    line-height: 80px;
}

.HomeSec-01, .HomeSec-03, .HomeSec-05, .HomeSec-06, .HomeSec-07, .HomeSec-08 {
    padding: 100px 0;
}

.HomeSec-01 .ImgBox .LabelBox {
    top: 5%;
    left: -80px;
}

.HomeSec-01 .ImgBox .LabelBox h4 {
    font-size: 40px;
    line-height: normal;
}

.HomeSec-01 .ImgBox .LabelBox p {
    font-size: 16px;
    margin: 0;
}

h2 {
    font-size: 35px;
    line-height: normal;
}

.text h3 {
    font-size: 20px;
    line-height: normal;
}

.text p {
    font-size: 16px;
    line-height: normal;
}

.HomeSec-01 .text p {
    margin: 20px 0;
}

.t-btn, .wpcf7-submit {
    padding: 15px 30px;
    font-size: 16px;
    line-height: normal;
}

.HomeSec-02 .text h2 {
    font-size: 45px;
    line-height: normal;
}

.ServiceSlider {
    margin-top: 50px;
    max-width: 100%;
}

.ServiceSlider .ContentBox .TwoBox {
    padding: 10px 10px 20px;
}

.ServiceSlider .ContentBox h3 {
    font-size: 20px;
    line-height: normal;
}

.ServiceSlider .ContentBox .TwoBox a {
    height: 80px;
    min-width: 80px;
}

.HomeSec-03 .text.BorderLine, .contactsec-01 .col-lg-4 .text {
    padding: 40px 20px;
}

.HomeSec-03 .text.BorderLine p, .contactsec-01 .col-lg-4 .text p, .contactsec-01 .col-lg-4 .text a {
    margin-top: 20px;
    font-size: 20px;
    line-height: normal;
}

.HomeSec-04 {
    padding-top: 100px;
}

.HomeSec-05 .text h2 {
    margin-bottom: 30px;
}

.HomeSec-07 .text h2 {
    font-size: 40px;
    line-height: normal;
    margin-bottom: 10px;
    margin-top: 10px;
}

.TestimonialSlider p {
    font-size: 20px;
}

.TestimonialSlider {
    max-width: 100%;
}
footer .text ul {
    line-height: normal;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .text ul a {
    min-width: max-content;
    display: block;
    margin: 0;
}

footer .col-lg-8 .col-lg-4:nth-child(2) .text {
    padding-left: 30px;
}

footer {
    padding-top: 100px;
}

footer .LastFooter {
    margin-top: 50px;
    padding: 20px 10px;
}

.Sub-banner {
    padding: 260px 0 130px;
}

.aboutSec-01 .imgBox .text {
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.aboutSec-01 .imgBox {
    height: 100%;
    align-items: center;
}

.aboutSec-01 .imgBox .text h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.aboutSec-01 .imgBox .text p {
    font-size: 15.4px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.aboutSec-01 .imgBox .text {
    max-width: 300px;
    padding: 10px 0px 0px 20px;
}

.aboutSec-01 .imgBox {
    position: relative;
}

.aboutSec-01 .imgBox img {
    min-width: 0;
}
.serviceSec-01 .videoBox {
    margin: 0;
}
.SolutionInner-01 .VideoCards .v-cards .videoBox video, .SolutionInner-01 .VideoCards .v-cards .videoBox .video-overlay {
    height: 300px;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox .playIcon {
    height: 80px;
    width: 80px;
}
.careersec-01 .col-lg-6 .text p {
    font-size: 25px;
    line-height: normal;
}

.t-btn, .wpcf7-submit {
    max-width: max-content;
    min-width: max-content;
}
}
@media only screen and (max-width:1440px){
    
    .OurTeamSec-01 .col-lg-3 {
    padding-right: 10px;
    padding-left: 10px;
}
    
    .resoursecards .imgBox {
    height: 200px;
}
    
    footer .text ul {
    font-size: 13px;
}
    
    .HomeSec-07 .container-fluid {
    max-width: 1000px;
}
    .container-fluid {
    padding: 0 70px;
}

.Herobanner  h1 {
    max-width: 500px;
}

header .TwoBox .MainMenu {
    gap: 10px;
}

header .TwoBox .MainMenu a {
    font-size: 14px;
}

.Herobanner .text {
    max-width: 100%;
}

.StrategyBox .TextBox img {
    max-width: 90px;
}

.StrategyBox {
    max-width: 950px;
    padding-top: 150px;
}

.StrategyBox .text h4 {
    margin-bottom: 5px;
    font-size: 22px;
}

.StrategyBox .text p {
    font-size: 14px;
}

.StrategyBox .TextBox.Box2, .StrategyBox .TextBox.Box4 {
    max-width: 330px;
}

.StrategyBox .TextBox.Box3, .StrategyBox .TextBox.Box5 {
    max-width: 330px;
}

.StrategyBox .TextBox.Box2 {
    top: 120px;
    left: 20px;
}

.StrategyBox .TextBox.Box4 {
    top: 120px;
    right: 30px;
}

.StrategyBox .TextBox.Box3 {top: 270px;left: -80px;}

.StrategyBox .TextBox.Box5 {
    top: 270px;
    right: -80px;
}

.HomeSec-05 .CounterBox h4 {
    font-size: 45px;
    line-height: normal;
}

.HomeSec-05 .CounterBox p {
    font-size: 16px;
}

.StrategySlider .ContentBox .TextBox {
    padding: 20px 15px;
}

.StrategySlider .ContentBox .TextBox h4 {
    font-size: 22px;
    line-height: normal;
}

.StrategySlider .ContentBox .TextBox p, .StrategySlider .ContentBox .TextBox ul {
    font-size: 16px;
}
header .container-fluid.LeftPad0 {
    padding-left: 0 !important;
}
.Sub-banner {
    padding: 220px 0 80px;
}

.padding144, .aboutSec-01 {
    padding: 100px 0 !important;
}
.serviceSec-01 .row {
    row-gap: 80px;
}
.americanSec-01 {
    padding-top: 100px;
}
.resoursecards .text {
    padding: 20px;
}

.resoursecards .text h4 {
    margin: 10px 0;
    font-size: 20px;
    line-height: normal;
}

.resourcessec-01 {
    padding-bottom: 50px !important;
}
.OurTeamSec-01 p {
    font-size: 10px;
}

.OurTeamSec-01 h4 {
    font-size: 16px;
}

.OurTeamSec-01 .contentBox .content {
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
}

.formSec form .col {
    padding: 0 15px;
}

.contactsec-01 .col-lg-4 .text h4 {
    FONT-SIZE: 25PX;
    margin: 10px 0;
}

.formSec {
    padding-bottom: 50px !important;
}
}
@media only screen and (max-width:1199px){
    .contactsec-01 .secondRow .col-lg-4 {
    padding: 0px 10px;
}
    .formSec form .col.msg p {
    margin: 0 !important;
}
    .formSec form textarea {
    height: 200px;
}
    
    
    .RightPad0 {
    padding-right: 15px;
}
    
        .container-fluid {
    padding: 0 20px;
}
    
    header .TwoBox a img {
    max-width: 170px;
}

header .TwoBox .MainMenu {
    margin-top: 30px;
}

header .TwoBox .MainMenu a {
    font-size: 14px;
}

header .TwoBox .MainMenu .t-btn {
    padding: 10px 15px;
}

.Herobanner {
    padding: 190px 0 60px;
    overflow: hidden;
}

.BannerTextEffect .text::after {
    width: 400px;
    height: 400px;
    left: 0px;
}
.col-12 {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}
.HomeSec-01 .text {
    padding: 0;
    padding-bottom: 40px;
}

.HomeSec-05, .HomeSec-07, .HomeSec-08 {
    padding: 50px 0;
}

footer .col-lg-8 .col-lg-4:nth-child(1) .text {
    margin-left: -30px;
}
.HomeSec-01 .ImgBox {
    padding-left: 150px;
}

.HomeSec-01 .ImgBox .LabelBox {
    left: 0;
}

.aboutSec-01 .imgBox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.serviceSec-01 .row .col-12:nth-child(1) {
    order: 1;
}

.serviceSec-01 .row .col-12:nth-child(2) {
    order: 2;
}

.serviceSec-01 .row .col-12:nth-child(3) {
    order: 4;
}

.serviceSec-01 .row .col-12:nth-child(4) {
    order: 3;
}

.serviceSec-01 .row {
    row-gap: 40px;
}
.solutionSec-01 .row .col-12:nth-child(1) {
    order: 1;
}
.solutionSec-01 .row .col-12:nth-child(2) {
    order: 2;
}
.solutionSec-01 .row .col-12:nth-child(3) {
    order: 4;
}
.solutionSec-01 .row .col-12:nth-child(4) {
    order: 3;
}
.solutionSec-01 .row .col-12:nth-child(5) {
    order: 5;
}
.solutionSec-01 .row .col-12:nth-child(6) {
    order: 6;
}
.solutionSec-01 .row .col-12:nth-child(7) {
    order: 8;
}
.solutionSec-01 .row .col-12:nth-child(8) {
    order: 7;
}
.solutionSec-01 .row .col-12:nth-child(9) {
    order: 9;
}
.solutionSec-01 .row .col-12:nth-child(10) {
    order: 10;
}
.solutionSec-01 .row .col-12:nth-child(11) {
    order: 12;
}
.solutionSec-01 .row .col-12:nth-child(12) {
    order: 11;
}
.solutionSec-01 .row .col-12:nth-child(13) {
    order: 13;
}
.solutionSec-01 .row .col-12:nth-child(14) {
    order: 14;
}
.SolutionInner-01 .VideoCards .v-cards .text {
    padding: 10px 15px;
}

.SolutionInner-01 .VideoCards .v-cards .text h4 {
    font-size: 20px;
    margin: 0;
}

.SolutionInner-01 .VideoCards .v-cards .text ul {
    font-size: 16px;
    line-height: inherit;
}

.SolutionInner-01 .VideoCards .v-cards .videoBox video, .SolutionInner-01 .VideoCards .v-cards .videoBox .video-overlay {
    height: 200px;
}
}
@media only screen and (max-width:1024px){
    header {
    display: none;
}
#mobmenuright .t-btn {padding: 0 !important;margin-left: 10%;border: 1px solid #fff;}

ul#mobmenuright a {
    font-family: 'Space Grotesk' !important;
}
.mobmenu-content li {
    padding-left: 0 !important;
}

.mob-expand-submenu i {
    font-size: 16px !important;
}
.mobmenu-content #mobmenuright .sub-menu {
    padding-left: 10% !important;
}
.Herobanner, .Sub-banner{
    padding: 60px 0 !important;
}

.HomeSec-01, .HomeSec-03, .HomeSec-05, .HomeSec-06, .HomeSec-07, .HomeSec-08, .padding144, .aboutSec-01 {
    padding: 50px 0 !important;
}

section.HomeSec-02 {
    padding: 50px 0;
}

section.Sub-banner.BannerTextEffect.single .text h1 {
    padding-top: 0 !important;
}

.HomeSec-04 {
    padding-top: 50px;
}

.HomeSec-04 .text h2 {margin-bottom: 30px;font-size: 35px;line-height: normal;}

.StrategyBox {max-width: 750px;padding-top: 110px;}

.StrategyBox .TextBox img {
    max-width: 50px;
}

.StrategyBox .text h4 {
    font-size: 18px;
}

.StrategyBox .text p {
    font-size: 12px;
}

.StrategyBox .TextBox.Box4 {
    right: -77px;
}

.StrategyBox .TextBox.Box2 {
    left: -83px;
}

.StrategyBox .TextBox.Box3, .StrategyBox .TextBox.Box5 {
    max-width: 290px;
}

.StrategyBox .TextBox.Box5 {
    top: 220px;
    right: -90px;
}

.StrategyBox .TextBox.Box3 {
    top: 220px;
    left: -90px;
}

h2 {
    font-size: 25px;
}

.HomeSec-06 .text h2 {
    margin-bottom: 40px;
}

.StrategySlider ul.slick-dots {
    bottom: -60px;
}

.HomeSec-02 .text h2 {
    font-size: 40px;
}

h1 {
    font-size: 50px;
    line-height: 55px;
}
}
@media only screen and (max-width:991px){
    
    .container-fluid .row.align-items-center {
    row-gap: 30px;
}
    .HomeSec-05 .CounterBox {
    align-items: center;
}

.HomeSec-05 .row {
    row-gap: 20px;
}
h1 {
    font-size: 40px;
    line-height: normal;
}

.BannerTextEffect .text p {
    margin: 20px 0;
}

.HomeSec-02 .text p {padding: 0;}

.HomeSec-02 .text.DividerLine::after {
    content: none;
}

.HomeSec-03 .row {
    row-gap: 20px;
}

footer {
    padding-top: 50px;
}

footer .col-lg-8 .col-lg-4:nth-child(1) .text {
    margin: 0;
}

footer .col-lg-8 .col-lg-4:nth-child(2) .text {
    padding: 0;
}

footer .row {
    row-gap: 40px;
}

footer .text h3 {
    margin-bottom: 10px;
}

footer .text .InfoBox p {
    font-size: 16px;
}

footer .text .InfoBox {
    margin: 0;
}
.Sub-banner .text p {
    margin: 0;
}

.aboutSec-01 .row {
    row-gap: 40px;
}
.resoursecards img {
    width: 100%;
    object-position: center !important;
    object-fit: cover;
    height: 100%;
    display: block;
}

.resoursecards .imgBox {
    height: 250px;
}
.formSec form textarea {min-height: 0;height: 150px !important;}

.wpcf7-spinner {
    position: absolute;
    bottom: 0;
}

.formSec p {
    position: relative;
}

.formSec form .col.msg p {
    margin: 0;
}

.formSec form .row {
    gap: 0px;
    margin-bottom: 20px;
}

.formSec form input, .formSec form textarea, .formSec form select {
    font-size: 16px;
    line-height: normal;
}
.HomeSec-03 .text.BorderLine img, .contactsec-01 .col-lg-4 .text img {
    max-width: 50px;
}

.contactsec-01 .secondRow {
    row-gap: 20px;
}

.formSec form .col.msg p {
    margin: 0;
}

}
@media only screen and (max-width:767px){
    
    .careersec-01 .rowGap {
    row-gap: 10px;
}
    .resoursecards .imgBox {
    height: 150px;
}
    h1 {
    font-size: 30px;
}

section.Herobanner h3 {
    font-size: 16px;
}

section.Herobanner ul {
    font-size: 14px;
    margin-left: 15px;
}

.Herobanner .text .TwoBox {
    align-items: flex-start;
    gap: 10px;
            flex-wrap: wrap;
}

.t-btn svg , .wpcf7-submit svg  {
        margin-left: 5px;
        height: 10px;
        width: 12px;
}
.HomeSec-05 .row:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.HomeSec-01 .text a.t-btn.BtnBlack {
    margin-top: 20px;
}

.HomeSec-02 .BtnBox {
    margin-top: 80px;
}

footer .LastFooter p {
    max-width: 260px;
    margin: auto;
}
#mobmenuright .t-btn {
    margin-left: 20px;
    margin-top: 10px;
    border-radius: 10px;
}
.Herobanner .text .TwoBox a {
    text-align: center;
}

h2 {
    font-size: 20px;
}

.text h3 {
    font-size: 18px;
    padding: 0 !important;
    padding-bottom: 3px !important;
}

.HomeSec-01 .text p {
    margin: 10px 0;
}

.text p, .serviceSec-01 .text p, .serviceSec-01 .text ul, .serviceSec-01 .text a {
    font-size: 14px;
    line-height: normal !important;
}

.t-btn, .wpcf7-submit {
    font-size: 15px !important;
}

.HomeSec-01 .ImgBox .LabelBox {
    padding: 3px 5px 3px 20px;
}

.HomeSec-01 .ImgBox .LabelBox h4 {
    font-size: 12px;
}

.HomeSec-01 .ImgBox .LabelBox p {font-size: 8px;letter-spacing: 1px;line-height: normal;}

.HomeSec-02 .text h2 {font-size: 25px;margin: 10px 0;}

.ServiceSlider {
    min-width: 0;
}


.ServiceSliderSingle {
    margin: 0;
}

.ServiceSlider .ContentBox .TwoBox a {
    height: 40px;
    width: 40px;
    min-width: 40px;
}

.ServiceSlider .ContentBox h3 {
    font-size: 17px;
}

.ServiceSlider .ContentBox .TwoBox a svg {
    height: 20px;
    width: 20px;
}

.HomeSec-02 .BtnBox {
    padding: 0;
    display: flex;
    justify-content: center;
}

.ServiceSlider ul.slick-dots {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.ServiceSlider ul.slick-dots li, .TestimonialSlider ul.slick-dots li, .StrategySlider ul.slick-dots li {
    min-height: 20px;
    min-width: 20px;
}

.HomeSec-03 .text {
    margin-bottom: 30px;
}

.HomeSec-03 .text h2 {
    margin: 10px 0;
}

.HomeSec-04 .text h2 {
    font-size: 25px;
    margin: 10px 0;
}

.StrategyBox .TextBox {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    bottom: unset !important;
    right: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    transform: unset !important;
    flex-direction:column !important;
        text-align:center !important;
}

.ContentBoxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.StrategyBox {
    padding-top: 10px;
}

.HomeSec-05 .CounterBox h4 {
    font-size: 20px;
}

.HomeSec-05 .CounterBox p {
    font-size: 15px;
    line-height: normal;
            text-align: center;
}
.StrategySliderSingle {
    margin: 0;
}

.TestimonialSlider p {
    padding: 16px 0;
    font-size: 16px;
    line-height: normal;
}

.HomeSec-07 .text h2 {
    font-size: 25px;
}

.TestimonialSlider .twoBox img {
    height: 50px;
    width: 50px;
}

.HomeSec-08 p {
    margin: 14px 0;
}
.HomeSec-01 .ImgBox {
    padding-left: 20px;
}
.text h3 {
    font-size: 15px;
}
.Sub-banner {
    padding: 40px 0 !important;
}

.aboutSec-01 .imgBox .text {
    padding: 0;
    position: relative;
    padding-top: 20px;
}
.videoBox .playIcon {
    height: 50px;
    width: 50px;
    font-size: 15px;
}
.americanSec-01 {
    padding-top: 50px;
}

.americanSec-01 .text p {
    font-size: 16px;
}
.formSec form .col {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

.formSec form .row {
    row-gap: 20px;
}

.formSec form .col.msg p {
    margin: 0 !important;
}

.wpcf7-submit {
    padding: 15px 30px !important;
}

.formSec p {
    font-size: 14px;
    line-height: normal;
}
.OurTeamSec-01 p {
    font-size: 10px !important;
}
.careersec-01 .col-lg-6 .text {flex-direction: column;align-items: start;gap: 20px;padding: 20px;min-height: 0;}

.careersec-01 .col-lg-6 .text p {
    font-size: 18px;
}

section.Sub-banner.BannerTextEffect.single .text h1 {
    font-size: 25px !important;
}

section.singlepage {
    padding: 50px 0 !important;
}

section.singlepage p {
    font-size: 14px !important;
}

section.singlepage ul {
    margin-left: 20px !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}
.StrategySlider ul.slick-dots {
    bottom: -45px;
}
.ContentBoxes {
    padding-bottom: 20px;
}

.HomeSec-05 .row .col-lg-3 {
    border: 0;
}
section.singlepage h3 {
    font-size: 18px;
    margin: 10px 0;
}
.Sub-banner .text h1 {
    margin-bottom: 0;
}

.Sub-banner {
    padding-top: 70px !important;
}

.StrategySlider .ContentBox .TextBox h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.StrategySlider .ContentBox .TextBox p, .StrategySlider .ContentBox .TextBox ul {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 5px !important;
}

.StrategySlider .ContentBox img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}
}