html,body
{
    height: 100%;
}
body
{
    margin: 0px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}
.height100
{
    height: 100%;
}
.material-symbols-rounded 
{
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}
.icon1
{
    color: #1abc9c;
    background-color: #1abc9c21;
}
.icon2
{
    color: #8e44ad;
    background-color: #8e44ad21;
}
.icon3
{
    color: #d35400;
    background-color: #d3540021;
}
.icon4
{
    color: #2c3e50;
    background-color: #2c3e5021;
}
.listStyleNone
{
    list-style-type: none;
}
.primaryBtn
{
    background-color: #ffffff;
    color: #005aff;
    font-size: 16px;
    border: 0px;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.primaryBtn:hover
{
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff;
    font-size: 16px;
}
.secondaryBtn
{
    background-color: #005aff;
    color: #ffffff;    
    font-size: 16px;
    border: 0px;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.secondaryBtn:hover
{
    background-color: transparent;
    color: #005aff !important;
    border: 1px solid #005aff;
    font-size: 16px;
}
.sectionSpacingTop
{
    padding-top: 70px;
}
.sectionSpacingBottom
{
    padding-bottom: 70px;
}
.width100
{
    width: 100%;
}
.height100
{
    height: 100%;
}
.contentVCenter
{
    height: 100%;
    display: flex;
    align-items: center;
}
.contentHCenter
{
    display: flex;
    justify-content: center;
}
.bannerTitle
{
    font-size: 36px;
    font-weight: 700;
    line-height: 52px;
    color: #ffffff;
}
.bannerDescription
{
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
}
.benefitsTitle
{
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 6px;
}
.primaryTitle 
{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}
.primaryHeadTitle 
{
    color: #14c691;
    font-weight: 600;
}
.primaryOpacityBg
{
    background-color: #1770e812;
}
.bannerPart .carousel-indicators
{
    bottom: -50px;
}
.bannerPart .carousel-indicators [data-bs-target]
{
    width: 8px;
    height: 8px;
    background-color: #005aff;
}
.customPadding
{
    padding-top: 240px;
}
.scrollNavBar 
{
    max-width: 100%;
    padding: 0px !important;
    position: fixed;
    top: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 3px 12px 0px rgb(121 112 112 / 17%);
    -moz-box-shadow: 0px 3px 12px 0px rgb(121 112 112 / 17%);
    box-shadow: 0px 3px 12px 0px rgb(121 112 112 / 17%);
}
.primaryProductTitle 
{
    font-size: 18px;
    font-weight: 600;
}
.primaryProductDescription 
{
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
}
.commonImage
{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*Owl Carousel Css Starts Here*/
.owl-dots
{
    display: flex;
    justify-content: center;
    margin-top: 12px;
}
.owl-dot
{
    width:8px;
    height: 8px;
    background-color: #b9b9b9;
    border-radius: 8px;
    float: left;
    margin-right: 8px;
}
.owl-dot.active 
{
    width: 24px;
    height: 8px;
    background-color: #005aff;
}
.owl-item
{
    padding: 0px 24px;
}
/*Owl Carousel Css Ends Here*/
/*Scroll To Top Button Css Starts Here*/
#scrollToTopBtn 
{
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: 0px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #f4f4f4;
    border-radius: 100px;
    box-shadow: rgb(25 123 255) 0px 1px 10px 0px;
}
#scrollToTopBtn img
{
    height: 100%;
    border-radius: 80px;
    padding: 10px;
}
.bounce2 
{
    animation: bounce2 2s ease infinite
}
@keyframes bounce2 
{
    0%,20%,50%,80%,100% 
    {
        transform: translateY(0)
    }
    40% 
    {
        transform: translateY(-30px)
    }
    60% 
    {
        transform: translateY(-15px)
    }
}
/*Scroll To Top Button Css Ends Here*/
/*Navbar Section Css*/
.topNavBar.scrollNavBar .customNavBar .navbar
{
    background-color: #ffffff;
}
.topNavBar.scrollNavBar .customNavBar .nav-link
{
    color: #212121;
}
.topNavBar.scrollNavBar .customNavBar .nav-link.active
{
    color: #005aff;
}
.topNavBar.scrollNavBar .customNavBar .nav-link.active::after
{
    background-color: #005aff;
}
.customNavBar .navbar
{
    background-color: #005aff;
    padding: 16px;
}
.customNavBar .nav-link
{
    padding-right: 24px !important;
    text-transform: uppercase;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}
.customNavBar .nav-item 
{
    position: relative;
}
.customNavBar .nav-link.active::after
{
    content: "";
    width: 24px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    right: 24px;
    bottom: 4px;
    border-radius: 3px;
}
.navbar-brand img
{
    width: 250px;
}
.customNavBar .nav-link.active
{
    color: #ffffff;
    font-weight: 600;
}
.navbar-collapse
{
    flex-grow: 0;
}
/* Features Section Css */
.cardTitle 
{
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
}
.commonCard
{
    padding: 24px;
    margin-bottom: 28px;
    -webkit-box-shadow: 0px 3px 12px 0px rgb(121 112 112 / 17%);
    -moz-box-shadow: 0px 3px 12px 0px rgb(121 112 112 / 17%);
    box-shadow: 0px 3px 12px 0px rgb(121 112 112 / 17%);
    border: 0px;
}
.cardIcon
{
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cardIcon span
{
    font-size: 32px;
}
/*Solutions Css Starts Here*/
.solutionTypeTabs .nav-link
{
    font-weight: 500;
    text-transform: uppercase;
    color: #040415;
}
.solutionTypeTabs .nav-link.active
{
    background-color: #005aff;
    border-radius: 30px;
    color: #ffffff;
}
.solutionTypeTabs .nav-tabs
{
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 38px;
    border-bottom: 0px;
    padding: 8px;
    border: 0px;
}
.solutionTypeImage
{
    height: 400px;
    padding: 36px;
}
.solutionTypeImage img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solutionTypeContent
{

}
.tabContentTitle
{
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 16px;
}
/*Looking for Solution Css Starts Here*/
.lookingSolution
{
    background-color: #005aff12;
    padding: 60px 42px 0px;
    border-radius: 12px;
}
/*Looking for Solution Css Ends Here*/
/*About Us Css Starts Here*/
.listIcon 
{
    float: left;
    background-color: #005aff;
    color: #ffffff;
    padding: 8px;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 24px;
}
.aboutBannerPart
{
    max-width: 460px;
    margin: 0 auto;
    padding: 0px 24px;
}
.aboutBannerPart img
{
    border-radius: 32px;
}
/*About Us Css Ends Here*/
/*Want Demo Section Css Starts Here*/
.wantDemo
{
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wantDemoDescription
{
    font-size: 14px;
    line-height: 28px;
}
.wantDemoForm
{
    margin-bottom: 32px;
}
.wantDemoSubmit
{
    position: relative;
    max-width: 320px;
}
.wantDemoSubmit input
{
    border-radius: 48px;
    border: 0px;
    padding: 12px 20px;
}
.wantDemoSubmit .btn 
{
    position: absolute;
    top: 5px;
    right: 6px;
    border-radius: 30px;
}
/*Want Demo Section Css Ends Here*/
/*Footer Css Starts Here*/
.footerBody
{
    background-color: #eaebeb;
}
.footerLinks 
{
    float: left;
    list-style-type: none;
    padding-right: 32px;
}
.footerLinks a
{
    color: #757575;
    font-weight: 400;
}
.footerLinks a:hover
{
    color: #14c691;
    font-weight: 500;
}
.footerTop
{
    border-bottom: 1px solid #cccccc;
    padding: 16px 0px;
}
.footerBottom
{
    padding: 16px 0px;
}
.footerBottom .footerLinks
{
    font-size: 13px;
}
.footerBottom .copyright
{
    font-size: 13px;
    margin-bottom: 0px;
}
/*Footer Css Ends Here*/
/*Arcuscloud Css Starts Here*/
.sliderBanner1
{
    background-image: url("../images/home/Banner.png");
    height: 580px;
    background-repeat: no-repeat;
    background-size: cover;
}
.stepsarcusCloud .card
{
    height: 340px;
}
.stepsarcusCloud .card-body
{
    padding: 0px;
}
.cardList
{
    padding-left: 16px;
    font-size: 13px;
}
.cardList li
{
    list-style-type: square;
}
.posRelative
{
    position: relative;
}
.demoUser
{
    position: absolute;
    bottom: 0px;
    width: 280px;
}
.ourTeam .commonCard
{
    height: 480px;
}
.teamMemberPhoto
{
    height: 380px;
}
.teamMemberPhoto img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.teamMemberName 
{
    font-size: 24px;
    font-weight: 600;
    padding-top: 16px;
    float: left;
}
.teamMemberDescriptionHead
{
    height: 42px;
}
.teamMemberDescriptionHead .linkedinLink
{
    padding-top: 0px;
}
.linkedinLink
{
    float: right;
    padding-top: 12px;
    padding-right: 8px;
}
.sectionHeader
{
    text-align: center;
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 600;
    position: relative;
}
.sectionHeader::after
{
    content: "";
    border: 1px solid #dfdfdf;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 20px;
}
.sectionHeader span
{
    background-color: #ffffff;
    z-index: 99;
    position: relative;
    padding: 0px 16px;
}
.grayBg
{
    background-color: #f4f4f4;
}
.textEllipsisLineClamp
{
    display: -webkit-box;
    -webkit-line-clamp: 16;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.whyArcus
{
    max-width: 450px;
}
/*Flip Card Css Starts Here*/
.flip-card {
    background-color: transparent;
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    color: black;
  }
  
  .flip-card-back {
    background-color: #ffffff;
    color: #212121;
    transform: rotateY(180deg);
    text-align: left;
  }
.flip-card-back .text-muted
{
  font-size: 14px;
}
.flip-card-back .teamMemberName
{
    padding-top: 0px;
}
  /*Flip Card Css Ends Here*/
.geographicalReachSlider .owl-nav
{
    position: absolute;
    width: 100%;
    bottom: 52%;
}
.geographicalReachSlider .owl-prev
{
    float: left;
    position: relative;
    left: -12px;
}
.geographicalReachSlider .owl-next
{
    float: right;
    position: relative;
    right: -12px;
}
.geographicalReachSlider .owl-dots
{
    margin-top: 0px;
}
.geographicalReachSlider .cardIcon
{
    float: right;
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #005aff21;
    color: #005aff;
    border-radius: 50px;
}
.geographicalReachSlider .cardIcon span
{
    font-size: 28px;
}
.strategyFooter 
{
    position: absolute;
    bottom: 20px;
}
.strategyFooter .secondaryBtn
{
    font-size: 14px;
    padding: 4px 12px;
    font-weight: 500;
}
.commonTabs .nav-item .nav-link
{
    color: #212121;
    font-weight: 600;
    font-size: 14px;
}
.commonTabs .nav-item .active
{
    font-size: 14px;
    font-weight: 600;
    color: #005aff;
}
.floatL
{
    float: left;
}
.floatR
{
    float: right;
}
.text-justify
{
    text-align: justify;
}
.tabBodyTitle
{
    color: #212121;
    font-weight: 600;
    margin-bottom: 18px;
}
.tabBodyTitle span
{
    padding-right: 12px;
}
@media only screen and (max-width: 2000px) and (min-width:1600px)
{
    .sliderBanner1
    {
        height: 940px;           
        background-position: center center;
    }
    .sliderBannerWhoWeAre
    {
        height: 100vh !important;
    }
}
/*Common Modal Css Starts Here*/
.commonModal .modal-title 
{
    font-size: 20px;
    font-weight: 600;
}
.commonModal .btn-close
{
    color: #757575;
    font-size: 12px;
    padding-right: 24px;
}
.commonModal .modal-body
{
    font-size: 14px;
    line-height: 26px;
    color: #212121;
    font-weight: 400;
}
.commonModal .modal-dialog
{
    max-width: 800px;
}
/*Common Modal Css Ends Here*/
/*Temporary Css Starts Here*/
.bannerContent
{
    padding-left: 18%;
}
/*Temporary Css Ends Here*/
/*Who We Are Css Starts Here*/
.sliderBannerWhoWeAre
{
    background-image: url("../images/whoweare/banner_whoweare.png");
    height: 580px;
    background-repeat: no-repeat;
    background-size: cover;
}
.consolidationStrategyDescription ul 
{
    padding: 0px;
    list-style-type: none;
}
.listTitle 
{
    font-size: 16px;
    font-weight: 600;
    padding-left: 12px;
}
.listDescription
{
    padding: 4px 0px 12px 36px;
    font-size: 16px;
    font-weight: 400;
}
/*Who We Are Css Ends Here*/
/*Arcuscloud Css Ends Here*/
@media only screen and (max-width: 569px) and (min-width:280px) 
{
    .bannerphoto
    {
        margin-top: 24px;
    }
    .lookingSolution
    {
        padding: 42px 24px;
    }
    .wantDemoSubmit
    {
        width: 100%;
        max-width: 100%;
    }
    .footerLinks
    {
        padding-right: 16px;
        margin-bottom: 24px;
    }
    .footerBottom .copyright
    {
        margin-bottom: 24px;
    }
    .solutionTypeTabs .nav-link
    {
        padding: 8px;
        font-size: 13px;
    }
    .aboutBannerPart
    {
        padding: 24px;
    }
    .responsiveColoumReverse
    {
        flex-direction: column-reverse;
    }
    .responsiveHide
    {
        display: none;
    }
    .customNavBar .navbar-brand img
    {
        width: 200px;
    }
    .customNavBar .navbar .navbar-toggler
    {
        background-color: #ffffff;
        padding: 4px;
        font-size: 16px;
        color: #212121;
    }
    .bannerContent 
    {
        padding-left: 24px;
    }
    .sectionHeader::after
    {
        display: none;
    }
}
@media only screen and (max-width: 1028px) and (min-width:761px)
{
    #about .benefitsDescription
    {
        display: none;
    }
    #about .listIcon
    {
        margin-bottom: 24px;
        width: 30px;
        height: 30px;
    }
    #about .listIcon span
    {
        font-size: 16px;
    }
}
@media only screen and (max-width: 1028px) and (min-width:280px)
{
    .commonTabs .nav-item .nav-link
    {
        border: 0px !important;
    }
}
/*Animation Css Starts Here*/
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }
/*Animation Css Ends Here*/