@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

h1,h2,h3,h4,h5,h6,a,button{
    font-family: 'Montserrat', sans-serif;
}
/********** Template CSS **********/
:root {
    --primary: #FDC828;
    --secondary: #CF1C24;
    --light: #F2F2F2;
    --dark: #1D2833;
}

/*color*/

.tc_red, .tc_h_red:hover{
    color:#CF1C24; 
}

.tc_yel, .tc_h_yel:hover{
    color:#FDC828; 
} 

.tc_w, .tc_h_w:hover{
  color: white;
}


.bg_red,.bg_h_red:hover{
    background-color:#CF1C24; 
}

.bg_yel,.bg_h_yel:hover{
    background-color:#FDC828; 
}

.bg_w,.bg_h_w:hover{
    background-color:white; 
}

.bg_bla,.bg_h_bla:hover{
    background-color:#212529; 
}


/*font-size*/


a{
    text-decoration: none !important;
    transition: 0.6s all;
}
 

.fs_12{
  font-size: 12px;
}
.fs_13{
  font-size: 13px;
}

.fs_14,
.dropdown-item{
  font-size: 14px;
}

.fs_15{
  font-size: 15px;
}


.fs_16{
  font-size: 16px;
}

.fs_18{
  font-size: 18px;
}

.fs_20{
  font-size: 20px;
}

.fs_22{
  font-size: 22px;
}

.fs_24{
  font-size: 24px;
}

.fs_28{
  font-size: 28px;
}

.fs_34{
  font-size: 34px;
}

.fs_44{
  font-size: 44px;
}

.fs_48{
  font-size: 48px;
}

.fs_54{
  font-size: 54px;
}

.fs_65{
  font-size: 65px;
}

.fw_2{
   font-weight: 200; 
}

.fw_3{
   font-weight: 300; 
}

.fw_4{
   font-weight: 400; 
}

.fw_6{
   font-weight: 600; 
}

.fs_5{
   font-weight: 500; 
}

.fw_7{
   font-weight: 700; 
}

.fw_8{
   font-weight: 800; 
}

.fw_9{
   font-weight: 900; 
}

.lh_42{
    line-height: 42px;
}


.transition_06{
  transition: 0.6s all;
}

.w_fit_c{
  width: fit-content;
}

.border-primary {
    border-color: #FDC828!important;
}


/*** 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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

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: 20px 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: 100px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
   max-height: 90px;
    padding: 4px 0px;
}

@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;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background:#00000070;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

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


/*** Hero Header ***/
.hero-header {  
    background-position: center bottom -1px,center;
    background-repeat: no-repeat;
    background-image: url(../img/bg-bottom-hero.png),url(../img/homeb.jpg);
    background-size: contain, cover;
        height: 88vh;
}

.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 #CF1C24;
    border-bottom: 1px solid #CF1C24;
}

.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: var(--primary) !important;
    border-color: var(--secondary) !important;
}

.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 {
background: url(../img/bg-bottom-footer.png),#212529;
    background-position: top center;
    background-repeat: no-repeat, repeat;
    background-size: contain;
}
 

.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: 25px 0;*/
    /*font-size: 15px;*/
    border-top: 1px solid rgba(256, 256, 256, .3);
}

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

.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;
}

.sg_banner_frm {
    padding: 40px 40px;
}

.sg_icon_bg {
    width: 60px;
    height: 60px;
    line-height: 1;
}


/*how it work section */

  
.sg_how_it_work_timeline:after{
    content: '';
    display: block;
    clear: both;
}
.sg_how_it_work_timeline .sg_timeline{
    width: calc(50% + 17px);
    padding: 0 30px 30px 0;
    float: left; 
    position: relative;
}
.sg_how_it_work_timeline .sg_timeline:before,
.sg_how_it_work_timeline .sg_timeline:after{
    content: '';
    height: 60px;
    width: 2px;
    border-left: 2px solid #FDC828;
    transform: rotate(-45deg);
    position: absolute;
    right: 30px;
    bottom: 0;
}
.sg_how_it_work_timeline .sg_timeline:after{
    background-color: #fff;
    height: 20px;
    width: 20px;
    border: 6px solid #FDC828;
    border-radius: 50%;
    right: 0;
}   
.sg_how_it_work_timeline .sg_timeline_content{
    /*color: #555;*/
    background:#CF1C24;
    /*text-align: center;*/
    min-height: 170px;
    padding: 30px 35px 35px;
    border-radius: 9px 9px 0 9px;
    display: block;
    position: relative;
    z-index: 1;
}
.sg_how_it_work_timeline .sg_timeline_content:before{
    content: '';
    background-color: #fff;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
    z-index: -1;
}
.sg_how_it_work_timeline .sg_timeline_content:hover{ text-decoration: none; }
.sg_how_it_work_timeline .sg_timeline_icon{
    /*color: #777;*/
    /*font-size: 35px;*/
}
.sg_how_it_work_timeline .title{
    /*font-size: 22px;*/
    /*font-weight: 700;*/
    /*letter-spacing: 2px;*/
    /*text-transform: uppercase;*/
    /*margin: 0 0 8px;*/
}
.sg_how_it_work_timeline .description{
    /*color: #777;*/
    /*font-size: 13px;*/
    /*font-weight: 400;*/
    /*letter-spacing: 0.5px;*/ 
    margin: 0;
    line-height: 22px;
}
.sg_how_it_work_timeline .sg_timeline:nth-child(even){
    padding: 0 0 30px 30px;
    float: right;
}
.sg_how_it_work_timeline .sg_timeline:nth-child(even):before{
    transform: rotate(45deg);
    right: auto;
    left: 30px;
}
.sg_how_it_work_timeline .sg_timeline:nth-child(even):after{
    right: auto;
    left: 0;
}
.sg_how_it_work_timeline .sg_timeline:nth-child(even) .sg_timeline_content{ border-radius: 9px 9px 9px 0; }
.sg_how_it_work_timeline .sg_timeline:nth-child(4n+2):before,
.sg_how_it_work_timeline .sg_timeline:nth-child(4n+2):after{
    border-color: #FDC828;
}

.sg_how_it_work_timeline .sg_timeline:nth-child(4n+3):before,
.sg_how_it_work_timeline .sg_timeline:nth-child(4n+3):after{
    border-color: #FDC828;
}
.sg_how_it_work_timeline .sg_timeline:nth-child(4n+3) .sg_timeline_content{
    /*background: #FDC828;*/
}
.sg_how_it_work_timeline .sg_timeline:nth-child(4n+4):before,
.sg_how_it_work_timeline .sg_timeline:nth-child(4n+4):after{
    border-color: #ffd670;
}

.sg_how_it_work_timeline .sg_timeline:nth-child(4n+4):after,
.sg_how_it_work_timeline .sg_timeline:nth-child(4n+4):before{
    display: none;
}

.sg_how_it_work_timeline .sg_timeline:nth-child(4n+2) .sg_timeline_content{
    /*background: #CF1C24;*/
}

.sg_how_it_work_timeline .sg_timeline:nth-child(4n+4) .sg_timeline_content{
    /*background:#ffd670;*/
}
@media screen and (max-width:767px){
    .sg_how_it_work_timeline .sg_timeline{
        width: 100%;
        padding: 30px 0 0 30px;
        margin: 0 0 20px;
    }   
    .sg_how_it_work_timeline .sg_timeline:before,
    .sg_how_it_work_timeline .sg_timeline:nth-child(even):before{
        transform: rotate(-45deg);
        bottom: auto;
        top: 0;
        right: auto;
        left: 30px;
    }
    .sg_how_it_work_timeline .sg_timeline:after,
    .sg_how_it_work_timeline .sg_timeline:nth-child(even):after{
        bottom: auto;
        top: 0;
        right: auto;
        left: 0;
    }
    .sg_how_it_work_timeline .sg_timeline_content,
    .sg_how_it_work_timeline .sg_timeline:nth-child(even) .sg_timeline_content{
        border-radius: 0 9px 9px 9px;
    }
}

.sg_testimonial {
    background:#f5f5f5;
}
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0px 0px 3px 2px #c1bebe2b;
}

.sg_according {
    box-shadow: 0px 0px 5px 1px #f1f1f1;
}

.testimonial-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 40px;
    line-height: 1;
    position: absolute;
    top: 43%;
    left: 50%;
    /* transform: translateX(-50%) translateY(-50%); */
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: 0.6s all;
}

.testimonial-carousel:hover .owl-nav {
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next {
    background: #fdc828;
    width: 30px;
    text-align: center;
    color: white;
    border-radius: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover {
    background: #CF1C24; 
}

.testimonial-carousel .owl-nav .owl-prev div, .testimonial-carousel .owl-nav .owl-next div {
    position: relative;
    top: -2px;
}



/*nav.navbar.sticky-top div#navbarCollapse {
    display: none !important;
}*/


.sg_on_scrool_frm {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 7px 4px #0000003d;
    z-index: 999;
}


ul.sg_blog_info_text {
    list-style: none;
right: 0px;
    top: -30px;
}

ul.sg_blog_info_text a {
    background: #fdc828;
    color: #212529;
    padding: 4px 6px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.6s all;
}

ul.sg_blog_info_text a:hover {
    background: #cf1c24; 
    color: white;
}

span.sg_date_tag {
    background: #cf1c24;
    top: 0px;
    left: 0px;
    font-size: 14px;
    padding: 0 5px;
    border-radius: 0px;
    font-weight: 500;
    color: white; 
}

/*span.sg_date_tag:hover {
background: #fdc828;
    color: #212529;
}*/

.sg_blog_img img {
    height: 240px;
    object-fit: cover;
}



h3.sg_blog_info_heading {
    font-weight: 700 !important;
    font-size: 20px;
    margin-top: 15px;
}

h3.sg_blog_info_heading a{
        color: #212529;
}

h3.sg_blog_info_heading:hover a{
        color:#CF1C24;
}

.sg_blog_box {
    box-shadow: 0px 0px 4px 1px #8787871a;
    padding: 12px;
    border-radius: 5px;
    transition: 0.6s all;
}

.sg_blog_box:hover{
    box-shadow: 0px 0px 0px 0px #0000001a; 
}

.sg_pagination ul {
    display: flex;
    gap: 10px;
    justify-content: end;
    margin-top: 15px;
}

.sg_pagination ul a {
    /*color: #212529;*/
    font-weight: 600;
}

.sg_pagination ul a:hover{
    /*color: #cf1c24;*/
    /*font-weight: 600;*/
}

.blog_single_page .sg_blog_img img{
    height:60vh;
    object-fit: cover;
    background-color: #eeedee;

}

.blog_single_page .sg_blog_box {
    box-shadow: none;
    padding: 0px;
    border-radius: 0px; 
}

.blog_single_page h3.sg_blog_info_heading {
    font-weight: 700 !important;
    font-size: 24px;
    margin-top: 15px;
}

.sg_post_share a {
    display: flex;
    width: 30px;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 100%;
}

.sg_post_share a:hover { 
    color: #212529;
}

.sg_post_share {
    font-weight: 700;
}

@media(max-width: 767px){
    .blog_single_page .sg_blog_img img{
    height:auto;
}

.sg_blog_img img{
    height: 300px;
}
}

 .sg_footer_div {
    background-image:linear-gradient(to top, #2e2e2e , #212529);
    /*padding: 42px 0px 0px;*/
    position: relative;
}
  .sg_footer_div .container{
    z-index: 9;
    position: relative;
}

.sg_footer_div:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    background-color:#242424;
    border-radius: 100% 100% 0px 0px;
}

.sg_frt_menu a {
    color: white;
    margin: 6px;
    padding: 0 8px;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
    margin-top: 0px;
}

.sg_frt_menu a:hover {
    color: #FDC828;
}

.tc_muted {
    color: #9ca0a3;
}

@media(max-width: 567px){
.sg_frt_menu a {
    display: block;
    border-bottom: 1px #ffffff1f solid;
    width: fit-content;
    margin: auto;
    margin-bottom: 6px;
    min-width: 220px;
    padding-bottom: 6px;
    font-size: 16px;
}
}

.loader_div {
      display: none;
}
.loader {
  border: 12px solid #f3f3f3;
  border-radius: 50%;
  border-top: 12px solid #79c6fd;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}