/********** Template CSS **********/
:root {
    --primary: #f85000;
    --secondary: #d8510b;
    --light: #F2F2F2;
    --dark: #1D2833;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

p {
    line-height: 1.7;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
   font-weight: 600 !important;
    font-size: 18px;
    line-height: 30px;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 8px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}




/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-round.png),
        url(../img/bg-round-2.png),
        url(../img/bg-square.png),
        url(../img/bg-line.png),
        url(../img/bg-bottom-hero.png);
    background-position:
        0px 40%,
        right 0 top 0,
        left 50% top 0,
        left 50% top 50%,
        center bottom -1px;
    background-repeat: no-repeat;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 11px;
    bottom: 0;
    left: 0;
    border-top: 1px solid #5A5A5A;
    border-bottom: 1px solid #5A5A5A;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    bottom: 5px;
    left: 0;
    background: var(--primary);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -30px;
}

.section-title.text-center::after {
    width: 120px;
    left: 50%;
    margin-left: -60px;
}


/*** Domain Search ***/
.domain {
    background: url(../img/bg-domain.png) center center no-repeat;
    background-size: contain;
}


/*** Comparison ***/
@media (min-width: 992px) {
    .comparison::after {
        position: absolute;
        content: "";
        width: 1px;
        top: 56px;
        bottom: 20px;
        left: 50%;
        background: #DDDDDD;
    }
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #f7f7f7 !important;
    border-color: var(--secondary) !important;
    border-radius: 10px;
}

.testimonial-carousel .owl-item.center .testimonial-item .position-absolute {
    background: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/

.footer p {
    font-size: 20px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 15px 0;
    font-size: 15px;
}

.footer .copyright a {
    color: var(--light);
    display: inline-block;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*-------New Style--------*/

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0;
    background: #232323;
    width: 100%;
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}

.top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0;
}

.top-bar-info li i {
    font-size: 20px;
    color: #fff;
    margin-right: 12px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom;
}

.form-wrapper {
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 33px #8881815e;
}

.form-wrapper>h3 {
    color: #000;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin: 10px 0;
}

.demo-form {
    margin-top: 50px;
}

#contactForm {
    margin-top: -10px;
    margin-left: 20px;
    margin-right: 20px;
}

.form-group {
    margin: 10px 0 0 0;
    position: relative;
}

button.home-abt {
    background: #ffffff !important;
    border-color: #d8510b;
    color: #d8510b !important;
    min-width: 240px;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 30px !important;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 2.4rem !important;
}

.form-control,
.form-group .form-control {
    border: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#009688), to(#009688)), -webkit-gradient(linear, left top, left bottom, from(#D2D2D2), to(#D2D2D2));
    background-image: -webkit-linear-gradient(#009688, #009688), -webkit-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: -o-linear-gradient(#009688, #009688), -o-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: linear-gradient(#009688, #009688), linear-gradient(#D2D2D2, #D2D2D2);
    -webkit-background-size: 0 2px, 100% 1px;
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center -webkit-calc(100% - 1px);
    background-position: center bottom, center calc(100% - 1px);
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: background 0s ease-out;
    -o-transition: background 0s ease-out;
    transition: background 0s ease-out;
    float: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

#contactForm .form-control {
    font-weight: 400;
    height: auto;
    color: #9e9e9e;
    font-size: 15px;
    border: none;
}

.form-group .form-control {
    margin-bottom: 15px;
}

.yellow-custom {
    color: #d8510b;
}

.form-wrapper>h3:after {
    content: '';
    display: block;
    position: absolute;
    border-bottom: 5px solid #d8510b;
    margin: 0 auto;
    width: 236px;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    bottom: -15px;
    z-index: -1;
}

/*------------New Style Start------------*/
#contactForm .form-group label.control-label {
    color: #9e9e9e;
    font-size: 14px;
    display: none;
}

.form-group.label-floating.is-focused label.control-label,
.form-group.label-floating:not(.is-empty) label.control-label,
.form-group.label-static label.control-label {
    top: -30px;
    left: 0;
    font-size: 12px;
    line-height: 1.07142857;
}

.form-group.label-floating label.control-label,
.form-group.label-placeholder label.control-label,
.form-group.label-static label.control-label {
    position: absolute;
    pointer-events: none;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
}

.form-group label.control-label {
    font-size: 12px;
    line-height: 1.07142857;
    font-weight: 400;
    margin: 16px 0 0 0;
}

.app-banner-area {
    padding: 30px 0;
    background-color: #fff1ee;
    position: relative;
    background-image: url(../img/Banner-Project-line.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100%;
}

.servicebox-wrapper:hover {
    /* background-color: #ff4719 !important; */
}

.servicebox-wrapper:hover h4 {
    color: #ffffff;
}

.servicebox-wrapper:hover p {
    color: #ffffff;
}

.expertise-wrapper {
    position: relative;
    background-color: #ff4719;
    padding: 30px 0;
}

.section-bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
}

h2.banner-heading {
    line-height: 1.5;
    font-size: 33px;
    color: #333333;
    margin-bottom: 30px;
}

h2.banner-heading span {
    font-weight: 700;
    background-color: #f45305;
    padding: 0 10px;
    color: #fff;
    display: block;
    margin-top: 15px;
    font-size: 30px;
}

.banner-subheading {
    color: #333333;
    line-height: 1.5;
    font-size: 18px;
}

.lightgray-bg {
    background-color: #f7f7f7;
}


.section-3 p {
    line-height: 1.7;
}

.demo-button {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    color: #000000;
    font-weight: 600;
    display: inline-block;
}

.icon-wt-img {
    width: 50px;
}

.feature-iconwrap {
    width: 80px;
    position: relative;
    padding: 10px;
    background-color: #f85000;
    margin-bottom: 15px;
}

.partner-logo-img {
    width: auto !important;
}

.bottom-contact {
    font-size: 20px;
    font-weight: 600;
}

.Requirement-form label {
    display: none;
}

.Requirement-form input::placeholder,
.Requirement-form textarea::placeholder {
    color: #a7a7a7;
}

.Requirement-form .form-control {
    padding: .375rem .75rem .375rem 0;
}

ul.points-list-item {
    list-style: none;
    padding: 0;
}

ul.points-list-item li {
   position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #dee2e6;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: left;
}

ul.points-list-item li:before {
    content: "\f00c";
    color: #f85000;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 15px;
    left: 5px;
    z-index: 1;
}

.Business-icon {
    width: 50px;
}

.title-icon-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.title-icon-wrap h5 {
    margin-left: 20px;
}

ul.footer-bottom-text {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.slide-para-btn-1:focus {
    outline: none;
    box-shadow: none;
}

.slide-para-btn-2:focus {
    outline: none;
    box-shadow: none;
}

.slide-para-btn-3:focus {
    outline: none;
    box-shadow: none;
}

.slide-para-btn-4:focus {
    outline: none;
    box-shadow: none;
}

.slide-para-1 {
    display: none;
}

.slide-para-2 {
    display: none;
}

.slide-para-3 {
    display: none;
}

.slide-para-4 {
    display: none;
}

.orange-btn {
    color: #ff4719;
    text-transform: uppercase;
    font-weight: 600;
}

.schedule-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-support-box {
    margin-left: 25%;
}

.demo-click-wrap {
    background-color: #ff4501;
    position: relative;
}

.demo-click-heading {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    /* text-align: center; */
}
.demo-click-paragraph 
{
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 15px;
}

.readpoint-area .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
}

.readpoint-area .accordion-item {
    background-color: transparent;
    border: none;
}

.readpoint-area .accordion-button:focus {
    border-color: none !important;
    outline: 0;
    box-shadow: none !important;

}


.readpoint-area .accordion-button::after {
    display: none;
}

.readpoint-area .accordion-button {
    justify-content: center;
    padding: 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff4719;
}

.display.glass {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
}


/*-------------Media Query--------------*/

@media (max-width: 1199px) {
    .form-wrapper>h3 {
        font-size: 18px;
    }

    .expert-title {
        font-size: 20px;
    }

    .key-industries h5 {
        font-size: 17px;
    }

    .reason-title {
        font-size: 20px;
    }

    h2.banner-heading {
        font-size: 32px;
    }

    .title-icon-wrap {
        flex-direction: column;
    }

    .title-icon-wrap h5 {
        margin-left: 0px;
        margin-top: 10px;
    }
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    h2.banner-heading span {
        font-size: 30px;
    }

    .custom-support-box {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
	
	.demo-button {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    color: #000000;
    font-weight: 600;
    display: inline-block;
    font-size: 15px !important;
}
.custom-container {
    padding-top: 1rem !important;
}
.top-bar-info li i {
    font-size: 12px;
}
.custom-container {
    padding-top: 1rem !important;
}
.bottom-contact {
    font-size: 16px !important;
    font-weight: 600;
}
.footer p {
    font-size: 16px !important;
}
.last-img
{
display:none;
}
.top-bar-info li {
        font-weight: 500;
        color: #fff;
        list-style-type: none;
        font-size: 12px !important;
        padding: 0 0px 0;
        display: inline-block;
        margin-bottom: 0;
       align-content: center;
        
}
    img.main-logo.img-fluid.dymamics-log {
        margin: 5px 0px 10px 0px;
        flex-wrap: wrap;
        justify-content: center;
        display: flex !important; 
    }

     img.main-logo.img-fluid.microsoft-log {
        margin: 5px 60px 10px 0px;
       
    }

    h2.banner-heading span {
        font-size: 18px;
    }
	h1.banner-heading {
    font-weight: 700 !important;
    font-size: 21px !important;
    line-height: 33px !important;
}
.form-wrapper h2 {
    color: #000;
    text-align: center;
    font-size: 18px !important;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin: 10px 0;
}
h3.heading-mb-3 {
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 30px !important;
}
h3.heading-mb-3-white {
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 35px !important;
    color: #fff !important;
}
.inoday-logo {
    display: block;
    margin: 30px 0px 15px 0px !important;
}
.custom-container
{
flex-wrap: wrap;
justify-content: center;
}
    h2.banner-heading {
        font-size: 30px;
    }

    .key-industries h5 {
        font-size: 18px;
    }

    .demo-click-heading {
        font-size: 17px;
    }

    .stats-item {
        text-align: center;
    }
}

@media (max-width: 500px) {
    h2.banner-heading {
        font-size: 23px;
    }

    h2.banner-heading span {
        font-size: 20px;
    }

    .banner-subheading {
        font-size: 16px;
    }
}

@media (min-width: 992px) {

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}


.inner-cta 
		{
        border-radius: 2%;
        }
		.cont-wrap-cta {
    display: inline-block;
    max-width: 100%;
}
.img-wrap-cta {
    display: inline-block;
    min-height: 68px;
}

.item-cta .inner-cta {
    border-radius: 50%;
    padding: 35px 0px 0px;
    text-align: center;
}
.cont-wrap-cta img {
    max-width: 80px;
    min-height: 80px;
}
.item-cta .count-wrap-cta {
    padding: 0px 0px 5px;
}
.item-cta .count-wrap-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    width: 100%;
}

h4.count-wrap-cta {
    color: #183762;
    letter-spacing: 0;
    line-height: 1.5;
    font-size: 20px;
}

h4.mb-1.expert-title 
{
    font-size: 16px;
}

h1.banner-heading {
    font-weight: 700 !important;
    font-size: 30px;
    line-height: 50px;
}
.form-wrapper h2 {
    color: #000;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin: 10px 0;
}

h3.heading-mb-3
{
font-weight: 600 !important;
    font-size: 30px;
    line-height: 50px;
}
h3.heading-mb-3-white
{
font-weight: 600 !important;
    font-size: 30px;
    line-height: 50px;
	color:#fff;
}

.inoday-logo {
    display: inline-block;
}
header .inoday-logo img {
  height: 85px;
}

.thankyou-page ._header {
    background: #f8f7f2db; 
    padding: 65px 30px;
    text-align: center;
  /* background: #f8f7f2db url(https://inoday.com/wp-content/uploads/2025/02/bg-inoday-thank-you.png) center/cover repeat;  */
} 
.thankyou-page ._header .logo {
    max-width: 120px;
    margin: 0 auto 20px;
}
.thankyou-page ._header .logo img {
    width: 100%;
}
.thankyou-page ._header h1
 {
font-size: 30px;
    font-weight: 800;
    color: #d8510b;
    margin: 0;
	  letter-spacing: 1px;
}
.thankyou-page ._body {
   margin: -40px 0 30px;
}
.thankyou-page ._body ._box {
    margin: auto;
    max-width: 80%;
    padding: 50px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 0 35px rgba(10, 10, 10,0.12);
    -moz-box-shadow: 0 0 35px rgba(10, 10, 10,0.12);
    -webkit-box-shadow: 0 0 35px rgba(10, 10, 10,0.12);
}
.thankyou-page ._body ._box h2 
{
    margin: 0;
    color: #1f365c;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}
._footer {
    text-align: center;
    padding: 50px 30px;
}

._footer .btn {
    background: #1ac61a;
    color: white;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 45px;
    letter-spacing: 0.8px;
    padding: 20px 33px;
    text-transform: uppercase;
}
.thank-you-social ul 
{
    margin: 0 0 0px 0px;
}
._footer h4
{
	 margin: 0 0 20px 0px;
   color: #1f365c;
}
.wp-block-social-links {
    background: none;
    box-sizing: border-box;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    text-indent: 0
}

.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover {
    border-bottom: 0;
    box-shadow: none;
    text-decoration: none
}

.wp-block-social-links .wp-social-link a {
    padding: .25em
}

.wp-block-social-links .wp-social-link svg {
    height: 1em;
    width: 1em
}

.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
    font-size: .65em;
    margin-left: .5em;
    margin-right: .5em
}

.wp-block-social-links.has-small-icon-size {
    font-size: 16px
}

.wp-block-social-links,.wp-block-social-links.has-normal-icon-size {
    font-size: 24px
}

.wp-block-social-links.has-large-icon-size {
    font-size: 36px
}

.wp-block-social-links.has-huge-icon-size {
    font-size: 48px
}

.wp-block-social-links.aligncenter {
    display: flex;
    justify-content: center
}

.wp-block-social-links.alignright {
    justify-content: flex-end
}

.wp-block-social-link {
    border-radius: 9999px;
    display: block;
    height: auto;
    transition: transform .1s ease
}

@media (prefers-reduced-motion:reduce) {
    .wp-block-social-link {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.wp-block-social-link a {
    align-items: center;
    display: flex;
    line-height: 0;
    transition: transform .1s ease
}

.wp-block-social-link:hover {
    transform: scale(1.1)
}

.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited {
    fill: currentColor;
    color: currentColor
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
    background-color: #f0f0f0;
    color: #444
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
    background-color: #f90;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
    background-color: #1ea0c3;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
    background-color: #0757fe;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
    background-color: #1e1f26;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
    background-color: #02e49b;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
    background-color: #e94c89;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
    background-color: #4280ff;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
    background-color: #f45800;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
    background-color: #1778f2;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
    background-color: #000;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
    background-color: #0461dd;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
    background-color: #e65678;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
    background-color: #24292d;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
    background-color: #eceadd;
    color: #382110
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
    background-color: #ea4434;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
    background-color: #f00075;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
    background-color: #e21b24;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
    background-color: #0d66c2;
    color: #fff;
	display:inline-block;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
    background-color: #3288d4;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
    background-color: #02ab6c;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
    background-color: #f6405f;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
    background-color: #ff424d;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
    background-color: #e60122;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
    background-color: #ef4155;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
    background-color: #ff4500;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
    background-color: #0478d7;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
    stroke: #000;
    background-color: #fefc00;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
    background-color: #ff5600;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
    background-color: #1bd760;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
    background-color: #2aabee;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-threads,.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
    background-color: #000;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
    background-color: #011835;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
    background-color: #6440a4;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
    background-color: #1da1f2;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
    background-color: #1eb7ea;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
    background-color: #4680c2;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
    background-color: #3499cd;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-whatsapp {
    background-color: #25d366;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-x {
    background-color: #000;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
    background-color: #d32422;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
    background-color: red;
    color: #fff
}

.wp-block-social-links.is-style-logos-only .wp-social-link {
    background: none
}

.wp-block-social-links.is-style-logos-only .wp-social-link a {
    padding: 0
}

.wp-block-social-links.is-style-logos-only .wp-social-link svg {
    height: 1.25em;
    width: 1.25em
}

.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
    color: #f90
}

.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
    color: #1ea0c3
}

.wp-block-social-links.is-style-logos-only .wp-social-link-behance {
    color: #0757fe
}

.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
    color: #1e1f26
}

.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
    color: #02e49b
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
    color: #e94c89
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
    color: #4280ff
}

.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
    color: #f45800
}

.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
    color: #1778f2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
    color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
    color: #0461dd
}

.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
    color: #e65678
}

.wp-block-social-links.is-style-logos-only .wp-social-link-github {
    color: #24292d
}

.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
    color: #382110
}

.wp-block-social-links.is-style-logos-only .wp-social-link-google {
    color: #ea4434
}

.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
    color: #f00075
}

.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
    color: #e21b24
}

.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
    color: #0d66c2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
    color: #3288d4
}

.wp-block-social-links.is-style-logos-only .wp-social-link-medium {
    color: #02ab6c
}

.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
    color: #f6405f
}

.wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
    color: #ff424d
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
    color: #e60122
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
    color: #ef4155
}

.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
    color: #ff4500
}

.wp-block-social-links.is-style-logos-only .wp-social-link-skype {
    color: #0478d7
}

.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
    stroke: #000;
    color: #fff
}

.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
    color: #ff5600
}

.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
    color: #1bd760
}

.wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
    color: #2aabee
}

.wp-block-social-links.is-style-logos-only .wp-social-link-threads,.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
    color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
    color: #011835
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
    color: #6440a4
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
    color: #1da1f2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
    color: #1eb7ea
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vk {
    color: #4680c2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-whatsapp {
    color: #25d366
}

.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
    color: #3499cd
}

.wp-block-social-links.is-style-logos-only .wp-social-link-x {
    color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
    color: #d32422
}

.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
    color: red
}

.wp-block-social-links.is-style-pill-shape .wp-social-link {
    width: auto
}

.wp-block-social-links.is-style-pill-shape .wp-social-link a {
    padding-left: .66667em;
    padding-right: .66667em
}

.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label {
    color: #000
}
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-x {
    background-color: #000;
    color: #fff;
    display: inline-block;
}
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
    background-color: red;
    color: #fff;
    display: inline-block;
}


@media (max-width: 1024px) { 

}
.box-height 
{
min-height: 303px;
}
img.main-logo.img-fluid.dymamics-log {
    margin-right: 15px;
}
p.privacy {
    color: #040404;
    font-size: 14px;
}
button#submit {
    margin-bottom: 15px;
}
header#header 
{
margin-top: 40px;
}
.top-bar {
    display: block;
    padding: 7px 0;
    background: #eb4314;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000;
}


header .navbar .main-logo img {
  height: 85px;
}

.logo-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}


@media (max-width: 767px) {
  .top-bar-info {
 
    text-align: center;
  }

  .top-bar-info li a[href^="mailto:"] {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
  }
   .logo-wrapper {
    justify-content: center;
    align-items: center;
  }
header .logo-group {
        text-align: center;
    }
}

@media (max-width: 450px){
    header#header {
        margin-top: 62px;
    }
}