#bannerbtn1 {
    display: none;
}

@media (max-width: 768px) {
    #bannerbtn1 {
        display: inline-block;
    }
}

#headtext {
    display: none;
    font-size: 26px;
}

@media (max-width: 768px) {
    #headtext {
        display: block;
        font-size: 26px;

    }
}

#bannercontent {
    display: none;
}

@media (max-width: 768px) {
    #bannercontent {
        display: block;
        word-spacing: -2px;
    }
}

.ptb-1200 {
    padding-top: 50px;
    padding-bottom: 20px;
}

.hr {
    border-top: 1px solid #cecece;
    margin: 25px 0;
}

.copyterms1 {
    padding-left: 10px;
    padding-right: 8px;
    line-height: 1.9rem;
    font-size: 15px;
}

.copy-terms {
    padding-left: 10px;
}

#copy-terms {
    text-align: left;
}

#copy-policy {
    text-align: right;
}

@media only screen and (min-width:320px) and (max-width:767px) {
    .copyterms1 {
        padding-left: 0px;
        padding-right: 5px;
        line-height: 1.9rem;
        font-size: 15px;
    }

    #copy-right {
        text-align: center;
    }

    #copy-policy {
        text-align: center;
    }
}


#dropline2 {
    border-bottom: 2px solid #175cff;
    width: 50px;
    margin-left: 2px;
    height: 5px;
    margin-bottom: 15px;
    margin-top: -28px;
}

.lead {
    text-align: left;
    word-spacing: 3.5px;
    font-size: 17px;
}

#usefullinks {
    color: #000;
}

.single-cta i {
    color: #ff5e14;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;

}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #fff;
    font-size: 15px;
}


.facebook-bg {
    background: #3b5998;
}

.twitter-bg {
    background: #55acee;
}

.google-bg {
    background: #dd4b39;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 16px 28px;
    background: whitesmoke;
    border: 1.5px solid #919191;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #1da1f2;
    padding: 18px 20px;
    border: 1px solid #919191;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #fff;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.social_icon {
    text-align: right;
    margin: 0;
    margin-top: 3px;
}

.social_icon li {
    display: inline-block;
    margin: 0 5px;
}

.social_icon li a {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 100%;
    transition: 0.2s ease-in-out;
}

.social_icon li a i {
    font-size: 15px;
    line-height: 20px;
}

.social_icon li:nth-child(1) a {
    background: #4267b2;
    color: #fff;
}

.social_icon li:nth-child(2) a {
    background: #334c87;
    color: #fff;
}

.social_icon li:nth-child(3) a {
    background: #f09433;
    background: -moz-linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    background: -webkit-linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    background: linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
    color: #fff;
}

.social_icon li:nth-child(4) a {
    background: #ff0000;
    color: #fff;
}

.social_icon li:nth-child(1):hover a {
    background: #fff;
    color: #4267b2;
}

.social_icon li:nth-child(2):hover a {
    background: #fff;
    color: #1da1f2;
}

.social_icon li:nth-child(3):hover a {
    background: #fff;
    color: #bc1888;
}

.social_icon li:nth-child(4):hover a {
    background: #fff;
    color: #ff0000;
}

/* From Uiverse.io by adamgiebl */
button {
    font-family: inherit;
    font-size: 20px;
    background: royalblue;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;

}

button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

button:hover span {
    transform: translateX(5em);
}

button:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}



@media only screen and (max-width: 480px) {
    #mobileloader {
        margin-top: -22px;
    }
}

@media only screen and (max-width: 480px) {
    #mobileloader {
        font-size: 39px;
    }
}

@keyframes jumpIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    30% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-loader__letter {
    display: inline-block;
    font-size: 2.4rem;
    opacity: 0;
    animation: jumpIn 0.6s ease forwards;
    animation-delay: calc(0.1s * var(--i));
}

.page-loader__letter:nth-child(1) {
    color: #000;
    --i: 0;
}

.page-loader__letter:nth-child(2) {
    color: #000;
    --i: 1;
}

.page-loader__letter:nth-child(3) {
    color: #000;
    --i: 2;
}

.page-loader__letter:nth-child(4) {
    color: #000;
    --i: 3;
}

.page-loader__letter:nth-child(5) {
    color: #000;
    --i: 4;
}

.page-loader__letter:nth-child(6) {
    color: #000;
    --i: 5;
}

.page-loader__letter:nth-child(7) {
    color: #000;
    --i: 6;
}

.page-loader__letter:nth-child(8) {
    color: #000;
    --i: 7;
}

.page-loader__letter:nth-child(9) {
    color: #000;
    --i: 8;
}

.page-loader__letter:nth-child(10) {
    color: #000;
    --i: 9;
}

.page-loader__letter:nth-child(11) {
    color: #000;
    --i: 10;
}

.page-loader__letter:nth-child(12) {
    color: #000;
    --i: 11;
}

#mobileloader {
    font-weight: 600;
}


#contactsndbtn {
    float: right;
}

/* @media only screen and (max-width: 480px) {
         #contactsndbtn{
         margin-top: 10px;
         margin-left: 5px;
         }
         }
         */
@media only screen and (max-width: 480px) {
    #mobileloader {
        margin-top: -10px;
    }
}

@media only screen and (max-width: 480px) {
    #mobileloader {
        font-size: 39px;
    }
}

.header-button {
    color: white;
    font-size: 15px;
}

.cntct-top-box {
    box-shadow: 0 2px 10px 0 rgb(17 121 239 / 15%);
    border-radius: 20px;
    padding: 22px 22px;
    margin-bottom: 20px;
    transition: .5s
}

.cntct-top-box:hover {
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%)
}

.top-csec {
    padding: 0 10%
}

.cbtn-sec a {
    font-size: 15px !important
}

.cbtn-sec,
.client-img,
.client-sec,
.cntct-top-box .sub-head,
.course-navlists .owl-item,
.fee-left-box,
.fee-right-box,
.hire-box .sub-head,
.right-img,
.spam-text span,
.strip-secs {
    text-align: center
}

.cntct-top-box {
    box-shadow: 0 2px 10px 0 rgb(17 121 239 / 15%);
    border-radius: 20px;
    padding: 15px 20px;
    margin-bottom: 20px;
    transition: .5s
}

.cntct-top-box:hover {
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%)
}

.contact-form-leftsec,
.contact-form-sec {
    padding: 35px
}

/* .fa-phone::after {
         content: '\f095'
         } */
/* .fa-envelope::after {
         content: '\f0e0'
         } */
.fa-whatsapp::after {
    content: '\f232 '
}

.fa-skype::after {
    content: '\f17e'
}

.phone-sec {
    position: relative;
    margin-bottom: 20px
}

.phone-icon {
    position: absolute;
    top: 1px
}

.hire-tbox,
.phone-text {
    padding-left: 45px
}

.phone-text p {
    margin-bottom: 0;
    font-size: 17px
}

.contact-banner {
    background-image: url(../img/contactus-banner.jpg);
    padding: 120px 0
}

.phone-head {
    background: #1a73e8;
    padding: 10px 20px
}

.contact-banner .banner-text-bg {
    background: #00000021
}

.address-sec {
    background: #fff;
    box-shadow: 0 2px 5px #e1ecf8;
    border-radius: 5px;
    padding: 20px 35px;
    margin-bottom: 30px
}

.bg-circle,
.our-locations {
    background-repeat: no-repeat
}

.contact-main-box {
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
    padding: 25px;
    border-radius: 20px;
    border: 4px solid transparent
}

.common-textsec li a,
.contact-main-box p,
.hire-boxes p {
    color: #35353d
}

.contact-main-box::after {
    content: "";
    width: 28px;
    height: 100px;
    background: #1a73e8;
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translate(-12%, -50%);
    z-index: -2
}

.contact-main-box:hover {
    border: 4px solid #196edf
}

.phone-icon span {
    font-size: 24px;
    color: #094e91
}

.phone-text p a {
    color: #000;
    line-height: 30px
}

.our-locations {
    background-image: url(../../img/contact-us/world-map.webp);
    background-size: cover;
    background-position: center
}

.our-locations .img-adv-box-caption {
    background: linear-gradient(to top, rgb(63 81 181 / 44%) 0, rgba(0, 0, 0, 0) 100%) !important;
    height: 60%;
    top: unset !important
}

.our-locations .img-adv-box-inner {
    max-height: 54px
}

.our-locations .img-adv-box img {
    height: 260px
}

.our-locations .img-adv-box-inner p {
    margin-bottom: 0 !important
}

.ser-first-box p {
    width: 80%;
    margin-bottom: 0;
    font-size: 17px
}

.ser-first-box {
    background: #f5f8fe;
    padding: 40px;
    border-radius: 3px
}

.service-layout-1 {
    background: #022b52
}

.contact-form-leftsec,
.contact-form-sec {
    padding: 35px
}

.contact-main-box {
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
    padding: 25px;
    border-radius: 20px;
    border: 4px solid transparent
}

.common-textsec li a,
.contact-main-box p,
.hire-boxes p {
    color: #35353d
}

.contact-main-box::after {
    content: "";
    width: 28px;
    height: 100px;
    background: #1a73e8;
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translate(-12%, -50%);
    z-index: -2
}

.contact-main-box:hover {
    border: 4px solid #196edf
}

.phone-icon span {
    font-size: 24px;
    color: #094e91
}

.phone-text p a {
    color: #000;
    line-height: 30px
}

.our-locations {
    background-image: url(../img/contact-us/world-map.webp);
    background-size: cover;
    background-position: center
}

.our-locations .img-adv-box-caption {
    background: linear-gradient(to top, rgb(63 81 181 / 44%) 0, rgba(0, 0, 0, 0) 100%) !important;
    height: 60%;
    top: unset !important
}

.our-locations .img-adv-box-inner {
    max-height: 54px
}

.our-locations .img-adv-box img {
    height: 260px
}

.our-locations .img-adv-box-inner p {
    margin-bottom: 0 !important
}

/* p{
         font-size: 18px;
         font-weight: 700;
         } */

#active-menu3 {
    color: #175cff;
}

#about-banner1 {
    background-image: url('../image/tech/contact.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 100px;
    padding: 80px 0;
    height: 400px;
}

@media only screen and (max-width: 767px) {
    #about-banner1 {
        padding: 10px 0;
        background-image: url('../image/tech/contact.jpg');
        background-attachment: scroll;
        height: 250px;
        background-size: cover;
    }
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 8px;
}

#para {
    font-size: 17px;
    font-weight: 700;
    color: #000;
}

.lead {
    text-align: justify;
    /* word-spacing:3.5px; */
    font-size: 15.8px;
    color: white;
}

#seccolor {
    background-color: #f7fbff;
}

#color {
    color: #032d60;
}

#maps {
    text-decoration: none;
    overflow: hidden;
    max-width: 100%;
    width: 1300px;
    height: 400px;
}

.header-button {
    font-size: 15px;
}

.card {
    background-color: #ffffff;
    /* White background for the card */
    border: 1px solid #ddd;
    /* Light gray border */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    padding: 20px;
    /* Padding inside the card */
    margin-bottom: 20px;
    /* Margin below the card */
}

.card .sub-head {
    color: #333;
    /* Dark color for the heading */
    font-size: 18px;
    /* Heading font size */
    font-weight: 600;
    /* Bold heading */
    margin-bottom: 10px;
    /* Space below the heading */
}

.card #para {
    font-size: 16px;
    /* Regular font size for the address */
    color: #555;
    /* Slightly lighter text color */
    line-height: 1.6;
    /* Line spacing for readability */
}

.card a.text-decn {
    text-decoration: none;
    /* Remove underline from the link */
    color: #007bff;
    /* Blue color for the link */
    display: flex;
    /* Flexbox for icon and text alignment */
    align-items: center;
    /* Vertically center the items */
    margin-top: 10px;
    /* Space between address and link */
}

.card a.text-decn:hover {
    color: #0056b3;
    /* Darker blue on hover */
}

.card a.text-decn svg {
    margin-right: 8px;
    /* Space between the icon and text */
}
