@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
:root {
    --theme-color: #575757;
    --theme-prim: #01b4d7;
    --theme-secon: #080303;
    --black-color: #000;
    --yellow-color: #FAFF1A;
    --red-color: #FE0000;
    --orange-color: #f15d28;
    --light-green: #54b352;
    --shadow-color: rgb(0, 0, 0, 0.25);
    --white-color: #fff;
    --gray-color: #dad9d9;
    --gray-dark: #e4e3e3;
    --font-bootstrap-icon: 'bootstrap-icons';
}

body {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--theme-color);
}

.ShowOverlayDesk {
    position: relative;
    width: 100%;
    height: 100vh;
}

.ShowOverlayDesk::before {
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9;
    transition: all 0.8s;
    animation: fadeIn 0.8s;
    -webkit-animation: fadeIn 0.8s;
    -moz-animation: fadeIn 0.8s;
    -o-animation: fadeIn 0.8s;
    -ms-animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a,
button,
.btn {
    transition: all 0.8s;
}

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

input,
input:focus,
input:active,
select:focus,
select:active,
option:focus,
option:active,
textarea:focus,
textarea:active,
button:focus,
button:active,
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active,
.form-control:focus,
.form-control:active {
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    margin: 0px;
    padding: 0px;
}

h1,
.h1 {
    font-size: 50px;
    color: var(--theme-secon);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h2,
.h2 {
    font-size: 35px;
    color: var(--theme-secon);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h3,
.h3 {
    font-size: 25px;
    color: var(--theme-secon);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h4,
.h4 {
    font-size: 22px;
    color: var(--theme-secon);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h5,
.h5 {
    font-size: 20px;
    color: var(--theme-secon);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h6,
.h6 {
    font-size: 18px;
    color: var(--theme-secon);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

a,
a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    color: var(--theme-color);
}

a:hover {
    color: var(--theme-color);
}

img {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    max-width: 100%;
}

p a {
    color: var(--theme-color);
}

p a:hover {
    color: var(--theme-color);
}

p {
    line-height: 32px;
    margin-bottom: 15px;
}

p strong {
    font-family: var(--font-medium);
}

ol li {
    list-style-type: decimal;
    padding-bottom: 10px;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.main-nav {
    background: var(--gradiand-bg);
}

header .main-nav-top.fixedheader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    padding: 8px 0;
    animation: slide-down 0.7s;
    -moz-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
    -o-animation: slide-down 0.7s;
    -ms-animation: slide-down 0.7s;
    border-radius: 0;
    z-index: 3;
}

.navbar-brand {
    position: relative;
    z-index: 99;
}

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    right: 10px;
    bottom: 30px;
    overflow: hidden;
    padding: 12px;
}

.scroll-top-wrapper .scroll-top-inner {
    color: var(--white-color);
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 44px;
    border-radius: 50%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-secon);
    border: 1px solid var(--white-color);
}

.scroll-top-wrapper .scroll-top-inner i {
    font-size: 26px;
}

.scroll-top-wrapper:hover .scroll-top-inner {
    background: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

/* ::-webkit-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

::-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
} */

.section-title .h1 {
    display: block;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: var(--font-medium);
    position: relative;
}

.section-title.btm-line .h1:before {
    width: 60%;
    height: 0px;
    border-bottom: 5px dotted var(--theme-background);
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    right: 0;
    margin: auto;
}

section,
footer {
    width: 100%;
    padding: 50px 0;
}

.btn-primary {
    position: relative;
    color: var(--theme-secon);
    border: 2px solid var(--theme-secon);
    background: var(--white-color);
    padding: 12px 30px;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.8s;
}
.btn-primary::after,
.btn-primary::before{
    position: absolute;
    content: '';
    width: 80%;
    height: 6px;
    background: var(--theme-prim);   
}
.btn-primary::before{
    top: -8px;
    left: 10%;
}
.btn-primary::after{
    bottom: -8px;
    left: 10%;
}
.btn-primary:focus,
.btn-primary:hover {
    background: var(--theme-secon);
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-secondary {
    background: var(--theme-secon);
    border-radius: 10px;
    font-size: 16px;
    color: var(--white-color);
    border: 2px solid var(--theme-secon);
    padding: 12px 30px;
    transition: all 0.8s;
}

.btn-secondary:focus,
.btn-secondary:hover {
    background: var(--theme-prim);
    color: var(--white-color);
    border: 2px solid var(--theme-prim);
}
.btn-primary i,
.btn-secondary i{
    padding-right: 10px;
}
.headerTop{
    background: var(--gray-color);
    padding: 5px 0;
}
.headerTop a{
   color: var(--theme-prim);
   font-weight: 400;
}
.headerTop a:hover{
   color: var(--black-color);
}
.headerTop a i{
    padding-right: 10px;
 }
.HeaderNav {
    padding: 5px 0px;
    width: 100%;
    background: var(--theme-prim);
}

header .fixedheader {
    position: fixed;
    width: 100%;
    background: var(--theme-prim);
    z-index: 9;
    left: 0;
    top: 0;
    box-shadow: 0 0 5px rgb(236, 236, 236, 0.5);
    animation: slide-down 0.5s;
    border-radius: 0px;
    border: var(--white-color);
}
.TopRight img{
    margin-left: 5px;
    transition: all 0.8s;
}
.TopRight img:hover{
    transform: scale(1.2);
    opacity: 0.8;
}

.fixedheader .navbar-brand img {
    width: 60px;
    transition: all 0.8s;
}
.fixedheader .navbar-expand-lg .navbar-nav{
    padding-top: 10px;
}
.HeaderNav.fixedheader #navbarTogglerDemo {
    margin-top: -15px;
    padding-bottom: 0px;
}

.main-nav .dropdown {
    position: inherit;
}
.main-nav .navbar {
    padding-right: 15px;
}

.main-nav .navbar .nav-item>a {
    padding: 15px 35px;
    margin-left: 1px;
    display: block;
    color: var(--white-color);
    font-weight: 400;
    position: relative;
    transition: all 1s;
    font-size: 22px;
    border: 1px solid transparent;
}

.main-nav .navbar .nav-item a:hover,
.main-nav .navbar .nav-item.active a {
    color:var(--white-color);
    border: 1px solid var(--white-color);
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 0;
    width: 120%;
    border-radius: 0px;
    transition: all 0.8s;
    animation: 0.8s slide-up;
    background: var(--white-color);
    left: 0;
    border: none;
}
.dropdown-menu .row{
    border: 1px solid var(--gray-dark-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: var(--gray-color);
}
.navbar-expand-lg .navbar-nav .dropdown-menu li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid var(--gray-dark-color);
}

@keyframes slide-up {
    from {
        margin-top: 20px;
        height: 100%;
    }
    to {
        margin-top: 0%;
        height: 100%;
    }
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child a {
    border-bottom: none;
}
.navbar-nav>.dropdown>a::after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: .255em;
    content: "";
    position: relative;
    top: 2px;
    border: solid var(--black-color);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.navbar-nav>.dropdown>a:hover::after{
    border: solid var(--white-color);
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 4px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
}

.ScheduleBox{
    margin-right: 30px;
    height: 50px;
    width: 110px;
}
.ScheduleBox .bi{
    padding-right: 10px;
}

.main-nav .navbar .nav-item .dropdown-menu .fistSchild a{
    font-size: 20px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid var(--theme-secon);
    
}
.main-nav .navbar .nav-item .dropdown-menu a{
    border-right: none;
    font-size: 16px;
}
.main_slider {
    padding: 0px 0 0px 0;
}

.main_slider .carousel-caption {
    position: absolute;
    top: 25%;
    left: 0;
    padding: 40px;
    max-width: 100%;
    width: 100%;
    z-index: 9;
}

#slider .container {
    position: relative;
}

#slider .TxtBox {
    text-align: left;
    position: relative;
    width: 100%;
}
#slider .item {
    padding: 28% 0;
    background-repeat: no-repeat !important;
    background-position: bottom center !important;
    background-size: cover !important;
}

#slider .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.5);
    z-index: 1;
}

#slider .TxtBox h1{
    font-size: 80px;
    color: var(--white-color);
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
#slider .TxtBox ul{
    margin: 40px 0 60px;
}
#slider .TxtBox ul li {
    color: var(--white-color);
    font-size: 25px;
    padding-bottom: 10px;
    padding-left: 30px;
    font-weight: 300;
    font-weight: normal;
    position: relative;
}
#slider .TxtBox li::before {
    position: absolute;
    content: '';
    width: 23px;
    height: 23px;
    border-radius: 50%;
    left: 0;
    margin-left: 0;
    top: 11px;
    border: 2px solid var(--white-color);
}
#slider .TxtBox li::after {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: 4px;
    margin-left: 0;
    top: 15px;
    border: 2px solid var(--white-color);
    background-color: var(--white-color);
}

.Homeslider .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
}

.Homeslider .owl-nav .left-arrow,
.Homeslider .owl-nav .right-arrow {
    width: 45px;
    height: 45px;
    background: var(--theme-btn-bg);
    color: var(--white-color);
    font-size: 25px;
    line-height: 40px;
    border: none;
    border-radius: 50%;
    border: 2px solid var(--white-color);
}

.Homeslider .owl-nav .left-arrow {
    position: absolute;
    left: 50px;
}

.Homeslider .owl-nav .right-arrow {
    position: absolute;
    right: 50px;
}

.Homeslider .owl-nav .left-arrow:hover,
.Homeslider .owl-nav .right-arrow:hover {
    background: var(--theme-color);
}

.navbar-brand,
.navbar-brand img {
    transition: all 0.8s;
}


.main-nav .navbar-nav.HeaderLeft .nav-item a {
    padding: 0;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #D7B5A6;
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    margin-right: 10px;
    font-size: 20px;
}

.FtSocial a:hover,
.main-nav .navbar-nav.HeaderLeft .nav-item a:hover {
    background-color: var(--black-color);
}

.FtSocial a img,
.main-nav .navbar-nav.HeaderLeft .nav-item a img {
    width: 18px;
    margin-top: -2px;
}

#slider .owl-dots button {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white-color);
    opacity: 1;
    position: relative;
    margin: 0 3px;
    padding: 0;
    /*transition:all 0.4s;*/
}

#slider .owl-dots button.active {
    width: 15px;
    height: 15px;
    background: var(--yellow-color);
    opacity: 1;
}

#slider .owl-dots button span {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: none;
    position: absolute;
    font-size: 0;
}

#slider .owl-dots {
    z-index: 9;
    position: absolute;
    width: 100%;
    bottom: 30px;
}

/* ------------ Our Services css ------------ */
.TitleCenter{text-align: center;}
.TitleCenter span {
    color: var(--theme-secon);
    font-size: 65px;
    font-weight: 500;
    position: relative;    
}
.TitleCenter span::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    bottom: -8px;
    left: 0;
    background-color: var(--theme-prim);
}
.TitleCenter span::after {
    position: absolute;
    content: '';
    width: 23px;
    height: 23px;
    border-radius: 50%;
    bottom: -18px;
    left: 50%;
    background-color: var(--theme-prim);
    border: 5px solid var(--white-color);
}
.ServicesBox {
    padding: 0px;
    position: relative;
    height: 100%;
    z-index: 1;
    transition: all 1s;
}
.ServicesBox figure:nth-child(1) {
    width: 70%;
}
.ServicesBox figure:nth-child(2) {
    width: 50%;
    position: absolute;
    bottom: -35%;
    right: 0;
}
.ServicesBox img {
    width: 100%;
    box-shadow: 0 0 12px #b0b0b0 ;
}
.ServicesBox figure:nth-child(3) {
    width: 100%;
    position: absolute;
    bottom: -20%;
    right: 0;
    text-align: center;
}
.ServicesBox figure:nth-child(3) img{
    width: auto;
}
.TaxServiceRight {padding-left: 40px;}
.flex-row-reverse .TaxServiceRight {
    padding-left: 15px;
    padding-right: 40px;
}
.TaxServiceRight p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    color: var(--theme-color);
    line-height: 28px;
}

.TaxServiceRight h3 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 40px;
    padding-top: 40px;
    margin-left: -160px;
    position: relative;
}
.Serviceswrapper2{
    background-color: var(--gray-dark);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50% 100%;
    margin-top: 150px;
    margin-bottom: 50px;
    position: relative;
}
.Serviceswrapper2 h3 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 40px;
}
.Serviceswrapper2 img{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
/* -------- Technology css ------- */
.DigitalMarketing{
    background-image: url(../images/techbg.png);
    background-color: var(--gray-dark);
    background-repeat: no-repeat;
}
.DigitalMarketing h3{
    font-size: 50px;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    padding-bottom: 15px;
}
.DigitalMarketing p{
    font-size: 18px;
}

.SeviceList {
    background: var(--white-color);
    padding: 40px;    
    box-shadow: 0 0 12px #b0b0b0;
}
.SeviceList h4{
    font-size: 24px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}
.SeviceList figure{
    height: 94px;
    overflow: hidden;
    transition: all 1s;
}
.SeviceList:hover img{
   margin-top: -94px;
}
.ServiceWrapp{
    text-align: center;
    padding-top: 40px;
    transition: all 1s;
}
.ServiceWrapp figure{
    width: 85%;
    margin: 40px auto 0;
}
.ServiceWrapp figure img{
    width: 100%;
    border-bottom: 10px solid var(--theme-prim);
    transition: all 1s;
}
.ServiceWrapp:hover figure img{
    transform: scale(1.05);
}
/* -------- Why choose us css ------- */
.Whychoose{
    background: var(--gray-dark);
}
.Whychoose h3 {
    font-size: 50px;
    font-weight: 500;
    text-align: center;
  }
.Whychoose img{
    width: 100%;
    border: 3px solid var(--theme-prim);
    border-radius: 10px;
  }
.WhychooseRight ul li {
    color: var(--white-color);
    font-size: 22px;
    padding-bottom: 10px;
    padding-left: 30px;
    font-weight: 300;
    font-weight: normal;
    position: relative;
    color: var(--black-color);
}
.WhychooseRight ul li::before {
    position: absolute;
    content: '';
    width: 23px;
    height: 23px;
    border-radius: 50%;
    left: 0;
    margin-left: 0;
    top: 9px;
    border: 2px solid var(--black-color);
}
.WhychooseRight ul li::after {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: 5px;
    margin-left: 0;
    top: 13px;
    border: 2px solid var(--black-color);
    background-color: var(--black-color);
}
/* -------- Get Starts css ------- */
.GetStarts{
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 100px 0;
    border-top: 5px solid #cccadad9;
}
.GetStarts h3{
    font-size: 50px;
    font-weight: 500;
  }
.GetStarts .btn-primary{
    padding: 18px 35px;
  }


/* ------------ About page css ------------ */
.BlackTitle {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
}
#slider .InnerBanner .item{
    padding: 20% 0;
}
#slider .InnerBanner .item h2{
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white-color);
    font-size: 55px;
    font-weight: bold;
}
.main_slider .InnerBanner  .carousel-caption{
    top: 30%;
}
.abLeftBar img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px #c8c4c4;
}
.OurVisionWrapp{
    background-image: url(../images/OurVision.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.OurMissionWrapp{
    background-image: url(../images/OurMissionbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.OurMissionWrapp p{
   color: var(--theme-secon);
}
/* ------------ Service page css ------------ */
.ServiceTxtBox{
    background-color: var(--white-color);
    box-shadow: 0 0 10px #bdb9b9;
    border-radius: 15px;
    padding: 30px;
    margin-left: -150px;
}
.ServiceTxtBox .BlackTitle{
    margin-bottom: 10px;
}
/* ------------ FAQs page css ------------ */
.Faqsbox .accordion-button{
    position: relative;
    font-size: 23px;
    padding-left: 40px;
    color: var(--theme-secon);
}
.Faqsbox .accordion-button::before {
    position: absolute;
    content: '';
    width: 23px;
    height: 23px;
    border-radius: 50%;
    left: 5px;
    margin-left: 0;
    top: 22px;
    border: 2px solid var(--black-color);
}
.Faqsbox .accordion-button::after {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: 10px;
    margin-left: 0;
    top: 26px;
    border: 2px solid var(--black-color);
    background-color: var(--black-color);
}
.Faqsbox .accordion-item {
    border: none;
}
/* ------------ Contact page css ------------ */
.ContactForm{
    width: 80%;
    margin: 0 auto;
    padding: 40px 30px;
    background: #f5f6f6;
}
.ContactForm input,  
.ContactForm textarea{    
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 0;
} 
.ContactForm .SubmitBtn{    
    padding: 13px 10px;
    width: 400px;
    color: var(--white-color);
    border: none;
    transition: all 0.8s;
    background: var(--theme-prim);
}
.ContactForm .SubmitBtn:hover{   
    color: var(--white-color);
    background: var(--black-color);
}
.newsTxt{display: flex; flex-flow: wrap;}
.newsTxt input{
    width: calc(100% - 155px);
    font-size: 16px;
    border: none;
    padding: 15px;
}
.newsTxt button{
    width: 150px;
    padding: 10px;
    font-size: 22px;
    font-weight: bold;
    margin-left: 5px;
    color: var(--white-color);
    background: var(--theme-secon);
    text-transform: uppercase;
    border: none;
}
.newsTxt button:hover{
    color: var(--white-color);
    background: #04c9ef;
}
.NewsletterBox{
    padding: 80px 0;
}
.containerBox{
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-flow: wrap;
}
.ContBox{
    width: 40%;
    margin: 0 5%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px var(--gray-dark);
}
.ContBox i{
   font-size: 50px;
   margin-bottom: 20px;
   color: var(--theme-prim);
}

/* ------------ Footer css ------------ */

#footer {
    background-image: url(../images/techbg.png);
    background-color: var(--gray-dark);
    background-repeat: no-repeat;
    background-size: cover;
}
.ftr-hdng{
    color: var(--white-color);
    font-size: 30px;
    margin-bottom: 30px;
}
#footer p,
#footer p a{
    color: var(--white-color);
    font-size: 18px;
}
#footer p i,
#footer p a i{
    padding-right: 7px;
}
.SocialLink{display: flex;}
.SocialLink img{margin-right: 20px;}
.SocialLink a:hover img{
    transform: scale(1.1);
}
.Subscribe {
    border-bottom: 1px solid #7ed9eb;
    margin-top: 20px;
  }
.Subscribe input {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 16px;
    width: calc(100% - 25px);
}
.Subscribe input::placeholder {
    opacity: 1;
    color: var(--white-color);
}
.Subscribe i {   
    color: var(--white-color);
}
.copyright {
    padding: 15px 0;
    background: var(--gray-dark);
}
.copyright a {
    color: var(--theme-prim);
    font-weight: 400;
    position: relative;
    padding: 0 10px;
}
.copyright a:hover {
    color: var(--black-color);
    
}
.copyright a::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 7px;
    width: 2px;
    height: 15px;
    background: var(--theme-prim);
}
.copyright a:last-child:after {
    display: none;
}
input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.form-control {
    width: 100%;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.bi.bi-envelope-fill{width: 20%;display: inline-block;text-align: center;background: #fff;color: #000;
    border-radius: 5px;}
input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email{width: 78%;display: inline-block;}
span.wpcf7-spinner {display: none;}

.newsTxt .form-email {width: auto !important;}
.newsTxt .form-button{width: 150px;padding: 12px;font-size: 22px;font-weight: bold;margin-left: 5px;color: var(--white-color);background: var(--theme-secon);
    text-transform: uppercase;border: none;}
.newsTxt .form-button:hover {color: var(--white-color);background: #04c9ef;}