123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526 |
- /* Opensans light */
-
- /* @font-face {
- font-family: 'Open Sans', sans-serif;
- src: url('../fonts/OpenSans/OpenSans-Light.ttf') format('truetype');
- font-weight: 300;
- font-style: normal;
- } */
-
- /* Opensans regular */
-
- /* @font-face {
- font-family: 'Open Sans', sans-serif;
- src: url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
- font-weight: 400;
- font-style: normal;
- } */
-
- /* Opensans medium */
-
- /* @font-face {
- font-family: 'Open Sans', sans-serif;
- src: url('../fonts/OpenSans/OpenSans-Medium.ttf') format('truetype');
- font-weight: 500;
- font-style: normal;
- } */
-
- /*Opensans Semi bold */
-
- /* @font-face {
- font-family: 'Open Sans', sans-serif;
- src: url('../fonts/OpenSans/OpenSans-SemiBold.ttf') format('truetype');
- font-weight: 600;
- font-style: normal;
- } */
-
- /*Opensans extra bold */
-
- /* @font-face {
- font-family: 'Open Sans', sans-serif;
- src: url('../fonts/OpenSans/OpenSans-ExtraBold.ttf') format('truetype');
- font-weight: 700;
- font-style: normal;
- } */
-
- /* WorkSans light */
-
- @font-face {
- font-family: "Work Sans", sans-serif;
- src: url("../fonts/WorkSans/WorkSans-Light.ttf") format("truetype");
- font-weight: 300;
- font-style: normal;
- }
-
- /* WorkSans regular */
-
- @font-face {
- font-family: "Work Sans", sans-serif;
- src: url("../fonts/WorkSans/WorkSans-Regular.ttf") format("truetype");
- font-weight: 400;
- font-style: normal;
- }
-
- /* WorkSans medium */
-
- @font-face {
- font-family: "Work Sans", sans-serif;
- src: url("../fonts/WorkSans/WorkSans-Medium.ttf") format("truetype");
- font-weight: 500;
- font-style: normal;
- }
-
- /*WorkSans Semi bold */
-
- @font-face {
- font-family: "Work Sans", sans-serif;
- src: url("../fonts/WorkSans/WorkSans-SemiBold.ttf") format("truetype");
- font-weight: 600;
- font-style: normal;
- }
-
- /*WorkSans extra bold */
-
- @font-face {
- font-family: "Work Sans", sans-serif;
- src: url("../fonts/WorkSans/WorkSans-ExtraBold.ttf") format("truetype");
- font-weight: 700;
- font-style: normal;
- }
-
- * {
- font-family: "Work Sans", sans-serif;
- }
-
- p {
- font-size: 16px;
- /* color: #9CA3AF; */
- margin-bottom: 0% !important;
- }
-
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-family: "Work Sans", sans-serif;
- }
-
- /* .header-bg,
- #sticky.is-isticky {
- background: #302c7c;
- } */
-
- div#navbar-head {
- position: relative;
- z-index: 10;
- }
-
- .main-banner {
- width: 84%;
- margin-right: unset;
- }
-
- .waves {
- background-color: #111827;
- }
-
- .header-middle.theme1 li .main-nav-list {
- color: #fff !important;
- }
-
- .theme1 li a:hover {
- color: gray;
- }
-
- a.sub-nav-list:hover {
- border: 1px solid #dee2e6 !important;
- }
-
- .sub-menu li a,
- .mega-menu li ul li.mega-menu-title a,
- .save-build {
- color: #302c7c !important;
- }
-
- .footer-logo {
- /* max-width: 50%; */
- }
-
- .footer-menu li a,
- .social-network li a {
- color: #ffffff !important;
- }
-
- .fadeInUp li {
- /* font-size: 1em; */
- font-size: 1rem;
- margin-top: 0.75em;
- margin-bottom: 0.75em;
- margin-left: 4.2em;
- }
-
- /* .fadeInUp {
- margin-bottom: 30px !important;
- } */
-
- .fadeInUp li {
- list-style: disc;
- }
-
- .prohero .tag .tagimg {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- margin: 0.25em;
- }
-
- .second-slider {
- background: #302c7c;
- }
-
- .bg-slider::before {
- display: none;
- }
-
- .collbrate-img {
- background: white;
- }
-
- .collbrate-img::before {
- content: "";
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- background: url("../img/bg-wave.svg") top right no-repeat;
- background-size: 70% auto;
- z-index: 0;
- opacity: 0.3;
- }
-
- .breadcrumb-item {
- color: white !important;
- }
-
- .breadcrumb-item a {
- color: white !important;
- }
-
- .breadcrumb-item + .breadcrumb-item:before {
- color: white !important;
- }
-
- .tag img {
- height: 70px;
- margin-right: 10px;
- }
-
- /* .main-menu li a{color: rgb(129, 124, 124);} */
- .main-menu li .main-nav-list {
- padding: 24px;
- text-transform: uppercase;
- font-weight: 700;
- line-height: 30px;
- }
-
- .main-menu li .main-nav-list:hover {
- cursor: pointer;
- }
-
- .style-list li {
- list-style: disc;
- }
-
- /* h1.title.mb-20 {
- font-family: sans-serif;
- } */
-
- h2.title.pb-4.text-dark.text-capitalize {
- font-family: sans-serif;
- color: white !important;
- }
-
- h6.port-font {
- font-family: sans-serif;
- color: gray;
- padding-bottom: 10px !important;
- font-size: 13px;
- }
-
- /* .main-nav-list {
- color: white !important;
- } */
-
- .search-toggle,
- .offcanvas-toggle {
- color: white !important;
- }
-
- .color-producut {
- color: white;
- }
-
- /* .offcanvas-toggle{color: white;} */
-
- .product-category {
- /* background-color: rgb(154, 229,255); */
- background-color: #302c7c;
- }
-
- .section-title .title:after {
- position: absolute;
- left: 0;
- right: 0;
- margin: 0 auto;
- bottom: 0;
- width: 60px;
- height: 2px;
- content: "";
- background: white;
- }
-
- p.main-text-con {
- color: white !important;
- }
-
- .bg-light1 {
- /* background-color: rgb(111 192 219); */
- /* background-color: #302c7c; */
- /* background-color: rgb(154, 229,255); */
- background: url(../img/banner/Content-bg.svg);
- background-size: cover;
- }
-
- .slider-content .title {
- font-weight: bold !important;
- font-size: 16px !important;
- color: #8e8e8e !important;
- font-weight: 400 !important;
- line-height: 1.5;
- text-transform: uppercase;
- letter-spacing: 3px;
- }
-
- .slider-content .text {
- /* font-size: 15px; */
- font-size: 26px;
- color: rgb(17, 17, 17);
- text-transform: uppercase;
- margin-bottom: 15px;
- color: white;
- opacity: 0;
- font-weight: 700;
- }
-
- .slider-content a {
- font-weight: 500;
- font-size: 16px;
- }
-
- .bold-text {
- color: white;
- font-weight: 700;
- font-size: 32px !important;
- /* margin-top: 10px; */
- width: 90%;
- }
-
- .bold-text p {
- color: white;
- font-weight: 700;
- font-size: 32px !important;
- line-height: 1.3;
- }
-
- /* .banner-head-margin {
- margin: 100px 0px 250px 0px;
- } */
- .banner-head-margin .welcome {
- margin: 0px 0px 50px 0px;
- }
-
- /* .align-items-center.d-flex {
- padding-left:200px;
- } */
-
- .list-items-nav {
- padding-left: 500px;
- }
-
- .cbdg1 {
- width: 20px;
- height: 20px;
- bottom: 32px;
- left: 31px;
- padding: 0;
- line-height: 18px;
- border-radius: 50%;
- }
-
- /* .banner-wave-bg {
- background: url(../img/bg-wave.svg);
- } */
-
- .bg-light1.slick-slider::before {
- content: "";
- width: 60%;
- height: 100%;
- position: absolute;
- /* background: url(../img/curves-01.svg) top right no-repeat; */
- background-size: 100%;
- z-index: 0;
- opacity: 0.2;
- top: -30%;
- right: 0%;
- }
-
- /* .bg-light1.slick-slider::before {
- content: "";
- width: 60%;
- height: 100%;
- position: absolute;
- background: url(../img/curves-01.svg) top right no-repeat;
- background-size: cover;
- z-index: 0;
- opacity: 0.2;
- transform: rotate(1deg);
- top: -30%;
- right: -10%;
- } */
-
- /* .bg-light1::before {
- content: "";
- width: 119%;
- height: 110%;
- position: absolute;
- left: 195px;
- top: -112px;
- background: url(../img/bg-wave.svg) top right no-repeat;
- background-size: 117% auto;
- z-index: 0;
- opacity: 0.2;
- transform: rotate(185deg);
- }
-
- .banner-slider {
- background: url(../img/bg-wave.svg);
- background-size: cover;
- } */
-
- /* .slick-slider:before {
- content: "";
- position: absolute;
- top: -112px;
- left: 195px;
- transform: translate(10%);
- animation: wave 5s infinite linear;
- transition: all 1s;
-
- }
-
- @keyframes wave {
- 10% {
- transform: translateX(0) translateZ(0) scaleY(1);
- top: -114px;
- left: 197px;
- }
- 20% {
- top: -116px;
- left: 199px;
- }
- 30% {
- top: -118px;
- left: 201px;
- }
- 40% {
- top: -120px;
- left: 203px;
- }
- 50% {
- top: -118px;
- left: 200px;
- }
- 60% {
- top: -116px;
- left: 198;
- }
- 70% {
- top: -115px;
- left: 197px;
- }
- 80% {
- top: -114px;
- left: 195px;
- }
-
- 90% {
- top: -110px;
- left: 193px;
- }
- 100% {
- top: -108px;
- left: 190px;
- }
- 20% {
- transform: translateX(-25%) translateZ(0) scaleY(0.55)
- }
- 30% {
- transform: translateX(-50%) translateZ(0) scaleY(1)
- }
- 40% {
- transform: translateX(-50%) translateZ(0) scaleY(1)
- }
- 50% {
- transform: translateX(-50%) translateZ(0) scaleY(1)
- }
- 90% {
- transform: translateX(-50%) translateZ(0) scaleY(1)
- }
- }
-
- */
-
- .slick-footer::before {
- content: "";
- width: 21%;
- height: 72%;
- position: absolute;
- left: 79%;
- top: 1%;
- background: url(../img/footer-img.png) top right no-repeat;
- background-size: 100% auto;
- z-index: 0;
- transform: rotate(359deg);
- z-index: 100;
- }
-
- /* .text-content-block {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- } */
-
- .text-content-block h6 {
- width: 100%;
- display: block;
- font-weight: 400;
- color: #302c7c;
- margin-bottom: 10px;
- letter-spacing: 1px;
- font-size: 13px;
- }
-
- .text-content-block h2 {
- width: 100%;
- display: block;
- margin-bottom: 20px;
- font-weight: 700;
- font-size: 30px;
- }
-
- .text-content-block p {
- display: block;
- margin-bottom: 20px;
- padding-right: 20%;
- font-weight: 300;
- }
-
- .text-content-block figure {
- width: 100%;
- display: block;
- margin: 20px 0;
- }
-
- .text-content-block figure img {
- height: 45px;
- }
-
- .text-content-block a {
- display: inline-block;
- height: 56px;
- line-height: 56px;
- margin-top: 30px;
- margin-left: 50px;
- background: #302c7c;
- color: #fff;
- padding: 0 40px;
- font-size: 13px;
- font-weight: 700;
- border-radius: 56px;
- box-shadow: 5px 5px 25px rgb(0 0 0 / 16%);
- }
-
- .text-content-block a.more-about-btn :hover {
- border-bottom: 1px solid black;
- }
-
- .image-box {
- display: block !important;
- margin-bottom: 0;
- box-shadow: 0 0 40px rgb(0 0 0 / 10%);
- /* position: relative; */
- }
-
- .popular-slider-init.dots-style.slick-initialized.slick-slider.slick-dotted {
- background: none !important;
- }
-
- ul.slick-dots {
- display: none !important;
- }
-
- .download-con {
- color: #302c7c;
- }
-
- .down-file i {
- color: #302c7c;
- }
-
- .spec-table .tabletitle {
- border-bottom: 3px solid #333;
- margin: 0;
- padding-bottom: 0.5em;
- }
-
- .spec-table table td:first-child {
- width: 27%;
- max-width: 9em !important;
- padding-left: 0px;
- padding: 14px;
- border-bottom: 1px Solid #333;
- font-weight: 700;
- }
-
- .spec-table1 table td:first-child {
- width: 28%;
- max-width: 9em !important;
- padding-left: 0px;
- padding: 14px;
- border-bottom: 1px Solid #333;
- font-weight: 700;
- }
-
- .down-border {
- border-bottom: none !important;
- width: 5% !important;
- }
-
- .pr-lg-10,
- .px-lg-10 {
- padding-right: 3rem !important;
- }
-
- .tr-last-child {
- padding: 16px;
- border-bottom: 1px solid darkgray;
- font-size: 14px;
- text-align: left;
- }
-
- .design-editor h2 {
- margin-bottom: 1em;
- font-size: 2rem;
- }
-
- .design-editor1 h4,
- h2 {
- margin-bottom: 1em;
- font-size: 2rem;
- }
-
- .design-editor h6 {
- margin-bottom: 0.1em;
- font-size: 2rem;
- }
-
- .single-product-desc h3 {
- margin-bottom: 1em;
- font-size: 2rem;
- }
-
- .banner-thumb {
- box-shadow: 0px 4px -1px 0px rgb(109, 107, 107);
- }
-
- /* .banner-img-spacing {
- margin-top: -5px !important;
- } */
-
- .slider-content .btn.mt-45 {
- margin-top: 30px;
- }
-
- .col-xl-8.col-lg-7.d-none.d-lg-block {
- width: 100%;
- max-width: 57%;
- }
-
- .btn-shop {
- padding: 10px 20px 10px 20px !important;
- }
-
- .single-btn {
- background-color: #302c7c;
- color: white;
- }
-
- .single-btn:hover {
- background-color: #716dbb;
- color: white;
- }
-
- .tab-data {
- margin-left: auto;
- margin-right: auto;
- }
-
- .tab-data th {
- font-size: 1em;
- padding-right: 25px !important;
- font-weight: 600;
- border-bottom: 2px Solid #333;
- text-align: center;
- padding-bottom: 10px;
- color: #333;
- }
-
- .tab-data td:first-child {
- border-bottom: 1px Solid #333;
- font-weight: 500;
- text-align: left;
- color: #333;
- }
-
- .tab-data td:last-child {
- border-bottom: 1px Solid lightgray;
- text-align: left;
- }
-
- .product-name {
- color: #302c7c;
- border-bottom: 1px solid #302c7c;
- }
-
- .sku_code {
- float: right;
- font-weight: bold;
- line-height: initial;
- }
-
- .mfg_part_number {
- font-weight: bold;
- }
-
- .specific {
- border-bottom: 5px solid #333;
- }
-
- .flint-specific {
- margin-left: 20px;
- }
-
- .flint-specific li {
- list-style-type: disc;
- padding: 10px 0px 10px 15px;
- }
-
- .design-editor h5 {
- font-weight: 600;
- }
-
- .creek-feature {
- width: 100%;
- max-width: 70%;
- }
-
- .creek-feature th,
- td {
- text-align: center;
- padding: 10px 0px 10px 0px;
- }
-
- .creek-feature td:first-child {
- border-bottom: 1px Solid #333;
- font-weight: 500;
- text-align: left;
- }
-
- .creek-feature th {
- border-bottom: 2px solid #333;
- }
-
- /*data-center*/
-
- .data-center1 li img {
- width: 100%;
- max-width: 30%;
- }
-
- .sticky {
- top: 100px;
- position: sticky;
- }
-
- .data-table {
- width: 100%;
- max-width: 60%;
- box-shadow: 0px 5px 7px 1px gainsboro;
- border-radius: 5px;
- background: #302c7c;
- }
-
- .data-table th {
- color: white;
- font-size: 35px;
- font-weight: 600;
- border-bottom: 3px Solid white;
- padding-left: 10px;
- text-shadow: 8px 5px 3px rgb(0 0 0 / 20%);
- }
-
- .data-table td {
- color: white;
- padding: 20px 10px 20px 10px;
- }
-
- .data-table td:first-child {
- color: white;
- text-align: left;
- font-size: 20px;
- font-weight: 500;
- border-bottom: 1px solid white;
- }
-
- .data-table td:last-child {
- color: white;
- text-align: right;
- font-size: 15px;
- font-weight: 500;
- border-bottom: 1px solid white;
- }
-
- .data-4 {
- color: #302c7c;
- font-family: sans-serif;
- }
-
- .data-subname {
- color: #333;
- }
-
- .data-cname {
- color: #333;
- font-size: 20px;
- font-weight: 600;
- padding-top: 10px;
- }
-
- .data2-100g li img {
- padding-top: 22px;
- }
-
- .data-center1:hover img {
- transform: scale(1.1);
- }
-
- .data1-100g li:hover img {
- transform: scale(1.1);
- }
-
- .data2-100g li:hover img {
- transform: scale(1.1);
- }
-
- .data3-100g li:hover img {
- transform: scale(1.1);
- }
-
- .server1,
- .server2,
- .server3 {
- position: relative;
- }
-
- .server1 p,
- .server2 p,
- .server3 p {
- /* color: #004cff !important; */
- color: #333;
- font-size: 20px;
- font-weight: 600;
- }
-
- .server1 p small,
- .server2 p small,
- .server3 p small {
- font-size: 14px;
- }
-
- .server1-content {
- position: absolute;
- bottom: 13px;
- left: 30px;
- }
-
- .server2-content {
- position: absolute;
- bottom: 13px;
- left: 30px;
- }
-
- .server3-content {
- position: absolute;
- bottom: 13px;
- left: 30px;
- }
-
- .server4-content {
- position: absolute;
- bottom: 13px;
- left: 30px;
- }
-
- .server5-content {
- position: absolute;
- bottom: 13px;
- left: 30px;
- }
-
- .server6-content {
- position: absolute;
- bottom: 13px;
- left: 30px;
- }
-
- .server7-content {
- position: absolute;
- bottom: 13px;
- left: 30px;
- }
-
- .server8-content {
- position: absolute;
- bottom: 13px;
- left: 30px;
- }
-
- .overlay1 {
- position: absolute;
- bottom: 0px;
- background: rgb(0, 0, 0);
- background: rgba(0, 0, 0, 0.2);
- /* Black see-through */
- color: #f1f1f1;
- width: 91%;
- transition: 0.5s ease;
- opacity: 0;
- color: white;
- font-size: 20px;
- padding: 185.5px 153px;
- text-align: center;
- cursor: pointer;
- }
-
- .overlay2 {
- position: absolute;
- bottom: 0px;
- background: rgb(0, 0, 0);
- background: rgba(0, 0, 0, 0.2);
- /* Black see-through */
- color: #f1f1f1;
- width: 100%;
- transition: 0.5s ease;
- opacity: 0;
- color: white;
- font-size: 20px;
- padding: 185px;
- text-align: center;
- margin-bottom: 0px;
- cursor: pointer;
- }
-
- .overlay3 {
- position: absolute;
- bottom: 0px;
- background: rgb(0, 0, 0);
- background: rgba(0, 0, 0, 0.2);
- /* Black see-through */
- color: #f1f1f1;
- width: 96.4%;
- transition: 0.5s ease;
- opacity: 0;
- color: white;
- font-size: 20px;
- padding: 184.7px;
- text-align: center;
- margin-bottom: 0px;
- cursor: pointer;
- }
-
- .server1:hover .overlay1 {
- opacity: 1;
- }
-
- .server2:hover .overlay2 {
- opacity: 1;
- }
-
- .server3:hover .overlay3 {
- opacity: 1;
- }
-
- /* .single-cart-btn{
- right: 21% !important;
- border-radius: 0%;
- width: 100%;
- max-width: 6%;
- position: absolute;
- background: #302C7C;
- color: white;
- font-weight: 700;
- border: none;
- font-size: 10px;
- } */
-
- .single_increment {
- border: 1px solid;
- }
-
- .qnty-feild {
- margin-left: 10px !important;
- }
-
- span.single_cart_price {
- margin-left: 0px;
- }
-
- .single_con strong {
- margin-left: 20px;
- }
-
- .offcanvas-open {
- overflow: scroll;
- }
-
- .side-cart-btn {
- padding: 15px 28px;
- }
-
- .firewall-list li {
- margin-left: 20px;
- list-style: disc;
- }
-
- .series-list li {
- list-style-type: disc;
- margin-left: 20px;
- }
-
- .bg-img {
- background-position: 15%;
- background-size: 103%;
- }
-
- .bg-img1 {
- background-image: url("../img/slider/anwi-systems-slider1.png");
- }
-
- .bg-img2 {
- background-image: url("../img/slider/anwi-systems-slider1.png");
- }
-
- /* .bg-img3 {
- background-image: url("../img/slider/anwi-systems-slider1.png");
- } */
-
- .nav-mob {
- color: #333 !important;
- }
-
- /* .nav-products {
- color: white !important;
- } */
-
- #mob-res-cart {
- display: none;
- }
-
- /* three-cards */
-
- .effect-three {
- width: 100%;
- }
-
- .grid {
- display: block;
- margin: 0 auto;
- width: 100%;
- padding-left: 0;
- font-size: 0;
- text-align: center;
- }
-
- .grid figure {
- margin: 0.1em;
- width: 410px;
- height: 287px;
- /* background: #3085a3; */
- display: inline-block;
- position: relative;
- overflow: hidden;
- text-align: center;
- }
-
- /* Common style */
-
- .grid figure .effect-three {
- position: relative;
- display: block;
- opacity: 0.8;
- height: 240px;
- }
-
- .grid figure figcaption {
- color: #fff;
- font-size: 1.25em;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- }
-
- .grid figcaption h2 {
- text-transform: uppercase;
- word-spacing: -0.15em;
- font-weight: 300;
- margin: 1em;
- }
-
- .grid figure figcaption::before,
- .grid figure figcaption::after {
- pointer-events: none;
- }
-
- .grid figure h2 {
- word-spacing: -0.15em;
- font-weight: 300;
- margin: 1em;
- }
-
- .grid figure h2 span {
- font-weight: 800;
- }
-
- .inner-con {
- font-weight: 700;
- }
-
- figure.effect-steve {
- z-index: auto;
- /* background: #000; */
- }
-
- figure.effect-steve:before {
- box-shadow: 0 3px 30px rgba(0, 0, 0, 0.8);
- opacity: 0;
- }
-
- figure.effect-steve figcaption {
- z-index: 1;
- }
-
- figure.effect-steve .effect-three {
- opacity: 1;
- -webkit-transition: -webkit-transform 0.35s;
- transition: transform 0.35s;
- -webkit-transform: perspective(1000px) translate3d(0, 0, 0);
- transform: perspective(1000px) translate3d(0, 0, 0);
- }
-
- figure.effect-steve h2,
- figure.effect-steve p {
- background: rgb(181, 225, 240);
- color: #333;
- }
-
- figure.effect-steve h2 {
- position: absolute;
- padding: 0.25em;
- bottom: 10px;
- width: 100%;
- }
-
- figure.effect-steve p {
- text-align: justify;
- margin-top: 1em;
- padding: 0.5em;
- font-weight: 800;
- opacity: 0;
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
- transition: opacity 0.35s, transform 0.35s;
- }
-
- figure.effect-steve:hover:before {
- opacity: 1;
- }
-
- figure.effect-steve:hover .effect-three {
- -webkit-transform: perspective(1000px) translate3d(0, 0, 21px);
- transform: perspective(1000px) translate3d(0, 0, 21px);
- }
-
- figure.effect-steve:hover h2:before {
- opacity: 0;
- }
-
- figure.effect-steve:hover p {
- opacity: 1;
- }
-
- .grid figure,
- figcaption,
- .effect-three {
- z-index: 0;
- }
-
- .grid figure figcaption h2 {
- font-size: 24px;
- margin-bottom: -10px;
- margin-left: 0;
- margin-right: 0;
- padding-bottom: 11px;
- }
-
- .grid figcaption p {
- font-size: 16px;
- font-weight: 200;
- position: absolute;
- bottom: 0;
- margin: 0;
- height: 50%;
- }
-
- figure:hover h2 {
- background: #f1f1f1;
- transition: transform 0.35s;
- transform: translateY(-2.5em);
- }
-
- /* end-off three-cards */
-
- /*
- .three-server-cards {
- padding: 18px !important;
- margin-left: -16px !important;
- width: 416px;
- } */
-
- .three-server-cards1 {
- padding: 18px !important;
- margin-left: -16px !important;
- width: 418px !important;
- }
-
- .three-card-name {
- font-size: 15px;
- font-weight: 600;
- }
-
- .server-card-content {
- text-align: center;
- }
-
- .flint-sub {
- font-weight: 600;
- }
-
- .index-slider {
- margin-left: -20px;
- width: 336px;
- }
-
- .index-slider p {
- font-weight: 600;
- }
-
- /* .mobile-menu-toggle.theme1 svg path {
- stroke: white !important;
- } */
-
- /*mega-menu starts*/
-
- .sub-content-nav {
- font-size: 20px;
- padding: 5px;
- margin-left: 45px !important;
- }
-
- .arrow-nav-img {
- padding-left: 210px;
- color: black;
- }
-
- .arrow-nav-img1 {
- padding-left: 150px;
- color: black;
- }
-
- .arrow-nav-img2 {
- /* padding-left: 137px; */
- color: #fff;
- }
-
- .arrow-nav-img3 {
- padding-left: 208px;
- color: black;
- }
-
- .arrow-nav-img4 {
- padding-left: 206.4px;
- color: black;
- }
-
- .arrow-nav-img5 {
- padding-left: 159px;
- color: black;
- }
-
- .nav-server-menu {
- width: 100%;
- text-align: left;
- }
-
- .content-nav {
- color: black;
- }
-
- .mega-nav-img {
- width: 50px;
- position: relative;
- margin: 0px 20px;
- }
-
- .bg-lighten2 {
- background-color: #302c7c;
- }
-
- .nav-menu-category,
- .nav-menu-category1 {
- padding: 0;
- margin: 0;
- list-style: none;
- }
-
- li.nav-menu-category1 .sub-category.active {
- background-color: #111827 !important;
- color: white !important;
- box-shadow: none !important;
- }
-
- li.nav-menu-category1 .sub-category.active {
- color: white !important;
- }
-
- .nav-menu-category1:hover {
- /* background:rgb(209, 208, 208); */
- background-color: white !important;
- color: #302c7c;
- box-shadow: none !important;
- }
-
- .nav-menu-category1 i:hover {
- color: #302c7c;
- }
-
- .mega-menu {
- /* height: 440px !important; */
- /* min-width: 1902px !important; */
- /* background-color: lightgray; */
- /* background-color: #f7f7f7; */
- display: block;
- /* border-radius: 4px; */
- }
-
- .menu-sections {
- /* display: block; */
- width: 80%;
- height: 100%;
- position: fixed;
- right: 0%;
- top: -9990px;
- text-align: center;
- background: #fbfafa;
- background-color: rgb(255, 255, 255);
- z-index: 10;
- }
-
- .nav-menu-category1[data-role="thumb-1"]:hover,
- .menu-sections[data-role="content-1"] {
- top: 0%;
- }
-
- .nav-menu-category1[data-role="thumb-2"]:hover
- .menu-sections[data-role="content-2"] {
- top: 0%;
- }
-
- .nav-menu-category1[data-role="thumb-3"]:hover
- .menu-sections[data-role="content-3"] {
- top: 1.7%;
- }
-
- .nav-menu-category1[data-role="thumb-4"]:hover
- .menu-sections[data-role="content-4"] {
- top: 1.7%;
- }
-
- .nav-menu-category1[data-role="thumb-5"]:hover
- .menu-sections[data-role="content-5"] {
- top: 1.7%;
- }
-
- .nav-menu-category1[data-role="thumb-6"]:hover
- .menu-sections[data-role="content-6"] {
- top: 1.7%;
- }
-
- span.sub-content-nav {
- color: #19191a;
- }
-
- .nav-menu-category1:hover {
- /* background: rgb(209, 208, 208); */
- background-color: rgb(245, 243, 243);
- color: black !important;
- box-shadow: none !important;
- }
-
- .nav-menu-category1 {
- width: 25%;
- /* padding: 6px; */
- display: flex;
- color: black !important;
- /* left: 40px !important; */
- }
-
- .nav-server-menu.p-4 {
- display: inline-block;
- flex-wrap: wrap;
- }
-
- .py-3 {
- padding-top: 1rem !important;
- padding-bottom: 1rem !important;
- }
-
- .content-nav.px-3 {
- text-align: left;
- color: black;
- }
-
- .w-100.d-flex.py-3 {
- padding-bottom: 8px !important;
- }
-
- .w-100.d-flex.py-3.pl-5 {
- margin-left: 20px;
- margin-top: -25px;
- }
-
- /* .close-btn {
- float: right;
- font-size: x-large;
- display: none;
- } */
-
- .ame:hover {
- text-decoration: underline;
- }
-
- .nav-mega-menu ul a {
- padding: 0%;
- }
-
- /*mega-menu end */
-
- button.btn.btn--xl.single-btn.single-cart-btn {
- margin-left: 42px;
- }
-
- .row.align-items-center.slider-height.breadcrumb {
- height: 300px !important;
- }
-
- /* index changes */
-
- .row.product-cards {
- margin-top: 50px;
- }
-
- /* .tab-line {
- height: 30px;
- border: 1px solid;
- margin-top: 8px;
- display: none;
- } */
-
- nav.product-tab-menu.single-product.tabs {
- /* background: #fff; */
- position: relative;
- /* margin-top: -40px; */
- padding: 4px 4px;
- /* border-radius: 5px; */
- }
-
- li.nav-items {
- text-align: center;
- /* margin: 25px auto; */
- }
-
- .single-product-desc {
- background: #fff;
- padding: 12px;
- border: 1px solid #ebebeb;
- }
-
- .slick-arrow {
- background-color: #302c7c !important;
- }
-
- /* p.flint-sub.text-center {
- padding: 15px;
- } */
-
- /* .single-product-desc.cards {
- background: #ebebeb;
- } */
-
- /* .product-tab-menu.single-product.tabs .nav-items .nav-link:hover,
- li.nav-items:hover */
-
- .product-tab-menu.single-product.tabs li.nav-items .nav-link.active {
- color: #302c7c;
- /* border-bottom: 1px solid #302c7c; */
- background: #eaeaf2;
- }
-
- .product-tab-menu.single-product .nav-items .nav-link {
- text-transform: capitalize;
- color: #111;
- padding: 10px;
- margin: 0px;
- font-size: 15px;
- font-weight: 600;
- border: 0;
- border-radius: 0;
- width: max-content;
- }
-
- .collbrate-img::before {
- display: none;
- }
-
- .position-relative.headers {
- position: relative !important;
- z-index: 999;
- }
-
- /* img.main-logo {
- width: 80%;
- } */
-
- button.btn.btn--md.single-btn.single-cart-btn {
- padding: 8px;
- border-radius: 6px;
- }
-
- .contact-form {
- background-color: #ffff;
- padding: 8px;
- color: #373e4b;
- font-weight: 500;
- font-size: 22px;
- }
-
- /* .contact-form label {
- font-size: 12px;
- padding: 0.8rem 1.3rem;
- } */
-
- button.close {
- margin: -44px -31px 45px 38px;
- }
-
- .contact-form input,
- .contact-form textarea {
- line-height: 40px;
- width: 100%;
- padding-left: 20px;
- border: 1px solid rgb(48, 44, 124);
- outline: 0;
- background-color: #fff;
- /* border-radius: 6px; */
- font-size: 16px;
- }
-
- /* button#submit {
- margin-left: 154px;
- } */
-
- h4.contact-page-title {
- color: rgb(48, 44, 124);
- }
-
- .theme1 .nav-link.active,
- .theme1 .nav-link:hover {
- color: #302c7c;
- background: transparent;
- text-decoration: none;
- }
-
- .products-names {
- color: #302c7c;
- }
-
- p.flint-sub.text-center {
- /* padding: 15px 0px; */
- background-color: #ebebeb;
- color: black;
- }
-
- .product-thumbnail.position-relative {
- min-height: 136px;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 20px 20px;
- }
-
- ul.main-menu.d-flex.justify-content-right {
- justify-content: right !important;
- }
-
- ._slider {
- display: none;
- }
-
- .media-body {
- width: 100%;
- }
-
- img.icons {
- width: 30px;
- }
-
- section.mobile-icons {
- display: none;
- }
-
- .buy-now-btn {
- /* padding: 20px 80px; */
- background: #302c7c !important;
- /* background: var(--bs-gray-dark); */
- color: white;
- border-radius: 0%;
- height: 50px;
- }
-
- /* section.theme1.bg-white.pb-80 {
- display: none;
- } */
-
- a.nav-products {
- cursor: pointer;
- }
-
- .container.nav-mega-menu {
- text-align: left;
- }
-
- ul.sub-pro.mt-10 li {
- padding: 2px;
- }
-
- .main-menu li {
- margin: 0 0px;
- position: relative;
- text-align: left;
- text-transform: capitalize;
- font-weight: normal;
- }
-
- .mega-menu li ul li.mega-menu-title {
- margin-bottom: 8px;
- }
-
- .mega-menu li a {
- text-align: center !important;
- }
-
- .price-quote {
- color: #ffffff;
- background: #302c7c;
- /* background: var(--bs-gray-dark); */
- text-align: left;
- padding: 15px 15px 15px;
- display: none;
- }
-
- .price-quote h5 .cost {
- color: #ffffff;
- }
-
- .pd {
- color: #89898c;
- font-size: 14px;
- line-height: 22px;
- margin-top: 3px;
- }
-
- img.stock {
- width: 20px;
- }
-
- .col-md-3.aval,
- .col-md-2.aval {
- border-right: 1px solid #e5e5e5;
- padding: 10px 11px;
- font-size: 13px;
- line-height: 1;
- margin-top: 10px;
- text-align: left;
- margin-top: 16px;
- }
-
- .col-md-3.rev {
- padding: 10px 11px;
- font-size: 13px;
- line-height: 1;
- margin-top: 10px;
- text-align: left;
- margin-top: 16px;
- }
-
- .col-md-4.text-left {
- position: relative;
- right: 14px;
- }
-
- b.cost {
- color: #302c7c;
- }
-
- div#footer-head {
- overflow-x: hidden;
- }
-
- #scrollUp:hover {
- background: #212529;
- color: #fff;
- }
-
- form.form-inline.position-relative {
- z-index: 999;
- }
-
- /* new-css
- */
-
- /* spacing betweeen contents */
-
- .content-block {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- /* padding: 80px 0; */
- padding-top: 100px;
- position: relative;
- }
-
- .content-block .product-tab-nav {
- border-right: 1px solid #dee2e6;
- }
-
- .product-tab-nav img {
- width: 25px;
- margin: 0px 10px 0px 0px;
- /* width: 37px;
- padding-right: 10px; */
- }
-
- #pills-smart-rack-tab img {
- height: 27px;
- }
-
- /* tab-menu */
-
- .product-tab-menu.single-product .nav-item .nav-link.active,
- .product-tab-menu.single-product .nav-item .nav-link:hover {
- color: #302c7c;
- border-bottom: 2px solid;
- }
-
- /* .theme1 li.active>a, .theme1 li:hover>a {
- border-bottom: 2px solid white !important;
- } */
-
- /* a.main-nav-list:hover span:hover */
-
- /* a.main-nav-list.active span.active {
- border-bottom: 2px solid white !important;
- } */
-
- .main-nav-list.active span.active {
- border-bottom: 2px solid white !important;
- }
-
- .nav-mega-menu .sub-nav-list.active {
- color: #302c7c !important;
- /* font-weight: 600; */
- }
-
- .sub-nav-list {
- font-size: 18px !important;
- }
-
- /* currency converter */
-
- li.highlight.currency {
- margin: auto 0;
- display: none;
- }
- select::-ms-expand {
- display: none;
- }
- select {
- outline: none;
- }
- select {
- /* A reset of styles, including removing the default dropdown arrow */
- /* appearance: none; */
- /* Additional resets for further consistency */
- background-color: transparent;
- border: none;
- padding: 0 1em 0 0;
- margin: 0;
- font-family: inherit;
- font-size: inherit;
- /* cursor: inherit; */
- line-height: inherit;
- }
- #custom-selects {
- padding: 0 15px;
- height: 46px;
- border: 1px solid #ccc;
- font-size: 14px;
- /* border-radius: 4px; */
- color: #fff;
- /* background: transparent; */
- font-weight: 700;
- width: 90px;
- appearance: none;
- background-position-x: 60px;
- cursor: pointer;
- }
- .blue-arrow {
- background: url(../img/icon/expand-button-blue.png) 100% / 14% no-repeat;
- }
- .white-arrow {
- background: url(../img/icon/expand-button.png) 100% / 14% no-repeat;
- }
-
- #sticky.is-isticky #custom-selects {
- color: #302c7c;
- }
-
- #custom-selects option {
- color: #111;
- }
-
- #custom-selects select option:hover {
- background-color: yellow;
- }
-
- select option:hover {
- background-color: yellow;
- }
-
- /* option:hover {
- background-color: black !important;
- } */
-
- /* select:focus > option:checked, option:hover {
- background: #000 !important;
- color: #fff;
- } */
-
- /* mobile-text-break */
-
- @media (min-width: 768px) {
- .mobile--text-break {
- display: none;
- }
- }
-
- .main-index::before {
- display: none;
- }
-
- .theme1 .slick-dots li.slick-active button,
- .theme1 .slick-dots li button:hover {
- display: none !important;
- }
-
- #anwi-products .slider-item .product-thumbnail {
- max-width: 370px;
- }
-
- .your-order-area
- .your-order-wrap
- .your-order-product-info
- .your-order-top
- ul.summary-list {
- flex-direction: column;
- }
-
- .form-check-input[type="radio"] {
- /* border-radius: 0.25em; */
- border-radius: 50%;
- }
-
- .product-radio-btn,
- .product-check-btn,
- .product-hard-btn,
- .product-check {
- cursor: pointer;
- }
-
- .featuring p {
- font-size: 24px;
- font-weight: 400;
- color: #ffffff;
- }
-
- .carousel-container .carousel-control-next i,
- .carousel-container .carousel-control-prev i {
- border-radius: 20%;
- color: #607d8b;
- border: 2.5px solid #607d8b;
- }
-
- .carousel-container .carousel-control-next,
- .carousel-container .carousel-control-prev {
- height: fit-content;
- top: 200px !important;
- }
-
- .carousel-container {
- background: linear-gradient(180deg, #ffffff 0%, #eceff1 45.31%, #edf0f2 100%);
- }
-
- .carousel-img img {
- margin: 0px 0px 200px 360px;
- }
-
- .carousel-caption {
- left: 0 !important;
- color: #111 !important;
- }
-
- .carousel-caption .card-body {
- background-color: rgba(255, 255, 255, 0.5) !important;
- }
-
- .carousel-caption .card-title {
- color: #9fb0b8;
- letter-spacing: 0.2em;
- text-transform: capitalize;
- font-size: 14px;
- padding-bottom: 17px;
- font-weight: 600;
- }
-
- .carousel-caption .card-subtitle {
- font-size: 24px;
- font-weight: 500;
- }
-
- .carousel-caption a {
- padding-top: 20px;
- color: #302c7c;
- font-weight: 500;
- }
-
- .carousel-container .carousel-indicators li {
- width: 8rem !important;
- height: 12rem !important;
- text-indent: unset !important;
- }
-
- .carousel-container .carousel-indicators .card {
- background-color: transparent;
- }
-
- .carousel-container .carousel-indicators {
- justify-content: right !important;
- margin-right: 0% !important;
- bottom: 25px !important;
- z-index: 5 !important;
- background-color: transparent;
- }
-
- .carousel-container .carousel-indicators .active {
- background-color: transparent;
- }
-
- .carousel-indicators li {
- background-color: transparent;
- }
-
- .carousel-container .carousel .carousel-indicators li.active .card-img-top {
- /* background: rgba(255, 255, 255, 0.7); */
- backdrop-filter: blur(200px);
- }
-
- .carousel-container .card {
- background: rgba(255, 255, 255, 0.5);
- backdrop-filter: blur(300px);
- }
-
- .header-bg,
- #sticky.is-isticky {
- color: #111;
- }
-
- .carousel-container .form-check-label {
- letter-spacing: 5px;
- color: #607d8b;
- font-weight: 600;
- }
-
- .carousel-container .carousel-indicators .active {
- border-bottom: 2px solid #302c7c;
- }
-
- .products-head {
- padding-bottom: 7%;
- }
-
- .products-head h3 {
- width: fit-content;
- font-size: 48px;
- font-weight: 700;
- background: linear-gradient(
- 90.28deg,
- #8a2387 28.81%,
- #e94057 57.97%,
- #f27121 83.18%
- );
-
- /* background: -webkit-linear-gradient(#eee, #333); */
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
-
- .main-product-tab {
- background: linear-gradient(180deg, #eceff1 0%, #ffffff 19.27%);
- }
-
- #anwi-products .card-body {
- border: none !important;
- }
-
- #anwi-products a {
- color: #302c7c;
- font-weight: 700;
- text-transform: none !important;
- }
-
- #anwi-products .view-products {
- font-size: 24px;
- color: #302c7c;
- font-weight: 500;
- text-transform: capitalize !important;
- padding: 15px 45px;
- }
-
- /* .product-cards i {
- color: #C4C4C4;
- } */
- .our-team-head h2 {
- font-weight: 700;
- background: linear-gradient(90.54deg, #00f260 -9.78%, #0575e6 32.06%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- width: fit-content;
- }
-
- .solutions-head h2 {
- font-weight: 700;
- background: linear-gradient(91.18deg, #009fff 30.62%, #ec2f4b 53.88%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- width: fit-content;
- }
-
- .footer {
- background-image: url(../img/slider/Footer.svg);
- background-size: cover;
- background-repeat: no-repeat;
- color: #ffffff !important;
- }
-
- .footer h2 {
- color: #ffffff !important;
- font-weight: 700;
- }
-
- .footer .nletter-form .form-control {
- color: #ffffff !important;
- border-radius: 0%;
- }
-
- .footer .container {
- padding: 3% 0%;
- }
-
- .news-letter-btn {
- color: #302c7c;
- border-radius: 0%;
- }
-
- .footer-widget .section-title {
- padding-bottom: 0%;
- }
-
- .footer-widget {
- line-height: 2.3;
- }
-
- .section-title {
- padding-bottom: 0%;
- }
-
- .our-team-main {
- background-image: url(../img/slider/Frame\ 811433.png);
- }
-
- .our-team-content .carousel-indicators {
- bottom: -60px;
- margin-bottom: 0%;
- }
-
- #carouselExampleIndicators-2 .carousel-control-next,
- #carouselExampleIndicators-2 .carousel-control-prev {
- top: unset;
- bottom: -59px;
- }
-
- #carouselExampleIndicators-2 .carousel-control-next {
- right: 20%;
- }
-
- #carouselExampleIndicators-2 .carousel-control-prev {
- left: 20%;
- }
-
- #carouselExampleIndicators-2 .carousel-indicators .active {
- background-color: #607d8b;
- }
-
- #carouselExampleIndicators-2 .carousel-indicators li {
- background-color: #d7d1d1;
- }
-
- #carouselExampleIndicators-2 i {
- color: #607d8b;
- font-size: 20px;
- }
-
- .solutions-content a {
- font-size: 20px;
- text-transform: none;
- font-weight: 500;
- color: #302c7c;
- }
-
- .solutions-content .card-title {
- font-weight: 700;
- }
-
- .social-icons i {
- font-size: 20px;
- }
-
- .header-middle.is-isticky li .main-nav-list {
- color: #302c7c !important;
- }
-
- .offcanvas .offcanvas-menu ul li a {
- color: #333 !important;
- }
-
- .mega-menu .nav-mega-menu .sub-nav-list {
- color: #565656 !important;
- }
-
- .carousel-container .card-img-top {
- height: 100px;
- }
-
- #carouselExampleIndicators-2 .carousel-indicators li {
- width: 30px;
- height: 3px;
- margin: 0px 3px;
- cursor: pointer;
- }
-
- .products-banner {
- padding: 6% 0%;
- /* background: #111827; */
- background-image: url(../img/banner/products-banner-bg.svg);
- color: #fff;
- background-repeat: no-repeat;
- background-size: cover;
- }
-
- .products-banner h1 {
- color: #fff;
- }
-
- .prod-tabs-nav {
- background: #42454b;
- }
-
- .prod-tabs-nav .nav-pills .nav-link.active,
- .nav-pills .show > .nav-link {
- color: #fff;
- background: none;
- }
-
- .prod-tabs-nav .nav-link {
- color: #b1b1b1;
- }
-
- .products-container .product-cards {
- margin: 4% 0%;
- }
-
- .products-container .product-cards .card {
- border: none;
- }
-
- .products-container .product-cards h2 {
- color: #302c7c;
- font-weight: 700;
- }
-
- .reach-us {
- background: linear-gradient(90deg, #7474bf 39.1%, #348ac7 81.88%),
- linear-gradient(0deg, #212d46, #212d46);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- width: fit-content;
- text-transform: none;
- }
-
- ::-webkit-input-placeholder {
- /* Chrome/Opera/Safari */
- color: pink;
- }
-
- #sticky.is-isticky a.main-nav-list.active span.active {
- border-bottom: 2px solid #111 !important;
- }
-
- #sticky.is-isticky .main-nav-list.active span.active {
- border-bottom: 2px solid #111 !important;
- }
-
- .view-all {
- font-size: 18px !important;
- }
-
- .about-head h4 {
- color: #212d46;
- }
-
- .mission span {
- font-weight: 800;
- background: linear-gradient(90deg, #4776e6 0%, #8e54e9 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- width: fit-content;
- text-transform: none;
- }
-
- .card-img-top {
- height: 100%;
- }
-
- #pills-switches .carousel-control-next,
- #pills-switches .carousel-control-prev {
- color: #000;
- top: 200px;
- bottom: 0;
- display: block;
- align-items: unset;
- width: fit-content;
- height: fit-content;
- }
-
- #pills-switches .carousel-control-next:focus,
- .carousel-control-next:hover,
- .carousel-control-prev:focus,
- .carousel-control-prev:hover {
- color: #302c7c;
- }
-
- body[data-page="product"] .header-middle.theme1 li .main-nav-list {
- color: #302c7c !important;
- }
-
- body[data-page="product"] .main-nav-list.active span.active {
- border-bottom: 2px solid #111 !important;
- }
-
- body[data-page="product"] .mobile-menu-toggle.theme1 svg path {
- stroke: #111 !important;
- }
-
- body[data-page="product"] #custom-selects {
- /* color: #333; */
- color: #302c7c;
- font-weight: 700;
- }
-
- body[data-page="product"] #custom-selects {
- }
-
- body[data-page="product"] .main-index {
- /* -webkit-box-shadow: 0 8px 6px -6px rgb(0 0 0 / 40%);
- box-shadow: 0 8px 6px -6px rgb(0 0 0 / 40%); */
- box-shadow: 0px 10px 22px -6px rgba(0, 0, 0, 0.1);
- }
-
- .get-in-touch {
- background: #fff;
- color: #111827;
- }
-
- body[data-page="product"] .get-in-touch {
- color: #fff;
- background: #302c7c;
- }
-
- .get-in {
- padding: 16px 10px 16px 20px !important;
- }
-
- #sticky.is-isticky .get-in-touch {
- color: #fff;
- background: #302c7c;
- }
-
- /* .slider-content {
- margin: 100px 0px;
- } */
- .our-team-content .carousel-inner {
- min-height: 200px;
- }
-
- body[data-page="about"] .card-text {
- text-align: justify;
- }
-
- /* .slick-track {
- display: flex !important;
- } */
- .popular-slider-init .slick-prev {
- left: -50px;
- }
-
- .popular-slider-init .slick-next {
- right: -50px;
- }
-
- #anwi-products .tab-pane {
- min-height: 601px;
- }
-
- .our-team-content .carousel-inner {
- min-height: 280px;
- }
-
- .contact-details-form {
- line-height: 4rem;
- text-align: justify;
- }
-
- .view-all-prod {
- font-size: 20px;
- text-underline-offset: 6px;
- }
-
- .smart-racks img {
- height: 27px;
- }
-
- .solutions-content .card-text {
- text-align: justify;
- }
-
- #carouselExampleIndicators .carousel-indicators li {
- cursor: pointer;
- }
-
- #carouselExampleIndicators .carousel-indicators [data-bs-target] {
- background: transparent;
- }
-
- .animated {
- -webkit-animation-duration: 1s;
- animation-duration: 1s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- }
- .product-price {
- color: #ffff;
- }
- .product-tab-menu.single-product .nav-item {
- margin-bottom: 0px;
- }
- .configuration-block,
- .silver-fam-processer,
- .gold-fam-processer {
- margin-top: 0px !important;
- }
- .product-cards .list-group {
- height: 100%;
- }
- .buy-now-btn:hover {
- color: white;
- }
-
- /*------------------- modal form css ---------------------*/
- .contact100-more {
- width: 50%;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center;
- position: relative;
- z-index: 1;
- padding: 30px 15px 0;
- }
- .wrap-contact100 {
- width: 950px;
- background: #fff;
- overflow: hidden;
- display: -webkit-box;
- display: -webkit-flex;
- display: -moz-box;
- display: -ms-flexbox;
- display: flex;
- flex-wrap: wrap;
- align-items: stretch;
- flex-direction: row-reverse;
- }
-
- .modal-dialog {
- max-width: 950px;
- padding-top: 25px;
- margin: auto;
- }
- .wrap-contact100 input::placeholder {
- color: #e6e6e6;
- }
- .enquire-form input::placeholder,
- .enquire-form textarea::placeholder {
- /* color: transparent !important; */
- font-size: 14px;
- opacity: 0;
- }
- .modal-content {
- /* width: 50%; */
- border: none;
- }
- /* #enquireModal {
- background: #f2f2f2;
- } */
- .contact-page-title {
- font-size: 32px;
- font-weight: 500;
- text-transform: capitalize;
- margin: 0px 0px 20px 0px;
- text-align: left;
- }
- button.close:hover {
- color: #ff0000 !important;
- }
- button.close {
- color: #aa4646;
- }
-
- /* --------------------------form css---------------- */
-
- .form-control:focus {
- box-shadow: none;
- border-bottom: 1px solid #86b7fe;
- }
-
- .form-control {
- border: none;
- border-bottom: 1px solid #dee2e6;
- border-radius: 0px;
- }
- .form-control:disabled,
- .form-control[readonly] {
- background: #b5cbe0;
- }
- .enquire-form .form-floating > label {
- padding: 10px 10px;
- font-size: 16px;
- }
- .enquire-form-img {
- background-image: url("../img/quote-image.png");
- background-repeat: no-repeat;
- background-size: cover;
- /* z-index: 1; */
- }
- .enquire-form-img::before {
- content: "";
- display: block;
- position: absolute;
- z-index: -1;
- width: 49%;
- height: 100%;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, 0.8);
- }
-
- .single-product-desc ul {
- font-size: 16px;
- }
- .product-list-des li {
- list-style: unset;
- }
-
- /* newly added by rahul--------------------- */
- .specifications-list h4 {
- font-size: 18px;
- }
- .specifications-list p {
- font-size: 14px;
- }
- .single-product-head .title {
- font-size: 25px;
- }
- .product-detail-table td {
- font-size: 16px;
- }
|